In [1]:
import pandas as pd
In [2]:
import pymysql
import mysql.connector
uni_recomm = pymysql.connect(host='localhost', user='root', passwd='RootPassword123', database='university_recommendation_assignment3')
cursor= uni_recomm.cursor()
In [16]:
University_df=pd.read_csv("University_Data_Final.csv", encoding= 'unicode_escape')
University_df
Out[16]:
University_ID University_Name avg_pay_scale Delivery_Mode Duration Term Year_of_Joining Major Location Cost_of_Living Avg_Fees GRE TOEFL IELTS
0 1 Northeastern University 100000 On-Campus 2.0 Fall 2022 MSIS Boston 9600 54000 310 100 7.5
1 2 University of Texas, San Antonio 90000 On-Campus 2.0 Fall 2022 MSCS Texas 7800 60000 300 100 7.5
2 3 Boston University 80000 On-Campus 2.0 Fall 2022 MSDS Boston 9600 90000 300 110 8
3 4 Syracuse University 100000 On-Campus 2.0 Fall 2022 MSIS New York 9700 65000 305 100 7.5
4 5 Northweastern University 90000 On-Campus 2.0 Fall 2022 MS SES Chicago 9100 55000 290 90 7
... ... ... ... ... ... ... ... ... ... ... ... ... ... ...
60 61 University of Illinois Chicago 60240 On-Campus 1.8 Fall 2023 MSCS Chicago 55728 19008 300 80 6.5
61 62 University of Maryland Baltimore 70300 On-Campus 2.0 Fall 2023 MSIS Maryland 14736 45670 305 80 6.5
62 63 San Diego State University 59027 On-Campus 1.8 Fall 2023 MSCS California 15735 14760 Waived 80 6.5
63 64 Ohio State University 43187 On-Campus 2.0 Fall 2022 MSIS Ohio 13966 63379 300 79 7
64 65 University of Washington 60937 On-Campus 2.0 Fall 2022 MSCS Washington 32090 59754 Waived 92 7

65 rows × 14 columns

In [17]:
cursor.execute("Delete from university")
Out[17]:
65
In [18]:
cursor.execute("SELECT * from university")
Out[18]:
0
In [14]:
cursor.execute("describe university")
for x in cursor:
    print(x)
('University_ID', 'varchar(255)', 'NO', 'PRI', None, '')
('University_Name', 'varchar(255)', 'YES', '', None, '')
('avg_pay_scale', 'varchar(255)', 'YES', '', None, '')
('Delivery_Mode', 'varchar(255)', 'YES', '', None, '')
('Duration', 'varchar(255)', 'YES', '', None, '')
('Term', 'varchar(255)', 'YES', '', None, '')
('Year_of_Joining', 'int', 'YES', '', None, '')
('Major', 'varchar(255)', 'YES', '', None, '')
('Location', 'varchar(255)', 'YES', '', None, '')
('Cost_of_Living', 'varchar(255)', 'YES', '', None, '')
('Avg_Fees', 'varchar(255)', 'YES', '', None, '')
('GRE', 'varchar(255)', 'YES', '', None, '')
('toefl', 'varchar(255)', 'YES', '', None, '')
('ielts', 'varchar(255)', 'YES', '', None, '')
In [19]:
for i,row in University_df.iterrows():
    cursor.execute("INSERT INTO university values (%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s)", (int(row['University_ID']),row['University_Name'],row['avg_pay_scale'],row['Delivery_Mode'],row['Duration'],row['Term'],row['Year_of_Joining'],row['Major'],row['Location'],row['Cost_of_Living'],row['Avg_Fees'],row['GRE'],row['TOEFL'],row['IELTS']))
uni_recomm.commit()

cursor.execute("SELECT * from university")
records=cursor.fetchall()

print(records)
uni_recomm.commit()
(('1', 'Northeastern University', '100000', 'On-Campus', '2', 'Fall', 2022, 'MSIS', 'Boston', '9600', '54000', '310', '100', '7.5'), ('10', 'Cleveland State University', '36100', 'On-Campus', '1.8', 'Fall', 2022, 'MSIS', 'Cleveland', '24693', '21702', '295', '78', '6'), ('11', 'Cornell University', '113700', 'On-Campus', '2', 'Fall', 2022, 'MSCS', 'Ithaca', '19726', '29500', '295', '100', '7'), ('12', 'Dalhousie University', '24249', 'On-Campus', '2', 'Fall', 2022, 'MSCS', 'Canada', '16776', '16860', '300', '92', '7'), ('13', 'George Mason University', '56200', 'On-Campus', '2', 'Fall', 2022, 'MSCS', 'Virginia', '59782', '22110', 'Waived', '88', '7'), ('14', 'Georgia Institute of Technology', '94000', 'On-Campus', '2', 'Fall', 2022, 'MSCS', 'Atlanta', '55672', '18225', 'Waived', '79', '6.5'), ('15', 'Harvard University', '128900', 'On-Campus', '1.8', 'Fall', 2022, 'MSCS', 'Boston', '83463', '89952', 'Waived', '80', '6.5'), ('16', 'Illinios Institute of Technology, Chicago', '68647', 'On-Campus', '2', 'Fall', 2022, 'MSCS', 'Chicago', '12600', '26336', '309', '90', '6.5'), ('17', 'Indiana University, Bloomington', '136000', 'On-Campus', '1.8', 'Fall', 2023, 'MSCS', 'Indiana', '38680', '24375', 'Waived ', '100', '7'), ('18', 'Iowa State University', '60156', 'On-Campus', '2', 'Fall', 2022, 'MSCS', 'Iowa', '35004', '23790', '316', '79', '6.5'), ('19', 'Kansas State University', '45700', 'On-Campus', '2', 'Fall', 2023, 'MSCS', 'Kansas', '15046', '14385', '310', '79', '6.5'), ('2', 'University of Texas, San Antonio', '90000', 'On-Campus', '2', 'Fall', 2022, 'MSCS', 'Texas', '7800', '60000', '300', '100', '7.5'), ('20', 'New York University', '83000', 'On-Campus', '2', 'Fall', 2022, 'MSCS', 'New York', '40000', '35982', '321', '100', '7'), ('21', 'NYU Tandon School of Engineering', '71128', 'On-Campus', '2', 'Fall', 2022, 'MCE', 'New York', '83250', '29145', '316', '90', '7'), ('22', 'Pennsylvania State University', '30000', 'On-Campus', '2', 'Fall', 2022, 'MSDA', 'Pennsylvania', '30000', '28155', '314', '80', '6.5'), ('23', 'Rochester Institute of Technology', '56197', 'On-Campus', '1', 'Fall', 2023, 'MSBA', 'New York', '72128', '54176', '307', '88', '6.5'), ('24', "Saint Peter's University", 'None', 'On-Campus', '1.8', 'Fall', 2022, 'MSDS', 'New Jersey', '32502', '42372', '318', '79', '6.5'), ('25', 'San Jose State University', 'None', 'On-Campus', '2', 'Fall', 2022, 'MSCS', 'California', '7379', '32472', '313', '80', '6.5'), ('26', 'Stanford University', '152000', 'On-Campus', '1.5', 'Fall', 2022, 'MSCS', 'California', '82162', '57870', 'Waived', '89', 'None'), ('27', ' State University of New York, Albany', '71128', 'On-Campus', '2', 'Fall', 2022, 'MSCS', 'New York', '43919', '46200', '306', '79', '6.5'), ('28', 'State University of New York, Buffalo', 'None', 'On-Campus', '2', 'Fall', 2023, 'MSCS', 'New York', 'None', '46200', '306', '79', '6.5'), ('29', ' State University of New York, Polytechnic Institute', '83000', 'On-Campus', '1.8', 'Fall', 2022, 'MTM', 'New York', '15287', '23112', 'Waived', '79', '7.5'), ('3', 'Boston University', '80000', 'On-Campus', '2', 'Fall', 2022, 'MSDS', 'Boston', '9600', '90000', '300', '110', '8'), ('30', 'State University of New York, Stony Brook', 'None', 'On-Campus', '1.8', 'Fall', 2022, 'MSCS', 'New York', 'None', '29853', '300', '80', '6.5'), ('31', 'Texas A&M University, College Station', '175000', 'On-Campus', '1.8', 'Fall', 2022, 'MSCS', 'Texas', '21950', '24940', '295', '80', '6'), ('32', 'Texas A&M University, Kingsville', '175000', 'On-Campus', '2', 'Fall', 2023, 'MSCS', 'Texas', '40754', '23908', '297', '79', '6'), ('33', 'University of California, Irvine', '109000', 'On-Campus', '1.5', 'Fall', 2022, 'MSCS', 'Irvine', '77431', '33502', '302', '80', '7'), ('34', 'University of California, Los Angeles', '64433', 'On-Campus', '1.5', 'Fall', 2022, 'MSBA', 'Los Angeles', '20000', '14625', 'None', '87', '7'), ('35', 'University of California, San Diego', '77143', 'On-Campus', '2', 'Fall', 2022, 'MSCSE', 'San Diego', '52242', '22884', 'None', '83', '7'), ('36', 'University of Colorado, Boulder', '43000', 'On-Campus', '1.8', 'Fall', 2022, 'MSCS', 'Boulder', '20000', '53736', 'Waived', '83', '6'), ('37', 'University of Dayton, Ohio', '72077', 'On-Campus', '1.8', 'Fall', 2022, 'MSCS', 'Ohio', '15000', '30900', 'None', '80', '6.5'), ('38', 'University of Florida, Gainesville', '123000', 'On-Campus', '1.8', 'Fall', 2022, 'CIS', 'Gainesville', '16680', '45477', '318', '101', '8'), ('39', 'University of Houston, Clear Lake', '34260', 'On-Campus', '1.8', 'Fall', 2023, 'MSCS', 'Clear Lake', '9460', '31482', '290', '79', '6'), ('4', 'Syracuse University', '100000', 'On-Campus', '2', 'Fall', 2022, 'MSIS', 'New York', '9700', '65000', '305', '100', '7.5'), ('40', 'University University of Illinois, Urbana Champaign', '70100', 'On-Campus', '1.8', 'Fall', 2023, 'MSCS', 'Urbana champaign', '6777', '36798', 'Waived', '103', '7.5'), ('41', 'University of Maryland College Park', '680000', 'On-Campus', '2', 'Fall', 2023, 'MSCS', 'College Park', '53036', '26535', '320', '95', '7'), ('42', 'University of Michigan, Ann Arbor', '75842', 'On-Campus', '1', 'Fall', 2022, 'MSCSE', 'Ann Arbor', '75410', '100470', 'Waived', '84', '6.5'), ('43', 'University of Michigan, Dearborn', '75842', 'On-Campus', '1.8', 'Fall', 2022, 'DSBI', 'Dearborn', '28786', '46380', 'Waived', '84', '6.5'), ('44', 'University of Minnesota, Twin Cities', '72300', 'On-Campus', '2', 'Fall', 2022, 'DSBI', 'Twin cities', '17009', '40766', 'Waived', '79', '6.5'), ('45', 'University of South Carolina, Columbia', '100000', 'On-Campus', '2', 'Fall', 2022, 'MSCS', 'Columbia', '6500', '67856', 'None', '80', '6.5'), ('46', 'University of South Florida', '60000', 'On-Campus', '2', 'Fall', 2022, 'MSCS', 'Florida', '15000', '26430', '312', '96', '7'), ('47', 'University of Southern California', '85000', 'On-Campus', '1.8', 'Fall', 2022, 'MSCS', 'California', '65798', '64651', 'Waived', '90', '6.5'), ('48', 'University of Texas, Arlington', '85000', 'On-Campus', '2', 'Fall', 2023, 'MSCS', 'Arlington', '17000', '46972', '305', '79', '6.5'), ('49', 'University of Texas, Austin', '67839', 'On-Campus', '1.8', 'Fall', 2022, 'MSECE', 'Austin ', '35022', '30900', '324', '109', '6.5'), ('5', 'Northweastern University', '90000', 'On-Campus', '2', 'Fall', 2022, 'MS SES', 'Chicago', '9100', '55000', '290', '90', '7'), ('50', 'University of Texas, Dallas', '87000', 'On-Campus', '1.8', 'Fall', 2022, 'MSITM', 'Dallas', '20000', '53685', 'None', '98', '7'), ('51', 'University of the Pacific, Stockton', '72000', 'On-Campus', '1', 'Fall', 2022, 'MSCS', 'Stockton', '39998', '46980', '311', '96', '7'), ('52', 'Virginia Tech University', '66600', 'On-Campus', '2', 'Fall', 2023, 'MSCS', 'Virginia', '21301', '48780', 'Waived', '90', '6.5'), ('53', 'Wayne State University', '50700', 'On-Campus', '2', 'Fall', 2023, 'MSCS', 'Wayne', '44197', '25710', 'Waived', '79', '6.5'), ('54', 'West Virginia University Institute of Technology', '39300', 'On-Campus', '1.8', 'Fall', 2023, 'MSCS', 'West Virginia', '31106', '44919', '300', '79', '6.5'), ('55', 'Western Michigan University', '66400', 'On-Campus', '2', 'Fall', 2022, 'MSCS', 'Michigan', '10567', '16440', 'Waived', '80', '6.5'), ('56', 'Western University', '69000', 'On-Campus', '1.8', 'Fall', 2022, 'MSCS', 'London', '21585', '25816', 'None', '92', '6.5'), ('57', 'University Of California, Berkeley', '76909', 'On-Campus', '2', 'Fall', 2022, 'MSCS', 'California', '39094', '53604', '300', '80', '6.5'), ('58', 'Carnegie Mellon University', '99998', 'On-Campus', '2', 'Fall ', 2022, 'MSCS', 'Pennsylvania', '16740', '61000', 'Waived', '108', '7.5'), ('59', 'University of Phoenix\xa0', '78000', 'On-Campus', '1.8', 'Fall', 2022, 'MSIS', 'Arizona', '15818', '11179', 'Waived', '79', '6.5'), ('6', 'Arizona State University Tempe', '91000', 'On-Campus', '2', 'Fall', 2022, 'MSCS', 'Arizona', '10230', '44000', '317', '90', '7'), ('60', 'North Carolina State University', '47208', 'On-Campus', '2', 'Fall', 2022, 'MSCS', 'North Carolina', '15885', '48732', '301', '106', '8'), ('61', 'University of Illinois Chicago', '60240', 'On-Campus', '1.8', 'Fall', 2023, 'MSCS', 'Chicago', '55728', '19008', '300', '80', '6.5'), ('62', 'University of Maryland Baltimore', '70300', 'On-Campus', '2', 'Fall', 2023, 'MSIS', 'Maryland', '14736', '45670', '305', '80', '6.5'), ('63', 'San Diego State University', '59027', 'On-Campus', '1.8', 'Fall', 2023, 'MSCS', 'California', '15735', '14760', 'Waived', '80', '6.5'), ('64', 'Ohio State University', '43187', 'On-Campus', '2', 'Fall', 2022, 'MSIS', 'Ohio', '13966', '63379', '300', '79', '7'), ('65', 'University of Washington', '60937', 'On-Campus', '2', 'Fall', 2022, 'MSCS', 'Washington', '32090', '59754', 'Waived', '92', '7'), ('7', 'California State University, East Bay', '51645', 'On-Campus', '2', 'Fall', 2022, 'MSCS', 'California', '4800', '34580', '305', '80', '6.5'), ('8', 'Clarkson University', '65000', 'On-Campus', '2', 'Fall', 2022, 'MSCS', 'New York', '8726', '22995', '294', '80', '6.5'), ('9', 'Clemson University', '57400', 'On-Campus', '2', 'Fall', 2022, 'MSCS', 'South Carolina', '55872', '39502', '310', '80', '6.5'))
In [20]:
Scholarship_df=pd.read_csv("scholarship.csv")
Scholarship_df
Out[20]:
Scholarship_ID scholarship_name scholarship_url
0 1 Cornaro Scholarship https://www.kappagammapi.org/cornaro-scholarship/
1 2 NCAA Postgraduate Scholarship Program http://www.ncaa.org/ncaa-postgraduate-scholars...
2 3 Eiffel Excellence Scholarship Program https://www.campusfrance.org/en/eiffel-scholar...
3 4 Fulbright Foreign Student Program https://us.fulbrightonline.org/
4 5 Clarendon Scholarships at University of Oxford http://www.ox.ac.uk/clarendon/
... ... ... ...
95 96 ABA Foundation Diversity Scholarships https://www.buses.org/aba-foundation/scholarsh...
96 97 Arthur Lockwood Beneventi Law Scholarship https://www.dar.org/national-society/scholarsh...
97 98 A.T. Anderson Memorial Scholarship Program https://www.aises.org/scholarships/at-anderson...
98 99 Hubertus W.V. Willems Scholarship for Male Stu... https://www.poisefoundation.org/the-hubertus-w...
99 100 Sigma Alpha Iota Music Business/Technology Sch... http://app.smarterselect.com/programs/32012-Si...

100 rows × 3 columns

In [21]:
for i,row in Scholarship_df.iterrows():
    cursor.execute("INSERT INTO Scholarship values (%s,%s,%s)", (int(row['Scholarship_ID']),row['scholarship_name'],row['scholarship_url']))
uni_recomm.commit()

cursor.execute("SELECT * from Scholarship")
records=cursor.fetchall()

print(records)
uni_recomm.commit()
((1, 'Cornaro Scholarship', 'https://www.kappagammapi.org/cornaro-scholarship/'), (2, 'NCAA Postgraduate Scholarship Program', 'http://www.ncaa.org/ncaa-postgraduate-scholarship-program'), (3, 'Eiffel Excellence Scholarship Program', 'https://www.campusfrance.org/en/eiffel-scholarship-program-of-excellence'), (4, 'Fulbright Foreign Student Program', 'https://us.fulbrightonline.org/'), (5, 'Clarendon Scholarships at University of Oxford', 'http://www.ox.ac.uk/clarendon/'), (6, 'Gates Cambridge Scholarship', 'https://www.gatescambridge.org/'), (7, 'Kate Neal Kinley Memorial Fellowship', 'http://faa.illinois.edu/alumni-friends/kate-neal-kinley-memorial-fellowship'), (8, 'Forte Fellows Program', 'http://www.fortefoundation.org/site/PageServer?pagename=mba_fellows#.VPyCecZVvE8'), (9, 'Richard A. Freund International Scholarship', 'https://asq.org/about-asq/asq-awards/freundscholar'), (10, 'Olivia James Traveling Fellowship', 'https://www.archaeological.org/grant/james-traveling-fellowship/'), (11, 'Helen M. Woodruff Fellowship', 'https://www.archaeological.org/grant/woodruff-fellowship/'), (12, 'Anna C. and Oliver C. Colburn Fellowship', 'https://www.archaeological.org/grant/colburn-fellowships/'), (13, 'Harriet and Leon Pomerance Fellowship', 'https://www.archaeological.org/grant/pomerance-fellowship/'), (14, 'Kate B. and Hall J. Peterson Fellowships', 'https://www.americanantiquarian.org/short-termfellowship'), (15, 'The Legacy Fellowship', 'https://www.americanantiquarian.org/short-termfellowship'), (16, 'American Antiquarian Society-American Society for 18th-Century Studies Fellowship', 'https://www.americanantiquarian.org/short-termfellowship'), (17, 'Lapides Fellowship in Pre-1865 Juvenile Literature and Ephemera', 'https://www.americanantiquarian.org/short-termfellowship'), (18, 'Lou Hochberg Thesis and Dissertation Awards', 'http://www.orgonelab.org/hochberg.htm'), (19, 'Archaeology of Portugal Fellowship', 'https://www.archaeological.org/grant/archaeology-of-portugal-fellowship/'), (20, 'Frances C. Allen Fellowship for Women of American Indian Heritage', 'http://www.newberry.org/darcy-mcnickle-center-fellowships'), (21, 'The Reese Fellowship for American Bibliography and the History of the Book in the Americas', 'https://bibsocamer.org/awards/fellowships/'), (22, 'The Charles J. Tanenbaum Fellowship in Cartographical Bibliography', 'https://bibsocamer.org/awards/fellowships/'), (23, 'The BSA-Mercantile Library Fellowship in North American Bibliography', 'https://bibsocamer.org/awards/fellowships/'), (24, 'Joseph Kremen Memorial Fellowship', 'https://www.yivo.org/list-of-fellowships'), (25, 'Samuel and Flora Weiss Research Fellowship', 'https://www.yivo.org/list-of-fellowships'), (26, 'The Nadia Christensen Prize for Translation', 'http://www.amscan.org/fellowships-grants/translation-competition/'), (27, 'Inter American Press Association Scholarship', 'https://www.petersons.com/scholarship/inter-american-press-association-scholarships-111_151433.aspx'), (28, 'David H. Clift Scholarship', 'http://www.ala.org/awardsgrants/david-h-clift-scholarship'), (29, 'Foster G. McGraw Graduate Student Scholarship', 'https://www.ache.org/membership/student-resources/foster-g-mcgaw-graduate-student-scholarship'), (30, 'Albert W. Dent Graduate Student Scholarship', 'https://www.ache.org/membership/student-resources/albert-w-dent-graduate-student-scholarship'), (31, 'National Health Service Corps Scholarship Program', 'https://nhsc.hrsa.gov/scholarships/index.html'), (32, "ONS Master's Scholarship", 'http://www.onsfoundation.org/funding-for-nurses/education/masters-scholarships'), (33, 'Ronald D. Lunceford Scholarship', 'https://www.petersons.com/scholarship/ronald-d-lunceford-scholarship-111_151557.aspx'), (34, 'Estelle Massey Osborne Scholarship', 'https://www.testprepreview.com/college-scholarships.htm'), (35, 'Robert A. Dannels Memorial Scholarship', 'https://ans.org/honors/scholarships/dannels/'), (36, 'Littleton-Griswold Research Grant for U.S. Legal History', 'https://www.historians.org/awards-and-grants/grants-and-fellowships/littleton-griswold-research-grant'), (37, 'Theodore C. Sorensen Fellowship', 'https://www.jfklibrary.org/archives/research-fellowships-grants/sorensen-fellowship'), (38, 'Abba P. Schwartz Research Fellowship', 'https://www.jfklibrary.org/archives/research-fellowships-grants/schwartz-fellowship'), (39, 'Marjorie Kovler Research Fellowship', 'https://www.jfklibrary.org/archives/research-fellowships-grants/kovler-fellowship'), (40, 'United States-Indonesia Society Sumitro Fellowships', 'https://usindo.org/what-we-do/enhancing-educational-exchanges/sumitro-fellows-program/'), (41, 'Harry S. Truman Scholarship', 'https://www.truman.gov/candidates/how-become-truman-scholar'), (42, "National Women's Studies Association Graduate Scholarship", 'https://www.nwsa.org/default.aspx'), (43, 'International Foundation for Ethical Research Fellowship in Alternatives in Ethical Research', 'http://www.ifer.org/available-fellowships.html'), (44, 'The Lewis and Clark Fund for Exploration and Field Research in Astrobiology', 'https://www.amphilsoc.org/grants/lewis-and-clark-fund-exploration-and-field-research-astrobiology'), (45, 'Robert E. Uhrig Graduate Scholarship', 'https://ans.org/honors/scholarships/uhrig/'), (46, 'Saul Levine Memorial Scholarship', 'https://ans.org/honors/scholarships/levine/'), (47, 'John Randall Scholarship', 'https://ans.org/honors/scholarships/randall/'), (48, 'Nuclear Criticality Safety Pioneers Scholarship', 'https://ans.org/honors/scholarships/ncspioneers/'), (49, 'Decommissioning, Decontamination and Reutilization Scholarship', 'https://ans.org/honors/scholarships/ddrd-masters/'), (50, 'Sarah Bradley Tyson Memorial Fellowship', 'https://wnfga.org/scholarships/fellowships/'), (51, 'Society of Women Engineers Scholarship Program', 'https://scholarships.swe.org/applications/login.asp'), (52, 'American Water Works Association Academic Achievement Award', 'https://www.awwa.org/Membership-Volunteering/Awards/Academic-Achievement-Award'), (53, 'Thomas R. Camp Scholarship', 'https://www.awwa.org/Membership-Volunteering/Students-Young-Professionals/AWWA-Scholarships#10003656-thomas-r-camp-scholarship'), (54, 'Carollo Engineers Scholarship', 'https://www.carollo.com/node/1301'), (55, 'Larson Aquatic Research Support Scholarship', 'https://www.awwa.org/Membership-Volunteering/Students-Young-Professionals/AWWA-Scholarships#9998643-awwa-larson-aquatic-research-support-scholarships'), (56, 'Holly A. Cornell Scholarship', 'https://www.awwa.org/Membership-Volunteering/Students-Young-Professionals/AWWA-Scholarships#9998642-holly-a-cornell-scholarship'), (57, 'Hazen and Sawyer Scholarship', 'https://www.awwa.org/Membership-Volunteering/Students-Young-Professionals/AWWA-Scholarships#10003651-hazen-and-sawyer-scholarship'), (58, 'National Physical Science Consortium Graduate Fellowship', 'https://stemfellowships.org/'), (59, 'AT&T Labs Research Fellowship', 'https://about.att.com/sites/labs_research/careers'), (60, 'David M. Dolan Scholarship', 'http://iaglr.org/scholarships/dolan-scholarship/'), (61, 'AICPA Scholarship for Minority Accounting Students', 'https://www.aicpa.org/career/diversityinitiatives/smas.html'), (62, 'ALPFA Scholarship', 'https://www.alpfa.org/page/2020_scholarship'), (63, "BadCredit.org's Wealth Wise Scholarship", 'https://www.badcredit.org/scholarship/'), (64, 'Ernst and Young Scholarships (The EY Scholarship)', 'https://www.ey.com/Publication/vwLUAssets/EY-scholarship-program/%24FILE/EY-scholarship-program.pdf'), (65, 'Marathon Oil College Scholarship Program', 'https://www.hsf.net/scholarship'), (66, 'AICPA John L. Carey Scholarship', 'https://www.aicpa.org/interestareas/accountingeducation/resources/john-l.-carey-scholarship-program.html'), (67, 'MACPA Scholarships', 'https://www.careeronestop.org/toolkit/training/find-scholarships.aspx?keyword=accounting&sortcolumns=BestMatch&sortdirections=&lang=en&currentpage=3&awardTypefilter=4294967287&georestrictionfilter=4294967283&studyLevelfilter=4294967284&Livefillall=y&Whefillall=y&scholarshipid=9994986'), (68, 'Minorities in Government Finance Scholarship', 'https://www.gfoa.org/gfoa-scholarships'), (69, 'NABA National Scholarship Program', 'https://www.nabainc.org/content.asp?contentid=145'), (70, 'Ritchie-Jennings Memorial Scholarship Program', 'https://www.acfe.com/scholarship/'), (71, 'Sam Gallant Memorial Scholarships', 'https://www.ascpa.com/become_a_cpa/scholarships'), (72, 'The Tatiana Mendez Future Resources Scholarships', 'http://criminallawsvirginia.com/wp-content/uploads/2015/10/Tatiana-Mendez-Future-Resources-Scholarship1.pdf'), (73, 'AIGA Worldstudio Scholarship', 'https://www.aiga.org/worldstudio-scholarship'), (74, 'Vercille Voss Graduate Student Scholarship', 'https://cdn.website-editor.net/63d65bd0e22744e982afd20bf6a1e55d/files/uploaded/Vercille_Voss_%2520Grad.pdf'), (75, 'Joel Polsky Academic Achievement Award', 'https://www.asid.org/resources/awards/scholarships-and-grants'), (76, 'Legacy Scholarship for Graduate Students', 'https://www.asid.org/resources/awards/scholarships-and-grants'), (77, 'David Barrett Memorial Scholarship', 'https://www.asid.org/resources/awards/scholarships-and-grants'), (78, 'HGA Scholarship', 'https://weavespindye.org/scholarships/'), (79, 'Goldberg-Miller Public Finance Scholarship', 'https://www.gfoa.org/detail/available-scholarships'), (80, 'Frank L. Greathouse Government Accounting Scholarship', 'https://www.gfoa.org/detail/available-scholarships'), (81, 'Minorities in Government Finance Scholarship', 'https://www.gfoa.org/detail/available-scholarships'), (82, 'Government Finance Professional Development Scholarship', 'https://www.gfoa.org/detail/available-scholarships'), (83, 'MG Eugene C. Renzi, USA (Ret.) STEM Teachers Scholarship', 'https://www.afcea.org/site/?q=foundation/scholarships/stem-teacher'), (84, 'SILA Post Secondary College Scholarship', 'http://www.silafoundation.org/scholarships/post-secondary-college-scholarship/'), (85, 'Stuart Cameron and Margaret McLeod Memorial Scholarship', 'https://www.petersons.com/scholarship/stuart-cameron-and-margaret-mcleod-memorial-scholarship-111_173149.aspx'), (86, 'Mary Elizabeth Lockwood Beneventi MBA Scholarship', 'https://www.dar.org/national-society/scholarships/specific-scholarships-0'), (87, 'William Robert Findley Graduate Chemistry Scholarship', 'https://www.dar.org/national-society/scholarships/specific-scholarships-0'), (88, 'Leo W. and Alberta V. Thomas Utz Scholarship — English', 'https://www.dar.org/national-society/scholarships/specific-scholarships-0'), (89, 'Leo W. and Alberta V. Thomas Utz Scholarship — Math', 'https://www.dar.org/national-society/scholarships/specific-scholarships-0'), (90, 'Leo W. and Alberta V. Thomas Utz Scholarship — Science', 'https://www.dar.org/national-society/scholarships/specific-scholarships-0'), (91, 'AMIA Scholarship Program', 'https://amianet.org/wp-content/uploads/About-Scholarships-Sony-Universal-Chace.pdf'), (92, 'George Blood Women in Audiovisual Archiving and Technology Scholarship', 'https://amianet.org/about/scholarships/'), (93, 'DAAD Study Scholarship', 'https://www.daad.org/en/find-funding/graduate-opportunities/study-scholarship/'), (94, 'Ralph W. Shrader Graduate Diversity Scholarship', 'https://www.afcea.org/site/?q=foundation/scholarships/HBCU-scholarship'), (95, 'AAUW Selected Professions Fellowships', 'https://www.aauw.org/resources/programs/fellowships-grants/current-opportunities/selected-professions-fellowships/'), (96, 'ABA Foundation Diversity Scholarships', 'https://www.buses.org/aba-foundation/scholarships/diversity'), (97, 'Arthur Lockwood Beneventi Law Scholarship', 'https://www.dar.org/national-society/scholarships/specific-scholarships-0'), (98, 'A.T. Anderson Memorial Scholarship Program', 'https://www.aises.org/scholarships/at-anderson-scholarship-2020-2021'), (99, 'Hubertus W.V. Willems Scholarship for Male Students', 'https://www.poisefoundation.org/the-hubertus-wv-willems-scholarship-for-male-students'), (100, 'Sigma Alpha Iota Music Business/Technology Scholarship', 'http://app.smarterselect.com/programs/32012-Sigma-Alpha-Iota-International-Music-Fraternity'))
In [90]:
Professor_df=pd.read_excel("university_professor.xlsx")
Professor_df
Out[90]:
ID University_ID Professors
0 1 15 Carolyn Abbate- Paul and Catherine Buttenwiese...
1 2 58 Pieter Abbeel, Rediet Abebe, Ahmed Alaa, Elad ...
2 3 36 Titan Alon,James Andreoni, Kate Antonovics, Da...
3 4 2 Jacob Abraham, Maruthi Akella, Deji Akinwande,...
4 5 26 Elizabeth Reese, Paula Moya, Heike Daldrup-Lin...
5 6 35 \nRebecca Alber, \n\nMarvin C. Alkin,\n\n\nWal...
6 7 42 Abadi Daniel J., Abbasi Hossein, Abed Eyad, Ab...
7 8 41 Butler Wingfield Kim, Butts Daniel, Cable\tJoh...
8 9 48 \nVictor Adamchik,\n\nLeonard M Adleman,\n\nMu...
9 10 6 Abbaszadegan Morteza, Abbott Joshua, Aberle Ja...
10 11 1 Mehdi Abedi, Emad Aboelela, Gregory D. Abowd, ...
11 12 61 S. Sebnem Ahiska King, Karen Chen, Jingyan Don...
12 13 62 Lo’ay Abusalah \nRashid Ansari \nJezekiel Ben-...
13 14 63 \nPatricia A. Young, Zane L. Berge, Francis M....
14 15 47 Scott Solomon, Cheryl Hall, David Ponton, Nico...
15 16 51 Abbas Waseem, Ackerman Robert, Adams Stephanie...
16 17 4 Keith Alford\nNick Armstrong\nKristen Aust\nTh...
17 18 64 ELIZABETH ANDERSON, CHARLOTTE ADAMS, ALYSSA AN...
18 19 23 Ali Tosyali, Edwin N. Torres, Rick Mislan, Mik...
In [89]:
for i,row in Professor_df.iterrows():
    cursor.execute("INSERT INTO Professor values (%s,%s,%s)", (int(row['ID']),row['University_ID'],row['Professors']))
uni_recomm.commit()

cursor.execute("SELECT * from Professor")
records=cursor.fetchall()

print(records)
uni_recomm.commit()
---------------------------------------------------------------------------
IntegrityError                            Traceback (most recent call last)
<ipython-input-89-3a2b09038325> in <module>
      1 for i,row in Professor_df.iterrows():
----> 2     cursor.execute("INSERT INTO Professor values (%s,%s,%s)", (int(row['ID']),row['University_ID'],row['Professors']))
      3 uni_recomm.commit()
      4 
      5 cursor.execute("SELECT * from Professor")

~\anaconda3\lib\site-packages\pymysql\cursors.py in execute(self, query, args)
    146         query = self.mogrify(query, args)
    147 
--> 148         result = self._query(query)
    149         self._executed = query
    150         return result

~\anaconda3\lib\site-packages\pymysql\cursors.py in _query(self, q)
    308         self._last_executed = q
    309         self._clear_result()
--> 310         conn.query(q)
    311         self._do_get_result()
    312         return self.rowcount

~\anaconda3\lib\site-packages\pymysql\connections.py in query(self, sql, unbuffered)
    546             sql = sql.encode(self.encoding, "surrogateescape")
    547         self._execute_command(COMMAND.COM_QUERY, sql)
--> 548         self._affected_rows = self._read_query_result(unbuffered=unbuffered)
    549         return self._affected_rows
    550 

~\anaconda3\lib\site-packages\pymysql\connections.py in _read_query_result(self, unbuffered)
    773         else:
    774             result = MySQLResult(self)
--> 775             result.read()
    776         self._result = result
    777         if result.server_status is not None:

~\anaconda3\lib\site-packages\pymysql\connections.py in read(self)
   1154     def read(self):
   1155         try:
-> 1156             first_packet = self.connection._read_packet()
   1157 
   1158             if first_packet.is_ok_packet():

~\anaconda3\lib\site-packages\pymysql\connections.py in _read_packet(self, packet_type)
    723             if self._result is not None and self._result.unbuffered_active is True:
    724                 self._result.unbuffered_active = False
--> 725             packet.raise_for_error()
    726         return packet
    727 

~\anaconda3\lib\site-packages\pymysql\protocol.py in raise_for_error(self)
    219         if DEBUG:
    220             print("errno =", errno)
--> 221         err.raise_mysql_exception(self._data)
    222 
    223     def dump(self):

~\anaconda3\lib\site-packages\pymysql\err.py in raise_mysql_exception(data)
    141     if errorclass is None:
    142         errorclass = InternalError if errno < 1000 else OperationalError
--> 143     raise errorclass(errno, errval)

IntegrityError: (1062, "Duplicate entry '1' for key 'professor.PRIMARY'")
In [85]:
cursor.execute("delete from professor")
---------------------------------------------------------------------------
OperationalError                          Traceback (most recent call last)
<ipython-input-85-3f0390cd1fc6> in <module>
----> 1 cursor.execute("delete from professor")

~\anaconda3\lib\site-packages\pymysql\cursors.py in execute(self, query, args)
    146         query = self.mogrify(query, args)
    147 
--> 148         result = self._query(query)
    149         self._executed = query
    150         return result

~\anaconda3\lib\site-packages\pymysql\cursors.py in _query(self, q)
    308         self._last_executed = q
    309         self._clear_result()
--> 310         conn.query(q)
    311         self._do_get_result()
    312         return self.rowcount

~\anaconda3\lib\site-packages\pymysql\connections.py in query(self, sql, unbuffered)
    546             sql = sql.encode(self.encoding, "surrogateescape")
    547         self._execute_command(COMMAND.COM_QUERY, sql)
--> 548         self._affected_rows = self._read_query_result(unbuffered=unbuffered)
    549         return self._affected_rows
    550 

~\anaconda3\lib\site-packages\pymysql\connections.py in _read_query_result(self, unbuffered)
    773         else:
    774             result = MySQLResult(self)
--> 775             result.read()
    776         self._result = result
    777         if result.server_status is not None:

~\anaconda3\lib\site-packages\pymysql\connections.py in read(self)
   1154     def read(self):
   1155         try:
-> 1156             first_packet = self.connection._read_packet()
   1157 
   1158             if first_packet.is_ok_packet():

~\anaconda3\lib\site-packages\pymysql\connections.py in _read_packet(self, packet_type)
    723             if self._result is not None and self._result.unbuffered_active is True:
    724                 self._result.unbuffered_active = False
--> 725             packet.raise_for_error()
    726         return packet
    727 

~\anaconda3\lib\site-packages\pymysql\protocol.py in raise_for_error(self)
    219         if DEBUG:
    220             print("errno =", errno)
--> 221         err.raise_mysql_exception(self._data)
    222 
    223     def dump(self):

~\anaconda3\lib\site-packages\pymysql\err.py in raise_mysql_exception(data)
    141     if errorclass is None:
    142         errorclass = InternalError if errno < 1000 else OperationalError
--> 143     raise errorclass(errno, errval)

OperationalError: (1412, 'Table definition has changed, please retry transaction')
In [5]:
cursor.execute("describe university")
for x in cursor:
    print(x)
('University_ID', 'varchar(255)', 'NO', 'PRI', None, '')
('University_Name', 'varchar(255)', 'YES', '', None, '')
('avg_pay_scale', 'int', 'YES', '', None, '')
('Delivery_Mode', 'varchar(255)', 'YES', '', None, '')
('Duration', 'varchar(255)', 'YES', '', None, '')
('Term', 'varchar(255)', 'YES', '', None, '')
('Year_of_Joining', 'int', 'YES', '', None, '')
('Major', 'varchar(255)', 'YES', '', None, '')
('Location', 'varchar(255)', 'YES', '', None, '')
('Cost_of_Living', 'int', 'YES', '', None, '')
('Avg_Fees', 'int', 'YES', '', None, '')
('GRE', 'varchar(255)', 'YES', '', None, '')
('TOEFL', 'int', 'YES', '', None, '')
('IELTS', 'float', 'YES', '', None, '')
In [25]:
Course_df=pd.read_excel("university_course.xlsx")
Course_df
Out[25]:
ID University_ID University_Name Course_Name
0 1 1 Northeastern University 3-D Animation
1 2 1 Northeastern University Accounting
2 3 1 Northeastern University Accounting and Business Administration (MS/MBA)
3 4 1 Northeastern University Accounting and Financial Decision Making
4 5 1 Northeastern University Adult-Gerontology Acute Care Nursing
... ... ... ... ...
632 633 6 Arizona State University Health Systems Operations
633 634 6 Arizona State University Industrial and Systems Engineering
634 635 6 Arizona State University Industrial and Systems Engineering
635 636 6 Arizona State University Operations Research Engineering
636 637 6 Arizona State University Product Development Engineering

637 rows × 4 columns

In [27]:
for i,row in Course_df.iterrows():
    cursor.execute("INSERT INTO course values (%s,%s,%s,%s)", (int(row['ID']),row['University_ID'],row['University_Name'],row['Course_Name']))
uni_recomm.commit()

cursor.execute("SELECT * from course")
records=cursor.fetchall()

print(records)
uni_recomm.commit()
((1, '1', 'Northeastern University', '3-D Animation'), (2, '1', 'Northeastern University', 'Accounting'), (3, '1', 'Northeastern University', 'Accounting and Business Administration (MS/MBA)'), (4, '1', 'Northeastern University', 'Accounting and Financial Decision Making'), (5, '1', 'Northeastern University', 'Adult-Gerontology Acute Care Nursing'), (6, '1', 'Northeastern University', 'Adult-Gerontology Acute Care Nursing (CAGS)'), (7, '1', 'Northeastern University', 'Adult-Gerontology Primary Care Nursing (CAGS)'), (8, '1', 'Northeastern University', 'Advanced and Intelligent Manufacturing'), (9, '1', 'Northeastern University', 'Agile Project Management'), (10, '1', 'Northeastern University', 'Analytics'), (11, '1', 'Northeastern University', 'Applied Analytics'), (12, '1', 'Northeastern University', 'master-of-sports-leadership-boston-267'), (13, '1', 'Northeastern University', 'master-of-sports-leadership-online-268'), (14, '1', 'Northeastern University', 'master-of-sports-leadership-charlotte-14376'), (15, '1', 'Northeastern University', 'graduate-certificate-in-supply-chain-engineering-management-14430'), (16, '1', 'Northeastern University', 'graduate-certificate-in-supply-chain-management-boston-14306'), (17, '1', 'Northeastern University', 'graduate-certificate-in-supply-chain-management-online-14307'), (18, '1', 'Northeastern University', 'graduate-certificate-in-sustainability-and-business-18881'), (19, '1', 'Northeastern University', 'graduate-certificate-in-sustainability-and-climate-change-policy-18771'), (20, '1', 'Northeastern University', 'graduate-certificate-in-sustainability-engineering-19153'), (21, '1', 'Northeastern University', 'master-of-science-in-sustainable-building-systems-5284'), (22, '1', 'Northeastern University', 'graduate-certificate-in-sustainable-energy-systems-14426'), (23, '1', 'Northeastern University', 'master-of-design-in-sustainable-urban-environments-one-year-program-5232'), (24, '1', 'Northeastern University', 'master-of-design-in-sustainable-urban-environments-two-year-program-5233'), (25, '1', 'Northeastern University', 'graduate-certificate-in-technology-systems-management-14362'), (26, '1', 'Northeastern University', 'master-of-science-in-telecommunication-networks-17108'), (27, '1', 'Northeastern University', 'transitional-doctor-of-physical-therapy-online-243'), (28, '1', 'Northeastern University', 'graduate-certificate-in-united-states-law-18954'), (29, '1', 'Northeastern University', 'graduate-certificate-in-urban-analytics-14299'), (30, '1', 'Northeastern University', 'master-of-science-in-urban-informatics-boston-14300'), (31, '1', 'Northeastern University', 'master-of-science-in-urban-informatics-online-14434'), (32, '1', 'Northeastern University', 'master-of-science-in-urban-planning-and-policy-18312'), (33, '1', 'Northeastern University', 'graduate-certificate-in-usability-18302'), (34, '1', 'Northeastern University', 'graduate-certificate-in-vaccine-development-18933'), (35, '1', 'Northeastern University', 'master-of-science-in-wireless-and-network-engineering-19163'), (36, '1', 'Northeastern University', 'master-of-science-in-regulatory-affairs-online-18361'), (37, '1', 'Northeastern University', 'master-of-science-in-regulatory-affairs-toronto-19040'), (38, '1', 'Northeastern University', 'graduate-certificate-in-remote-sensing-online-262'), (39, '1', 'Northeastern University', 'graduate-certificate-in-renewable-energy-14427'), (40, '1', 'Northeastern University', 'master-of-science-in-robotics-17772'), (41, '1', 'Northeastern University', 'graduate-certificate-in-sales-management-online-19116'), (42, '1', 'Northeastern University', 'certificate-of-advanced-graduate-study-in-school-psychology-651'), (43, '1', 'Northeastern University', 'master-of-arts-in-teaching-in-secondary-education-boston-270'), (44, '1', 'Northeastern University', 'master-of-arts-in-security-and-intelligence-studies-boston-19099'), (45, '1', 'Northeastern University', 'master-of-arts-in-security-and-intelligence-studies-online-19112'), (46, '1', 'Northeastern University', 'graduate-certificate-in-security-and-resilience-studies-boston-14293'), (47, '1', 'Northeastern University', 'master-of-science-in-security-and-resilience-studies-14294'), (48, '1', 'Northeastern University', 'graduate-certificate-in-security-and-resilience-studies-seattle-14433'), (49, '1', 'Northeastern University', 'master-of-science-in-security-and-resilience-studies-seattle-17109'), (50, '1', 'Northeastern University', 'master-of-science-in-security-and-resilience-studies-arlington-19181'), (51, '1', 'Northeastern University', 'master-of-science-in-security-and-resilience-studies-1-year-experiential-19066'), (52, '1', 'Northeastern University', 'graduate-certificate-in-social-media-for-organizational-performance-boston-18899'), (53, '1', 'Northeastern University', 'graduate-certificate-in-social-media-for-organizational-performance-online-18900'), (54, '1', 'Northeastern University', 'graduate-certificate-in-software-engineering-systems-14354'), (55, '1', 'Northeastern University', 'master-of-science-in-software-engineering-systems-18774'), (56, '1', 'Northeastern University', 'graduate-certificate-in-software-engineering-systems-arlington-19131'), (57, '1', 'Northeastern University', 'master-of-science-in-software-engineering-systems-arlington-19124'), (58, '1', 'Northeastern University', 'master-of-education-in-special-education-boston-289'), (59, '1', 'Northeastern University', 'master-of-education-in-special-education-online-290'), (60, '1', 'Northeastern University', 'master-of-science-in-speech-language-pathology-653'), (61, '1', 'Northeastern University', 'Masters of Computer Science'), (62, '1', 'Northeastern University', 'Masters of Information Systems'), (63, '1', 'Northeastern University', 'Masters of Software Engineering Management'), (64, '1', 'Northeastern University', 'Masters of Data Analytics'), (65, '64', 'San Diego State University', 'Aerospace Engineering (MS) (SDSU)'), (66, '64', 'San Diego State University', 'Anthropology (MA) (SDSU)'), (67, '64', 'San Diego State University', 'Applied Mathematics (MS) (SDSU)'), (68, '64', 'San Diego State University', 'Applied Mathematics: Dynamical Systems (MS) (SDSU)'), (69, '64', 'San Diego State University', 'Art (MFA) (SDSU)'), (70, '64', 'San Diego State University', 'Astronomy (MS) (SDSU)'), (71, '64', 'San Diego State University', 'Athletic Training (MS) (SDSU)'), (72, '64', 'San Diego State University', 'Big Data Analytics (MS) (SDSU)'), (73, '64', 'San Diego State University', 'Big Data Analytics (MS) (SDSU GC)'), (74, '64', 'San Diego State University', 'Bioengineering (MS) (SDSU)'), (75, '64', 'San Diego State University', 'Bioinformatics and Medical Informatics (MS) (SDSU)'), (76, '64', 'San Diego State University', 'Biology (MA) (SDSU)'), (77, '64', 'San Diego State University', 'Biology (MS) (SDSU)'), (78, '64', 'San Diego State University', 'Biology: Microbiology (MS) (SDSU)'), (79, '64', 'San Diego State University', 'Business Administration: Accountancy (MS) (SDSU)'), (80, '64', 'San Diego State University', 'Business Administration (MBA) (SDSU)'), (81, '64', 'San Diego State University', 'Business Administration (MS) (SDSU)'), (82, '64', 'San Diego State University', 'Business Administration (MBA) with concurrent Juris Doctorate (MBA/JD) (SDSU)'), (83, '64', 'San Diego State University', 'Business Administration: Cybersecurity Management (MS) (SDSU)'), (84, '64', 'San Diego State University', 'Business Administration: Global Business Development (MS) (SDSU)'), (85, '64', 'San Diego State University', 'Business Administration: Information Systems (MS) (SDSU)'), (86, '64', 'San Diego State University', 'Business Administration – Sports Business Management (MBA) (SDSU GC)'), (87, '64', 'San Diego State University', 'Chemistry (MA) (SDSU)'), (88, '64', 'San Diego State University', 'Chemistry (MS) (SDSU)'), (89, '64', 'San Diego State University', 'Child and Family Development (MS) (SDSU)'), (90, '64', 'San Diego State University', 'Child and Family Development – Early Childhood Mental Health (MS) (SDSU)'), (91, '64', 'San Diego State University', 'City Planning (MCP) (SDSU)'), (92, '64', 'San Diego State University', 'Civil Engineering (MS) (SDSU)'), (93, '64', 'San Diego State University', 'Communication: Communication Studies (MA) (SDSU)'), (94, '64', 'San Diego State University', 'Communication: Mass Communication and Media Studies (MA) (SDSU)'), (95, '64', 'San Diego State University', 'Computational Science (MS) (SDSU)'), (96, '64', 'San Diego State University', 'Computer Engineering (MS) (SDSU)'), (97, '64', 'San Diego State University', 'Computer Science (MS) (SDSU)'), (98, '64', 'San Diego State University', 'Creative Writing (MFA) (SDSU)'), (99, '64', 'San Diego State University', 'Criminal Justice and Criminology (MS) (SDSU)'), (100, '64', 'San Diego State University', 'Economics (MA) (SDSU)'), (101, '64', 'San Diego State University', 'Education: Counseling (MA) (SDSU)'), (102, '64', 'San Diego State University', 'Education: Counseling – Marriage and Family Therapy (MS) (SDSU)'), (103, '64', 'San Diego State University', 'Education: Counseling – Multicultural Community Counseling (Community-Based Block) (MS) (SDSU)'), (104, '64', 'San Diego State University', 'Education: Counseling – School Counseling (MS) with PPS – School Counseling Credential (SDSU)'), (105, '64', 'San Diego State University', 'Education: Dual Language and English Learner Education (MA) (SDSU)'), (106, '64', 'San Diego State University', 'Education: Educational Leadership (MA) (SDSU)'), (107, '64', 'San Diego State University', 'Education: Educational Leadership (MA) (SDSU GC)'), (108, '64', 'San Diego State University', 'Education: Postsecondary Educational Leadership and Student Affairs (MA) (SDSU)'), (109, '64', 'San Diego State University', 'Education: Reading Education (MA) (SDSU)'), (110, '64', 'San Diego State University', 'Education: Rehabilitation Counseling (MS) (SDSU)'), (111, '64', 'San Diego State University', 'Education: Rehabilitation Counseling (MS) (SDSU GC)'), (112, '64', 'San Diego State University', 'Education: School Psychology (EdS) with PPS – School Psychology Credential (SDSU)'), (113, '64', 'San Diego State University', 'Education: Special Education (MA) (SDSU)'), (114, '64', 'San Diego State University', 'Education: Teacher Leadership (MA) (SDSU GC)'), (115, '64', 'San Diego State University', 'Education: Teaching – Elementary & Secondary Education (MAT) (SDSU)'), (116, '64', 'San Diego State University', 'Education: Teaching – Language Arts Education (Summer Only) (MAT) (SDSU)'), (117, '64', 'San Diego State University', 'Education: Teaching – Mathematics & Science Education (MAT) (SDSU)'), (118, '64', 'San Diego State University', 'Engineering: Aerospace Engineering and Engineering Mechanics (MS) (SDSU)'), (119, '64', 'San Diego State University', 'Engineering: Bioengineering (MS) (SDSU)'), (120, '64', 'San Diego State University', 'Engineering: Civil Engineering (MS) (SDSU)'), (121, '64', 'San Diego State University', 'Engineering: Computer Engineering (MS) (SDSU)'), (122, '64', 'San Diego State University', 'Engineering: Computer Engineering (MS) (SDSU GC)'), (123, '64', 'San Diego State University', 'Engineering: Electrical Engineering (MS) (SDSU)'), (124, '64', 'San Diego State University', 'Engineering: Electrical Engineering (MS) (SDSU GC)'), (125, '64', 'San Diego State University', 'Engineering: Master of Engineering (MEng) (SDSU)'), (126, '64', 'San Diego State University', 'Engineering: Mechanical Engineering (MS) (SDSU)'), (127, '64', 'San Diego State University', 'English (MA) (SDSU)'), (128, '64', 'San Diego State University', 'Epidemiology (MS) (SDSU)'), (129, '64', 'San Diego State University', 'Exercise Physiology (MS) (SDSU)'), (130, '64', 'San Diego State University', 'Film and Television Production (MFA) (SDSU)'), (131, '64', 'San Diego State University', 'French (MA) (SDSU)'), (132, '64', 'San Diego State University', 'Geography (MA) (SDSU)'), (133, '64', 'San Diego State University', 'Geography (MS) (SDSU)'), (134, '64', 'San Diego State University', 'Geological Science (MS) (SDSU)'), (135, '64', 'San Diego State University', 'History (MA) (SDSU)'), (136, '64', 'San Diego State University', 'Homeland Security (MS) (SDSU)'), (137, '64', 'San Diego State University', 'Homeland Security (MS) (SDSU IV)'), (138, '64', 'San Diego State University', 'Hospitality & Tourism Management (MS) (SDSU GC)'), (139, '64', 'San Diego State University', 'Interdisciplinary Studies (MA) (SDSU)'), (140, '64', 'San Diego State University', 'Interdisciplinary Studies (MS) (SDSU)'), (141, '64', 'San Diego State University', 'Kinesiology (MS) (SDSU)'), (142, '64', 'San Diego State University', 'Latin American Studies (MA) (SDSU)'), (143, '64', 'San Diego State University', 'Learning Design and Techonology (MA) (SDSU)'), (144, '64', 'San Diego State University', 'Liberal Arts and Sciences (MA) (SDSU)'), (145, '64', 'San Diego State University', 'Linguistics (MA) (SDSU)'), (146, '64', 'San Diego State University', 'Mathematics (MA) (SDSU)'), (147, '64', 'San Diego State University', 'Mathematics: Applied Mathematics (MS) (SDSU)'), (148, '64', 'San Diego State University', 'Mathematics: Applied Mathematics – Dynamical Systems (MS) (SDSU)'), (149, '64', 'San Diego State University', 'Mathematics: Teaching Service (MA) (SDSU)'), (150, '64', 'San Diego State University', 'Mechanical Engineering (MS) (SDSU)'), (151, '64', 'San Diego State University', 'Medical Physics (MS) (SDSU)'), (152, '64', 'San Diego State University', 'Meeting & Event Management (MS) (SDSU GC)'), (153, '64', 'San Diego State University', 'Microbiology (MS) (SDSU)'), (154, '64', 'San Diego State University', 'Music (MA) (SDSU)'), (155, '64', 'San Diego State University', 'Music (MM) (SDSU)'), (156, '64', 'San Diego State University', 'Nursing (MS) (SDSU)'), (157, '64', 'San Diego State University', 'Nursing (MS) (SDSU IV)'), (158, '64', 'San Diego State University', 'Nutritional Sciences (MS) (SDSU)'), (159, '64', 'San Diego State University', 'Philosophy (MA) (SDSU)'), (160, '64', 'San Diego State University', 'Physics (MA) (SDSU)'), (161, '64', 'San Diego State University', 'Physics (MS) (SDSU)'), (162, '64', 'San Diego State University', 'Physics: Medical Physics (MS) (SDSU)'), (163, '64', 'San Diego State University', 'Political Science (MA) (SDSU)'), (164, '64', 'San Diego State University', 'Psychology (MA) (SDSU)'), (165, '64', 'San Diego State University', 'Psychology (MS) (SDSU)'), (166, '64', 'San Diego State University', 'Public Administration (MPA) (SDSU)'), (167, '64', 'San Diego State University', 'Public Administration (MPA) (SDSU GC)'), (168, '64', 'San Diego State University', 'Public Administration: City Planning (MPA) (SDSU)'), (169, '64', 'San Diego State University', 'Public Administration: Criminal Justice (MPA) (SDSU)'), (170, '64', 'San Diego State University', 'Public Health (MPH) (SDSU)'), (171, '64', 'San Diego State University', 'Public Health (MPH) (SDSU GC)'), (172, '64', 'San Diego State University', 'Public Health (MS) (SDSU)'), (173, '64', 'San Diego State University', 'Regulatory Affairs (MS) (SDSU GC)'), (174, '64', 'San Diego State University', 'Rhetoric and Writing Studies (MA) (SDSU)'), (175, '64', 'San Diego State University', 'Screen Writing (MFA) (SDSU GC)'), (176, '64', 'San Diego State University', 'Social Work (MSW) (SDSU)'), (177, '64', 'San Diego State University', 'Social Work (MSW) (SDSU IV)'), (178, '64', 'San Diego State University', 'Social Work (MSW) with concurrent Juris Doctorate (MSW/JD) (SDSU)'), (179, '64', 'San Diego State University', 'Sociology (MA) (SDSU)'), (180, '64', 'San Diego State University', 'Spanish (MA) (SDSU)'), (181, '64', 'San Diego State University', 'Speech, Language and Hearing Sciences (MA) (SDSU)'), (182, '64', 'San Diego State University', 'Statistics (MS) (SDSU)'), (183, '64', 'San Diego State University', 'Statistics: Biostatistics (MS) (SDSU)'), (184, '64', 'San Diego State University', 'Theatre Arts (MA) (SDSU)'), (185, '64', 'San Diego State University', 'Theatre Arts: Design and Technology (MFA) (SDSU)'), (186, '64', 'San Diego State University', 'Theatre Arts: Musical Theatre (MFA) (SDSU)'), (187, '64', 'San Diego State University', "Women's Studies (MA) (SDSU)"), (188, '35', 'University of California, Los Angeles', 'Aerospace Engineering'), (189, '35', 'University of California, Los Angeles', 'African American Studies'), (190, '35', 'University of California, Los Angeles', 'African Studies'), (191, '35', 'University of California, Los Angeles', 'American Indian Studies'), (192, '35', 'University of California, Los Angeles', 'Anderson School of Management'), (193, '35', 'University of California, Los Angeles', 'Anthropology'), (194, '35', 'University of California, Los Angeles', 'Archaeology'), (195, '35', 'University of California, Los Angeles', 'Architecture'), (196, '35', 'University of California, Los Angeles', 'Architecture - M.Arch.'), (197, '35', 'University of California, Los Angeles', 'Architecture - M.S. in Architecture and Urban Design'), (198, '35', 'University of California, Los Angeles', 'Architecture and Urban Design Department'), (199, '35', 'University of California, Los Angeles', 'Art'), (200, '35', 'University of California, Los Angeles', 'Art History'), (201, '35', 'University of California, Los Angeles', 'Asian American Studies'), (202, '35', 'University of California, Los Angeles', 'Asian Languages and Cultures'), (203, '35', 'University of California, Los Angeles', 'Asian Languages and Cultures Department'), (204, '35', 'University of California, Los Angeles', 'Astronomy and Astrophysics'), (205, '35', 'University of California, Los Angeles', 'Astronomy and Astrophysics-MAT'), (206, '35', 'University of California, Los Angeles', 'Atmospheric and Oceanic Sciences'), (207, '35', 'University of California, Los Angeles', 'Biochemistry, Molecular and Structural Biology'), (208, '35', 'University of California, Los Angeles', 'Bioengineering'), (209, '35', 'University of California, Los Angeles', 'Bioinformatics'), (210, '35', 'University of California, Los Angeles', 'Biology'), (211, '35', 'University of California, Los Angeles', 'Biomathematics'), (212, '35', 'University of California, Los Angeles', 'Bioscience Programs'), (213, '35', 'University of California, Los Angeles', 'Biostatistics'), (214, '35', 'University of California, Los Angeles', 'Biostatistics Department'), (215, '35', 'University of California, Los Angeles', 'Biostatistics MPH'), (216, '35', 'University of California, Los Angeles', 'Chemical & Biomolecular Engineering Department'), (217, '35', 'University of California, Los Angeles', 'Chemical Engineering'), (218, '35', 'University of California, Los Angeles', 'Chemistry'), (219, '35', 'University of California, Los Angeles', 'Chemistry - Master of Applied Chemical Sciences'), (220, '35', 'University of California, Los Angeles', 'Chemistry and Biochemistry Department'), (221, '35', 'University of California, Los Angeles', 'Chicana & Chicano Studies'), (222, '35', 'University of California, Los Angeles', 'Chicana/o and Central American Studies Department'), (223, '35', 'University of California, Los Angeles', 'Choreographic Inquiry'), (224, '35', 'University of California, Los Angeles', 'Civil & Environmental Engineering Department'), (225, '35', 'University of California, Los Angeles', 'Civil Engineering'), (226, '35', 'University of California, Los Angeles', 'Classics'), (227, '35', 'University of California, Los Angeles', 'Classics Department'), (228, '35', 'University of California, Los Angeles', 'Clinical Research'), (229, '35', 'University of California, Los Angeles', 'Communication'), (230, '35', 'University of California, Los Angeles', 'Community Health Sciences'), (231, '35', 'University of California, Los Angeles', 'Community Health Sciences Department'), (232, '35', 'University of California, Los Angeles', 'Community Health Sciences MPH'), (233, '35', 'University of California, Los Angeles', 'Comparative Literature'), (234, '35', 'University of California, Los Angeles', 'Computational Medicine Department'), (235, '35', 'University of California, Los Angeles', 'Computer Science'), (236, '35', 'University of California, Los Angeles', 'Conservation of Cultural Heritage'), (237, '35', 'University of California, Los Angeles', 'Conservation of Cultural Heritage Department'), (238, '35', 'University of California, Los Angeles', 'Conservation of Material Culture'), (239, '35', 'University of California, Los Angeles', 'Culture and Performance'), (240, '35', 'University of California, Los Angeles', 'David Geffen School of Medicine'), (241, '35', 'University of California, Los Angeles', 'Design | Media Arts'), (242, '35', 'University of California, Los Angeles', 'Earth, Planetary, and Space Sciences Department'), (243, '35', 'University of California, Los Angeles', 'East Asian Studies'), (244, '35', 'University of California, Los Angeles', 'Ecology and Evolutionary Biology Department'), (245, '35', 'University of California, Los Angeles', 'Economics'), (246, '35', 'University of California, Los Angeles', 'Economics - Master of Quantitative Economics'), (247, '35', 'University of California, Los Angeles', 'Economics Department'), (248, '35', 'University of California, Los Angeles', 'Education'), (249, '35', 'University of California, Los Angeles', 'Educational Leadership Program'), (250, '35', 'University of California, Los Angeles', 'Electrical & Computer Engineering'), (251, '35', 'University of California, Los Angeles', 'Engineering - Master of Engineering'), (252, '35', 'University of California, Los Angeles', 'Engineering - MS in Engineering, Online'), (253, '35', 'University of California, Los Angeles', 'Engineering - MS in Engineering-Aerospace, Online'), (254, '35', 'University of California, Los Angeles', 'Engineering - MS in Engineering-Computer Networking, Online'), (255, '35', 'University of California, Los Angeles', 'Engineering - MS in Engineering-Electrical, Online'), (256, '35', 'University of California, Los Angeles', 'Engineering - MS in Engineering-Electronic Materials, Online'), (257, '35', 'University of California, Los Angeles', 'Engineering - MS in Engineering-Integrated Circuits, Online'), (258, '35', 'University of California, Los Angeles', 'Engineering - MS in Engineering-Manufacturing and Design, Online'), (259, '35', 'University of California, Los Angeles', 'Engineering - MS in Engineering-Materials Science, Online'), (260, '35', 'University of California, Los Angeles', 'Engineering - MS in Engineering-Mechanical, Online'), (261, '35', 'University of California, Los Angeles', 'Engineering - MS in Engineering-Signal Processing and Communications, Online'), (262, '35', 'University of California, Los Angeles', 'Engineering - MS in Engineering-Structural Materials, Online'), (263, '35', 'University of California, Los Angeles', 'English'), (264, '35', 'University of California, Los Angeles', 'Environment and Sustainability'), (265, '35', 'University of California, Los Angeles', 'Environmental Health Sciences'), (266, '35', 'University of California, Los Angeles', 'Environmental Health Sciences Department'), (267, '35', 'University of California, Los Angeles', 'Environmental Health Sciences MPH'), (268, '35', 'University of California, Los Angeles', 'Environmental Science & Engineering'), (269, '35', 'University of California, Los Angeles', 'Epidemiology'), (270, '35', 'University of California, Los Angeles', 'Epidemiology Department'), (271, '35', 'University of California, Los Angeles', 'Epidemiology MPH'), (272, '35', 'University of California, Los Angeles', 'Ethnomusicology'), (273, '35', 'University of California, Los Angeles', 'European Languages & Transcultural Studies Department'), (274, '35', 'University of California, Los Angeles', 'Executive Master of Public Health'), (275, '35', 'University of California, Los Angeles', 'Fielding School of Public Health'), (276, '35', 'University of California, Los Angeles', 'Film & Television'), (277, '35', 'University of California, Los Angeles', 'Film, Television, & Digital Media Department'), (278, '35', 'University of California, Los Angeles', 'French & Francophone Studies'), (279, '35', 'University of California, Los Angeles', 'Gender Studies'), (280, '35', 'University of California, Los Angeles', 'Genetic Counseling'), (281, '35', 'University of California, Los Angeles', 'Geochemistry'), (282, '35', 'University of California, Los Angeles', 'Geography'), (283, '35', 'University of California, Los Angeles', 'Geography Department'), (284, '35', 'University of California, Los Angeles', 'Geology'), (285, '35', 'University of California, Los Angeles', 'Geophysics & Space Physics'), (286, '35', 'University of California, Los Angeles', 'Germanic Languages'), (287, '35', 'University of California, Los Angeles', 'Greek'), (288, '35', 'University of California, Los Angeles', 'Health Management MPH'), (289, '35', 'University of California, Los Angeles', 'Health Policy & Management'), (290, '35', 'University of California, Los Angeles', 'Health Policy and Management Department'), (291, '35', 'University of California, Los Angeles', 'Health Policy MPH'), (292, '35', 'University of California, Los Angeles', 'Healthcare Administration'), (293, '35', 'University of California, Los Angeles', 'Henry Samueli School of Engineering and Applied Science'), (294, '35', 'University of California, Los Angeles', 'Herb Alpert School of Music'), (295, '35', 'University of California, Los Angeles', 'Hispanic Languages & Literatures'), (296, '35', 'University of California, Los Angeles', 'History'), (297, '35', 'University of California, Los Angeles', 'Human Genetics'), (298, '35', 'University of California, Los Angeles', 'Human Genetics Department'), (299, '35', 'University of California, Los Angeles', 'Humanities'), (300, '35', 'University of California, Los Angeles', 'Indo-European Studies'), (301, '35', 'University of California, Los Angeles', 'Information Studies'), (302, '35', 'University of California, Los Angeles', 'Information Studies Department'), (303, '35', 'University of California, Los Angeles', 'Institute of the Environment & Sustainability'), (304, '35', 'University of California, Los Angeles', 'Integrative Biology & Physiology Department'), (305, '35', 'University of California, Los Angeles', 'International Institute'), (306, '35', 'University of California, Los Angeles', 'Islamic Studies'), (307, '35', 'University of California, Los Angeles', 'Italian'), (308, '35', 'University of California, Los Angeles', 'Latin'), (309, '35', 'University of California, Los Angeles', 'Latin American Studies'), (310, '35', 'University of California, Los Angeles', 'Leave of Absence for UCLA Graduate School'), (311, '35', 'University of California, Los Angeles', 'Library & Information Science'), (312, '35', 'University of California, Los Angeles', 'Library & Information Science Certificate'), (313, '35', 'University of California, Los Angeles', 'Life Sciences'), (314, '35', 'University of California, Los Angeles', 'Linguistics'), (315, '35', 'University of California, Los Angeles', 'Luskin School of Public Affairs'), (316, '35', 'University of California, Los Angeles', 'Management - Business Analytics MS'), (317, '35', 'University of California, Los Angeles', 'Management - Executive MBA'), (318, '35', 'University of California, Los Angeles', 'Management - Fully Employed MBA (FEMBA)'), (319, '35', 'University of California, Los Angeles', 'Management - Global Executive MBA for Asia Pacific'), (320, '35', 'University of California, Los Angeles', 'Management - Master of Financial Engineering'), (321, '35', 'University of California, Los Angeles', 'Management - MBA'), (322, '35', 'University of California, Los Angeles', 'Management - MS, PHD'), (323, '35', 'University of California, Los Angeles', 'Manufacturing Engineering'), (324, '35', 'University of California, Los Angeles', 'Master of Applied Geospatial Information Systems & Technologies'), (325, '35', 'University of California, Los Angeles', 'Master of Legal Studies'), (326, '35', 'University of California, Los Angeles', 'Master of Public Health for Health Professionals'), (327, '35', 'University of California, Los Angeles', 'Master of Quantum Science and Technology'), (328, '35', 'University of California, Los Angeles', 'Master of Social Science'), (329, '35', 'University of California, Los Angeles', 'Materials Science & Engineering'), (330, '35', 'University of California, Los Angeles', 'Mathematics'), (331, '35', 'University of California, Los Angeles', 'Mechanical & Aerospace Engineering Department'), (332, '35', 'University of California, Los Angeles', 'Mechanical Engineering'), (333, '35', 'University of California, Los Angeles', 'Microbiology, Immunology, & Molecular Genetics'), (334, '35', 'University of California, Los Angeles', 'Molecular & Medical Pharmacology'), (335, '35', 'University of California, Los Angeles', 'Molecular Biology'), (336, '35', 'University of California, Los Angeles', 'Molecular Toxicology'), (337, '35', 'University of California, Los Angeles', 'Molecular, Cell, & Developmental Biology'), (338, '35', 'University of California, Los Angeles', 'Molecular, Cellular, & Integrative Physiology'), (339, '35', 'University of California, Los Angeles', 'Music'), (340, '35', 'University of California, Los Angeles', 'Musicology'), (341, '35', 'University of California, Los Angeles', 'Near Eastern Languages & Cultures'), (342, '35', 'University of California, Los Angeles', 'Near Eastern Languages & Cultures Department'), (343, '35', 'University of California, Los Angeles', 'Neuroscience'), (344, '35', 'University of California, Los Angeles', 'Nursing'), (345, '35', 'University of California, Los Angeles', 'Nursing - Doctor of Nursing Practice'), (346, '35', 'University of California, Los Angeles', 'Oral Biology'), (347, '35', 'University of California, Los Angeles', 'Philosophy'), (348, '35', 'University of California, Los Angeles', 'Physical Sciences'), (349, '35', 'University of California, Los Angeles', 'Physics'), (350, '35', 'University of California, Los Angeles', 'Physics & Biology in Medicine'), (351, '35', 'University of California, Los Angeles', 'Physics and Astronomy Department'), (352, '35', 'University of California, Los Angeles', 'Physiological Science'), (353, '35', 'University of California, Los Angeles', 'Planetary Science'), (354, '35', 'University of California, Los Angeles', 'Political Science'), (355, '35', 'University of California, Los Angeles', 'Portuguese'), (356, '35', 'University of California, Los Angeles', 'Psychology'), (357, '35', 'University of California, Los Angeles', 'Public Health'), (358, '35', 'University of California, Los Angeles', 'Public Policy'), (359, '35', 'University of California, Los Angeles', 'Scandinavian'), (360, '35', 'University of California, Los Angeles', 'School of Dentistry'), (361, '35', 'University of California, Los Angeles', 'School of Education and Information Studies'), (362, '35', 'University of California, Los Angeles', 'School of Law'), (363, '35', 'University of California, Los Angeles', 'School of Nursing'), (364, '35', 'University of California, Los Angeles', 'School of the Arts and Architecture'), (365, '35', 'University of California, Los Angeles', 'School of Theater, Film and Television'), (366, '35', 'University of California, Los Angeles', 'Slavic, East European, and Eurasian Languages & Cultures'), (367, '35', 'University of California, Los Angeles', 'Social Sciences'), (368, '35', 'University of California, Los Angeles', 'Social Welfare'), (369, '35', 'University of California, Los Angeles', 'Sociology'), (370, '35', 'University of California, Los Angeles', 'Spanish'), (371, '35', 'University of California, Los Angeles', 'Spanish and Portuguese Department'), (372, '35', 'University of California, Los Angeles', 'Special Education'), (373, '35', 'University of California, Los Angeles', 'Statistics'), (374, '35', 'University of California, Los Angeles', 'Statistics - Master of Applied Statistics'), (375, '35', 'University of California, Los Angeles', 'Statistics Department'), (376, '35', 'University of California, Los Angeles', 'Teaching Asian Languages'), (377, '35', 'University of California, Los Angeles', 'Theater'), (378, '35', 'University of California, Los Angeles', 'Theater and Performance Studies'), (379, '35', 'University of California, Los Angeles', 'Theater Department'), (380, '35', 'University of California, Los Angeles', 'Urban and Regional Planning'), (381, '35', 'University of California, Los Angeles', "Urban and Regional Planning - Institut d'Etudes de Paris"), (382, '35', 'University of California, Los Angeles', 'Urban Planning'), (383, '35', 'University of California, Los Angeles', 'Urban Planning Department'), (384, '35', 'University of California, Los Angeles', 'World Arts and Cultures/Dance Department'), (385, '62', 'University of Illinois Chicago', 'Accounting'), (386, '62', 'University of Illinois Chicago', 'Anthropology'), (387, '62', 'University of Illinois Chicago', 'Applied Behavior Analysis, Disability and Diversity in Urban Society (effective Fall 2023)'), (388, '62', 'University of Illinois Chicago', 'Applied Economics'), (389, '62', 'University of Illinois Chicago', 'Architecture'), (390, '62', 'University of Illinois Chicago', 'Art'), (391, '62', 'University of Illinois Chicago', 'Art History'), (392, '62', 'University of Illinois Chicago', 'Bioinformatics'), (393, '62', 'University of Illinois Chicago', 'Biological Sciences'), (394, '62', 'University of Illinois Chicago', 'Biomedical and Health Informatics'), (395, '62', 'University of Illinois Chicago', 'Biomedical Engineering'), (396, '62', 'University of Illinois Chicago', 'Biomedical Sciences (GEMS)'), (397, '62', 'University of Illinois Chicago', 'Biomedical Visualization'), (398, '62', 'University of Illinois Chicago', 'Biostatistics'), (399, '62', 'University of Illinois Chicago', 'Business Administration'), (400, '62', 'University of Illinois Chicago', 'Business Administration (Professional Program)'), (401, '62', 'University of Illinois Chicago', 'Business Analytics'), (402, '62', 'University of Illinois Chicago', 'Chemical Engineering'), (403, '62', 'University of Illinois Chicago', 'Chemistry'), (404, '62', 'University of Illinois Chicago', 'City Design'), (405, '62', 'University of Illinois Chicago', 'Civic Analytics'), (406, '62', 'University of Illinois Chicago', 'Civil Engineering'), (407, '62', 'University of Illinois Chicago', 'Clinical and Translational Science'), (408, '62', 'University of Illinois Chicago', 'Clinical Exercise Physiology (Professional Program)'), (409, '62', 'University of Illinois Chicago', 'Communication'), (410, '62', 'University of Illinois Chicago', 'Comparative Effectiveness Research'), (411, '62', 'University of Illinois Chicago', 'Computer Science'), (412, '62', 'University of Illinois Chicago', 'Construction Engineering and Management'), (413, '62', 'University of Illinois Chicago', 'Criminology, Law, and Justice'), (414, '62', 'University of Illinois Chicago', 'Curriculum and Instruction'), (415, '62', 'University of Illinois Chicago', 'Dental Medicine (Professional Program)'), (416, '62', 'University of Illinois Chicago', 'Design Criticism'), (417, '62', 'University of Illinois Chicago', 'Disability and Human Development'), (418, '62', 'University of Illinois Chicago', 'Disability Studies'), (419, '62', 'University of Illinois Chicago', 'Early Childhood Education'), (420, '62', 'University of Illinois Chicago', 'Earth and Environmental Sciences'), (421, '62', 'University of Illinois Chicago', 'Economics'), (422, '62', 'University of Illinois Chicago', 'Educational Psychology'), (423, '62', 'University of Illinois Chicago', 'Electrical and Computer Engineering'), (424, '62', 'University of Illinois Chicago', 'Energy Engineering'), (425, '62', 'University of Illinois Chicago', 'Engineering (Professional Program)'), (426, '62', 'University of Illinois Chicago', 'English'), (427, '62', 'University of Illinois Chicago', 'Environmental and Urban Geography'), (428, '62', 'University of Illinois Chicago', 'Epidemiology'), (429, '62', 'University of Illinois Chicago', 'Finance'), (430, '62', 'University of Illinois Chicago', 'Forensic Science'), (431, '62', 'University of Illinois Chicago', 'Forensic Toxicology'), (432, '62', 'University of Illinois Chicago', 'French and Francophone Studies'), (433, '62', 'University of Illinois Chicago', 'Germanic Studies'), (434, '62', 'University of Illinois Chicago', 'Graphic Design'), (435, '62', 'University of Illinois Chicago', 'Health Informatics'), (436, '62', 'University of Illinois Chicago', 'Health Information Management'), (437, '62', 'University of Illinois Chicago', 'Health Professions Education'), (438, '62', 'University of Illinois Chicago', 'Healthcare Administration'), (439, '62', 'University of Illinois Chicago', 'Healthspan Promotion and Rehabilitation'), (440, '62', 'University of Illinois Chicago', 'Hispanic Studies'), (441, '62', 'University of Illinois Chicago', 'History'), (442, '62', 'University of Illinois Chicago', 'Industrial Design'), (443, '62', 'University of Illinois Chicago', 'Industrial Engineering/Industrial Engineering and Operations Research'), (444, '62', 'University of Illinois Chicago', 'Instructional Leadership'), (445, '62', 'University of Illinois Chicago', 'Kinesiology'), (446, '62', 'University of Illinois Chicago', 'Kinesiology and Nutrition'), (447, '62', 'University of Illinois Chicago', 'Language, Literacies, and Learning'), (448, '62', 'University of Illinois Chicago', 'Latin American and Latino Studies'), (449, '62', 'University of Illinois Chicago', 'Law (Professional Programs)'), (450, '62', 'University of Illinois Chicago', 'Learning Sciences'), (451, '62', 'University of Illinois Chicago', 'Linguistics'), (452, '62', 'University of Illinois Chicago', 'Management Information Systems'), (453, '62', 'University of Illinois Chicago', 'Marketing'), (454, '62', 'University of Illinois Chicago', 'Materials Engineering'), (455, '62', 'University of Illinois Chicago', 'Mathematics'), (456, '62', 'University of Illinois Chicago', 'Measurement, Evaluation, Statistics, and Assessment'), (457, '62', 'University of Illinois Chicago', 'Mechanical Engineering'), (458, '62', 'University of Illinois Chicago', 'Medical Biotechnology'), (459, '62', 'University of Illinois Chicago', 'Medical Physiology'), (460, '62', 'University of Illinois Chicago', 'Medicine (Professional Program)'), (461, '62', 'University of Illinois Chicago', 'Museum and Exhibition Studies'), (462, '62', 'University of Illinois Chicago', 'Neuroscience'), (463, '62', 'University of Illinois Chicago', 'Nursing'), (464, '62', 'University of Illinois Chicago', 'Nursing Practice (Professional Program)'), (465, '62', 'University of Illinois Chicago', 'Nutrition'), (466, '62', 'University of Illinois Chicago', 'Occupational Therapy'), (467, '62', 'University of Illinois Chicago', 'Occupational Therapy (Professional Program)'), (468, '62', 'University of Illinois Chicago', 'Occupational Therapy (Post-Professional Program)'), (469, '62', 'University of Illinois Chicago', 'Oral Sciences'), (470, '62', 'University of Illinois Chicago', 'Patient Safety Leadership'), (471, '62', 'University of Illinois Chicago', 'Pharmaceutical Sciences'), (472, '62', 'University of Illinois Chicago', 'Pharmacy'), (473, '62', 'University of Illinois Chicago', 'Pharmacy (Professional Program)'), (474, '62', 'University of Illinois Chicago', 'Philosophy'), (475, '62', 'University of Illinois Chicago', 'Physical Therapy (Professional Program)'), (476, '62', 'University of Illinois Chicago', 'Physics'), (477, '62', 'University of Illinois Chicago', 'Physiology for Therapeutic Development (effective Fall 2023)'), (478, '62', 'University of Illinois Chicago', 'Policy Studies in Urban Education'), (479, '62', 'University of Illinois Chicago', 'Polish, Russian, and Central and Eastern European Studies'), (480, '62', 'University of Illinois Chicago', 'Political Science'), (481, '62', 'University of Illinois Chicago', 'Psychology'), (482, '62', 'University of Illinois Chicago', 'Public Administration'), (483, '62', 'University of Illinois Chicago', 'Public Health (Professional Programs)'), (484, '62', 'University of Illinois Chicago', 'Public Health Sciences'), (485, '62', 'University of Illinois Chicago', 'Public Policy'), (486, '62', 'University of Illinois Chicago', 'Real Estate'), (487, '62', 'University of Illinois Chicago', 'Rehabilitation Sciences'), (488, '62', 'University of Illinois Chicago', 'Science Education'), (489, '62', 'University of Illinois Chicago', 'Social Work'), (490, '62', 'University of Illinois Chicago', 'Social Work (Professional Program)'), (491, '62', 'University of Illinois Chicago', 'Sociology'), (492, '62', 'University of Illinois Chicago', 'Spanish'), (493, '62', 'University of Illinois Chicago', 'Special Education'), (494, '62', 'University of Illinois Chicago', 'Statistics'), (495, '62', 'University of Illinois Chicago', 'Supply Chain and Operations Management'), (496, '62', 'University of Illinois Chicago', 'Urban Education Leadership'), (497, '62', 'University of Illinois Chicago', 'Urban Higher Education'), (498, '62', 'University of Illinois Chicago', 'Urban Planning and Policy'), (499, '62', 'University of Illinois Chicago', 'Youth Development'), (500, '42', 'University of Maryland, College Park', 'Applied Thanatology (Graduate Certificate)'), (501, '42', 'University of Maryland, College Park', 'Biochemistry (MS, PhD, MD/PhD)'), (502, '42', 'University of Maryland, College Park', 'Biomedical Entrepreneurship (Graduate Certificate)'), (503, '42', 'University of Maryland, College Park', 'Biomedical Sciences (Dental School)'), (504, '42', 'University of Maryland, College Park', 'Cellular and Molecular Biomedical Science (MS)'), (505, '42', 'University of Maryland, College Park', 'Clinical Research (Graduate Certificate)'), (506, '42', 'University of Maryland, College Park', 'Epidemiology and Human Genetics (MS, PhD)'), (507, '42', 'University of Maryland, College Park', 'Forensic'), (508, '42', 'University of Maryland, College Park', 'Gerontology (PhD)'), (509, '42', 'University of Maryland, College Park', 'Global Health (MS)'), (510, '42', 'University of Maryland, College Park', 'Global Health Innovation (Graduate Certificate)'), (511, '42', 'University of Maryland, College Park', 'Global Health Monitoring and Evaluation (Graduate Certificate)'), (512, '42', 'University of Maryland, College Park', 'Global Health Systems & Innovation (Graduate Certificate)'), (513, '42', 'University of Maryland, College Park', 'Health and Social Innovation (MS)'), (514, '42', 'University of Maryland, College Park', 'Health Professions Education (PhD)'), (515, '42', 'University of Maryland, College Park', 'Health Science (MS)'), (516, '42', 'University of Maryland, College Park', 'Health Science with Physician Assistant Concentration (MS)'), (517, '42', 'University of Maryland, College Park', 'Implementation and Dissemination Science (Graduate Certificate)'), (518, '42', 'University of Maryland, College Park', 'Integrative Health and Wellness (Graduate Certificate)'), (519, '42', 'University of Maryland, College Park', 'Intercultural Leadership (Graduate Certificate)'), (520, '42', 'University of Maryland, College Park', 'Marine-Estuarine-Environmental Science (MS, PhD)'), (521, '42', 'University of Maryland, College Park', 'Medical and Research Technology (MS)'), (522, '42', 'University of Maryland, College Park', 'Medical Cannabis Science and Therapeutics (MS)'), (523, '42', 'University of Maryland, College Park', 'Molecular Medicine (PhD, MD/PhD)'), (524, '42', 'University of Maryland, College Park', 'Molecular Microbiology and Immunology(PhD, MD/PhD)'), (525, '42', 'University of Maryland, College Park', 'Nursing (PhD)'), (526, '42', 'University of Maryland, College Park', 'Oral and Experimental Pathology (PhD)'), (527, '42', 'University of Maryland, College Park', 'Palliative Care (MS, Graduate Certificate)'), (528, '42', 'University of Maryland, College Park', 'Pathology (MS)'), (529, '42', 'University of Maryland, College Park', 'Pharmaceutical Health Services Research (PhD, PharmD/PhD)'), (530, '42', 'University of Maryland, College Park', 'Pharmaceutical Sciences (PhD, PharmD/PhD)'), (531, '42', 'University of Maryland, College Park', 'Pharmacometrics (MS)'), (532, '42', 'University of Maryland, College Park', 'Physical Rehabilitation Science (PhD, MD/PhD)'), (533, '42', 'University of Maryland, College Park', 'Regulatory Science (MS)'), (534, '42', 'University of Maryland, College Park', 'Research Administration (Graduate Certificate)'), (535, '42', 'University of Maryland, College Park', 'Research Ethics (Graduate Certificate)'), (536, '42', 'University of Maryland, College Park', 'Science Communication (Graduate Certificate)'), (537, '42', 'University of Maryland, College Park', 'Social Work (PhD)'), (538, '42', 'University of Maryland, College Park', 'Vulnerability and Violence Reduction (Graduate Certificate)'), (539, '6', 'Arizona State University', 'Aerospace and Mechanical Engineering (Computational Fluid and Solid Mechanics)'), (540, '6', 'Arizona State University', 'Aerospace and Mechanical Engineering (Dynamics and Control)'), (541, '6', 'Arizona State University', 'Aerospace Engineering'), (542, '6', 'Arizona State University', 'Aerospace Engineering'), (543, '6', 'Arizona State University', 'Aerospace Engineering/Engineering Management'), (544, '6', 'Arizona State University', 'Mechanical Engineering'), (545, '6', 'Arizona State University', 'Mechanical Engineering'), (546, '6', 'Arizona State University', 'Mechanical Engineering (Energy Conversion)'), (547, '6', 'Arizona State University', 'Mechanical Engineering/Engineering Management'), (548, '6', 'Arizona State University', 'Product Development Engineering'), (549, '6', 'Arizona State University', 'Program'), (550, '6', 'Arizona State University', 'Astronautical Engineering'), (551, '6', 'Arizona State University', 'Astronautical Engineering'), (552, '6', 'Arizona State University', 'Astronautical Engineering'), (553, '6', 'Arizona State University', 'Network Centric Systems'), (554, '6', 'Arizona State University', 'Systems Architecting and Engineering'), (555, '6', 'Arizona State University', 'Systems Architecting and Engineering'), (556, '6', 'Arizona State University', 'Program'), (557, '6', 'Arizona State University', 'Biomedical Data Analytics'), (558, '6', 'Arizona State University', 'Biomedical Engineering'), (559, '6', 'Arizona State University', 'Biomedical Engineering'), (560, '6', 'Arizona State University', 'Biomedical Engineering (Medical Device and Diagnostic Engineering)'), (561, '6', 'Arizona State University', 'Biomedical Engineering (Medical Imaging and Imaging Informatics)'), (562, '6', 'Arizona State University', 'Program'), (563, '6', 'Arizona State University', 'Chemical Engineering'), (564, '6', 'Arizona State University', 'Chemical Engineering'), (565, '6', 'Arizona State University', 'Materials Engineering'), (566, '6', 'Arizona State University', 'Materials Engineering (Machine Learning)'), (567, '6', 'Arizona State University', 'Materials Science'), (568, '6', 'Arizona State University', 'Materials Science'), (569, '6', 'Arizona State University', 'Petroleum Engineering (Unconventional Resources)'), (570, '6', 'Arizona State University', 'Petroleum Engineering'), (571, '6', 'Arizona State University', 'Petroleum Engineering'), (572, '6', 'Arizona State University', 'Petroleum Engineering/Engineering Management'), (573, '6', 'Arizona State University', 'Petroleum Engineering (Geoscience Technologies)'), (574, '6', 'Arizona State University', 'Petroleum Engineering (Digital Oilfield Technologies)'), (575, '6', 'Arizona State University', 'Digital Oilfield Technologies'), (576, '6', 'Arizona State University', 'Program'), (577, '6', 'Arizona State University', 'Civil Engineering'), (578, '6', 'Arizona State University', 'Civil Engineering'), (579, '6', 'Arizona State University', 'Civil Engineering (Advanced Design and Construction Technology)'), (580, '6', 'Arizona State University', 'Civil Engineering (Construction Engineering)'), (581, '6', 'Arizona State University', 'Civil Engineering (Structural Engineering)'), (582, '6', 'Arizona State University', 'Civil Engineering (Transportation Engineering)'), (583, '6', 'Arizona State University', 'Civil Engineering (Transportation Systems)'), (584, '6', 'Arizona State University', 'Civil Engineering (Water and Waste Management)'), (585, '6', 'Arizona State University', 'Engineering (Environmental Engineering)'), (586, '6', 'Arizona State University', 'Construction Management'), (587, '6', 'Arizona State University', 'Environmental Engineering'), (588, '6', 'Arizona State University', 'Transportation Systems'), (589, '6', 'Arizona State University', 'Transportation Systems Management'), (590, '6', 'Arizona State University', 'Program'), (591, '6', 'Arizona State University', 'Computer Science'), (592, '6', 'Arizona State University', 'Computer Science'), (593, '6', 'Arizona State University', 'Computer Science (Artificial Intelligence)'), (594, '6', 'Arizona State University', 'Computer Science (Computer Networks)'), (595, '6', 'Arizona State University', 'Computer Science (Computer Security)'), (596, '6', 'Arizona State University', 'Computer Science (Data Science)'), (597, '6', 'Arizona State University', 'Computer Science (Game Development)'), (598, '6', 'Arizona State University', 'Computer Science (High Performance Computing and Simulations)'), (599, '6', 'Arizona State University', 'Computer Science (Intelligent Robotics)'), (600, '6', 'Arizona State University', 'Computer Science (Multimedia and Creative Technologies)'), (601, '6', 'Arizona State University', 'Computer Science (Scientists and Engineers)'), (602, '6', 'Arizona State University', 'Software Architecture'), (603, '6', 'Arizona State University', 'Program'), (604, '6', 'Arizona State University', 'Applied Data Science'), (605, '6', 'Arizona State University', 'Applied Data Science'), (606, '6', 'Arizona State University', 'Communication Data Science'), (607, '6', 'Arizona State University', 'Cyber Security Engineering'), (608, '6', 'Arizona State University', 'Data Science Foundations'), (609, '6', 'Arizona State University', 'Environmental Data Science'), (610, '6', 'Arizona State University', 'Healthcare Data Science'), (611, '6', 'Arizona State University', 'Spatial Data Science'), (612, '6', 'Arizona State University', 'Program'), (613, '6', 'Arizona State University', 'Computer Engineering'), (614, '6', 'Arizona State University', 'Computer Engineering'), (615, '6', 'Arizona State University', 'Electrical Engineering'), (616, '6', 'Arizona State University', 'Electrical and Computer Engineering (Analog, Mixed-Signal and Radio-frequency Integrated Circuits)'), (617, '6', 'Arizona State University', 'Electrical Engineering (Applied Physics)'), (618, '6', 'Arizona State University', 'Electrical Engineering (Computer Architecture)'), (619, '6', 'Arizona State University', 'Electrical Engineering (Computer Networks)'), (620, '6', 'Arizona State University', 'Electrical Engineering (Electric Power)'), (621, '6', 'Arizona State University', 'Electrical Engineering'), (622, '6', 'Arizona State University', 'Electrical Engineering (VLSI Design)'), (623, '6', 'Arizona State University', 'Electrical Engineering (Wireless Networks)'), (624, '6', 'Arizona State University', 'Electrical Engineering/Engineering Management'), (625, '6', 'Arizona State University', 'Electrical and Computer Engineering (Machine Learning and Data Science)'), (626, '6', 'Arizona State University', 'Financial Engineering'), (627, '6', 'Arizona State University', 'Green Technologies'), (628, '6', 'Arizona State University', 'Quantum Information Science'), (629, '6', 'Arizona State University', 'Program'), (630, '6', 'Arizona State University', 'Analytics'), (631, '6', 'Arizona State University', 'Engineering Management'), (632, '6', 'Arizona State University', 'Health Systems Management Engineering'), (633, '6', 'Arizona State University', 'Health Systems Operations'), (634, '6', 'Arizona State University', 'Industrial and Systems Engineering'), (635, '6', 'Arizona State University', 'Industrial and Systems Engineering'), (636, '6', 'Arizona State University', 'Operations Research Engineering'), (637, '6', 'Arizona State University', 'Product Development Engineering'))
In [56]:
Recruiter_df=pd.read_excel("Recruiters_Data.xlsx")
Recruiter_df
Out[56]:
Recruiter_ID Recruiter_Name Recruiter_Ranking Number_of_LCA Average_Salary Max_Hiring_from_University University_ID
0 1 Cognizant Technology Solutions 1 12681 $92,766 Texas A&M University 32
1 2 Amazon 2 11486 $126,163 Ohio State University 65
2 3 Tata Consultancy Services 3 9822 $93,484 Indiana University Bloomington 17
3 4 Google 4 9421 $156,793 Stanford University 26
4 5 Microsoft 5 7329 $146,569 University of Washington 65
5 6 Facebook 6 6090 $175,750 University of California, Berkeley 58
6 7 Ernst & Young 7 5797 $118,653 University of Southern California 48
7 8 Infosys 8 5649 $92,689 University of Texas Dallas 51
8 9 Apple 9 4239 $168,416 University of Washington 65
9 10 Hcl America 10 4113 $99,754 San Jose State University 25
10 11 Accenture 11 3830 $140,893 New York University 20
11 12 IBM 12 3800 $126,521 Carnegie Mellon University 59
12 13 Deloitte Consulting 13 3756 $119,341 University of Illinois Urbana Champaign 41
13 14 Intel 14 3367 $127,627 Stanford University 26
14 15 Capgemini 15 3325 $102,410 Northeastern University 1
15 16 Wal-Mart Associates 16 3218 $133,510 University of California Los Angeles 35
16 17 Jpmorgan Chase 17 2987 $133,103 University of Phoenix 60
17 18 Wipro 18 2858 $80,871 University of Texas, Austin 50
18 19 Tekorg 19 2755 $80,529 University of Illinois Chicago 62
19 20 Compunnel Software Group 20 2231 $108,016 Georgia Institute of Technology 14
20 21 Qualcomm Technologies 21 2167 $152,754 Stanford University 26
21 22 Salesforce.Com 22 2164 $141,276 University of Illinois, Urbana Champaign 41
22 23 Tech Mahindra 23 2107 $94,298 Rochester Institute of Technology 23
23 24 Cisco Systems 24 2013 $145,750 University of southern California 48
24 25 Goldman Sachs & 25 1579 $134,689 Harvard University 15
In [44]:
cursor.execute("describe recruiter")
for x in cursor:
    print(x)
('Recruiter_ID', 'varchar(255)', 'NO', 'PRI', None, '')
('Recruiter_Name', 'varchar(255)', 'YES', '', None, '')
('Recruiter_Ranking', 'int', 'YES', '', None, '')
('Number_of_LCA', 'int', 'YES', '', None, '')
('Average_Salary', 'varchar(255)', 'YES', '', None, '')
('Max_Hiring_from_University', 'varchar(255)', 'YES', '', None, '')
('University_ID', 'varchar(255)', 'YES', 'MUL', None, '')
In [32]:
cursor.execute("Alter table recruiter modify column Average_Salary Varchar(255)")
Out[32]:
0
In [34]:
cursor.execute("drop table Recruiter")
Out[34]:
0
In [35]:
cursor.execute("CREATE TABLE Recruiter(Recruiter_ID Varchar(255),Recruiter_Name Varchar(255),Recruiter_Ranking INT,Number_of_LCA INT,Average_Salary VARCHAR(255),Max_Hiring_from_University Varchar(255),University_ID Varchar(255),PRIMARY KEY (Recruiter_ID),FOREIGN KEY (University_ID) REFERENCES university(University_ID))")
Out[35]:
0
In [57]:
cursor.execute("delete from Recruiter")
Out[57]:
8
In [46]:
cursor.execute("Describe Recruiter")
for x in cursor:
    print(x)
('Recruiter_ID', 'varchar(255)', 'NO', 'PRI', None, '')
('Recruiter_Name', 'varchar(255)', 'YES', '', None, '')
('Recruiter_Ranking', 'int', 'YES', '', None, '')
('Number_of_LCA', 'int', 'YES', '', None, '')
('Average_Salary', 'varchar(255)', 'YES', '', None, '')
('Max_Hiring_from_University', 'varchar(255)', 'YES', '', None, '')
('University_ID', 'varchar(255)', 'YES', 'MUL', None, '')
In [60]:
cursor.execute("select * from recruiter")
for x in cursor:
    print(x)
('1', 'Cognizant Technology Solutions', 1, 12681, '$92,766', 'Texas A&M University', '32')
('10', 'Hcl America', 10, 4113, '$99,754', 'San Jose State University', '25')
('11', 'Accenture', 11, 3830, '$140,893', 'New York University', '20')
('12', 'IBM', 12, 3800, '$126,521', 'Carnegie Mellon University', '59')
('13', 'Deloitte Consulting', 13, 3756, '$119,341', 'University of Illinois Urbana Champaign', '41')
('14', 'Intel', 14, 3367, '$127,627', 'Stanford University', '26')
('15', 'Capgemini', 15, 3325, '$102,410', 'Northeastern University', '1')
('16', 'Wal-Mart Associates', 16, 3218, '$133,510', 'University of California Los Angeles', '35')
('17', 'Jpmorgan Chase', 17, 2987, '$133,103', 'University of Phoenix\xa0', '60')
('18', 'Wipro', 18, 2858, '$80,871', 'University of Texas, Austin', '50')
('19', 'Tekorg', 19, 2755, '$80,529', 'University of Illinois Chicago', '62')
('2', 'Amazon', 2, 11486, '$126,163', 'Ohio State University', '65')
('20', 'Compunnel Software Group', 20, 2231, '$108,016', 'Georgia Institute of\xa0Technology', '14')
('21', 'Qualcomm Technologies', 21, 2167, '$152,754', 'Stanford University', '26')
('22', 'Salesforce.Com', 22, 2164, '$141,276', 'University of Illinois, Urbana Champaign', '41')
('23', 'Tech Mahindra', 23, 2107, '$94,298', 'Rochester Institute of Technology', '23')
('24', 'Cisco Systems', 24, 2013, '$145,750', 'University of southern California', '48')
('25', 'Goldman Sachs &', 25, 1579, '$134,689', 'Harvard University', '15')
('3', 'Tata Consultancy Services', 3, 9822, '$93,484', 'Indiana University Bloomington', '17')
('4', 'Google', 4, 9421, '$156,793', 'Stanford University', '26')
('5', 'Microsoft', 5, 7329, '$146,569', 'University of Washington', '65')
('6', 'Facebook', 6, 6090, '$175,750', 'University of California, Berkeley', '58')
('7', 'Ernst & Young', 7, 5797, '$118,653', 'University of Southern California', '48')
('8', 'Infosys', 8, 5649, '$92,689', 'University of Texas Dallas', '51')
('9', 'Apple', 9, 4239, '$168,416', 'University of Washington\xa0', '65')
In [59]:
for i,row in Recruiter_df.iterrows():
    cursor.execute("INSERT INTO recruiter values (%s,%s,%s,%s,%s,%s,%s)", (int(row['Recruiter_ID']),row['Recruiter_Name'],row['Recruiter_Ranking'],row['Number_of_LCA'],row['Average_Salary'],row['Max_Hiring_from_University'],row['University_ID']))
uni_recomm.commit()

cursor.execute("SELECT * from recruiter")
records=cursor.fetchall()

print(records)
uni_recomm.commit()
(('1', 'Cognizant Technology Solutions', 1, 12681, '$92,766', 'Texas A&M University', '32'), ('10', 'Hcl America', 10, 4113, '$99,754', 'San Jose State University', '25'), ('11', 'Accenture', 11, 3830, '$140,893', 'New York University', '20'), ('12', 'IBM', 12, 3800, '$126,521', 'Carnegie Mellon University', '59'), ('13', 'Deloitte Consulting', 13, 3756, '$119,341', 'University of Illinois Urbana Champaign', '41'), ('14', 'Intel', 14, 3367, '$127,627', 'Stanford University', '26'), ('15', 'Capgemini', 15, 3325, '$102,410', 'Northeastern University', '1'), ('16', 'Wal-Mart Associates', 16, 3218, '$133,510', 'University of California Los Angeles', '35'), ('17', 'Jpmorgan Chase', 17, 2987, '$133,103', 'University of Phoenix\xa0', '60'), ('18', 'Wipro', 18, 2858, '$80,871', 'University of Texas, Austin', '50'), ('19', 'Tekorg', 19, 2755, '$80,529', 'University of Illinois Chicago', '62'), ('2', 'Amazon', 2, 11486, '$126,163', 'Ohio State University', '65'), ('20', 'Compunnel Software Group', 20, 2231, '$108,016', 'Georgia Institute of\xa0Technology', '14'), ('21', 'Qualcomm Technologies', 21, 2167, '$152,754', 'Stanford University', '26'), ('22', 'Salesforce.Com', 22, 2164, '$141,276', 'University of Illinois, Urbana Champaign', '41'), ('23', 'Tech Mahindra', 23, 2107, '$94,298', 'Rochester Institute of Technology', '23'), ('24', 'Cisco Systems', 24, 2013, '$145,750', 'University of southern California', '48'), ('25', 'Goldman Sachs &', 25, 1579, '$134,689', 'Harvard University', '15'), ('3', 'Tata Consultancy Services', 3, 9822, '$93,484', 'Indiana University Bloomington', '17'), ('4', 'Google', 4, 9421, '$156,793', 'Stanford University', '26'), ('5', 'Microsoft', 5, 7329, '$146,569', 'University of Washington', '65'), ('6', 'Facebook', 6, 6090, '$175,750', 'University of California, Berkeley', '58'), ('7', 'Ernst & Young', 7, 5797, '$118,653', 'University of Southern California', '48'), ('8', 'Infosys', 8, 5649, '$92,689', 'University of Texas Dallas', '51'), ('9', 'Apple', 9, 4239, '$168,416', 'University of Washington\xa0', '65'))
In [64]:
Student_df=pd.read_excel("student_data.xlsx")
Student_df
Out[64]:
Student_ID University_Name University_ID Status Program Target_Major Term Year GRE_Q GRE_V GRE_Total GRE_AWA TOEFL Undergrad_University Undergrad_Major cgpa cgpaScale Work_Experience
0 1 Northeastern University 1 Admit MS Computer Science Fall 2012 157 142 299 3.5 97 University of Mumbai Computer Engineering 64.37 100 0
1 2 Northeastern University 1 Admit MS Industrial Engineering Fall 2011 None None 0 None None None 0 0.00 0 0
2 3 Northeastern University 1 Admit MS Industrial Engineering Fall 2011 770 460 1230 3 105 fr.c.r.c.e.(bandra) production engineering 75.36 100 0
3 4 Northeastern University 1 Admit MS Computer Science Fall 2013 159 152 311 3 94 None CS 3.30 10 0
4 5 Northeastern University 1 Admit MS Management Information System Fall 2014 158 144 302 3 100 Apeejay College of Engineering ECE 66.40 100 0
... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ...
10819 10820 New York University 20 Reject MS Data Science Fall 2019 167 154 321 4 103 Acropolis Institute of Technology & Research Information Technology 7.40 10 0
10820 10821 New York University 20 Reject MS Data Science Fall 2019 158 148 306 4 105 KIIT University Computer Science 8.65 10 0
10821 10822 NYU Tandon School of Engineering 21 Admit MS Computer Science Fall 2017 168 157 325 3 115 Gitam University Computer Science 8.50 10 0
10822 10823 Pennsylvania State University 22 Admit MSc Industrial Engineering Fall 2017 170 155 325 3.5 111 Sardar Patel College Of Engineering, (SPCE), A... Mechanical Engineering 8.73 10 15
10823 10824 Rochester Institute of Technology 23 Admit MS Mechanical Engineering Fall 2016 170 156 326 3 104 Pdpu Mechanical Engineering 8.30 10 0

10824 rows × 18 columns

In [67]:
cursor.execute("select * from student")
Out[67]:
10824
In [66]:
for i,row in Student_df.iterrows():
    cursor.execute("INSERT INTO student values (%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s)", (int(row['Student_ID']),row['University_Name'],row['University_ID'],row['Status'],row['Program'],row['Target_Major'],row['Term'],row['Year'],row['GRE_Q'],row['GRE_V'],row['GRE_Total'],row['GRE_AWA'],row['TOEFL'],row['Undergrad_University'],row['Undergrad_Major'],row['cgpa'],row['cgpaScale'],row['Work_Experience']))
uni_recomm.commit()

cursor.execute("SELECT * from student")
records=cursor.fetchall()

print(records)
uni_recomm.commit()
((1, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '157', '142', '299', '3.5', '97', 'University of Mumbai', 'Computer Engineering', '64.37', '100', '0'), (2, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (3, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '770', '460', '1230', '3', '105', 'fr.c.r.c.e.(bandra)', 'production engineering', '75.36', '100', '0'), (4, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '152', '311', '3', '94', 'None', 'CS', '3.3', '10', '0'), (5, 'Northeastern University', '1', 'Admit', 'MS', 'Management Information System', 'Fall ', '2014', '158', '144', '302', '3', '100', 'Apeejay College of Engineering', 'ECE', '66.4', '100', '0'), (6, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '155', '317', '4', 'None', 'RNSIT', 'CS', '72', '100', '0'), (7, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '154', '314', '3.5', '108', 'Sri Bhagawan Mahaveer Jain College of Engineering', 'Information Science', '73', '100', '0'), (8, 'Northeastern University', '1', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '760', '650', '1410', '3.5', '104', 'Sardar Patel College of Engineering', 'Computer Engineering', '75.9', '100', '0'), (9, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2015', '164', '152', '316', 'None', '97', 'None', '0', '8.52', '10', '56'), (10, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '760', '680', '1440', '4', '111', 'Fr CRIT Mumbai University', 'Mechanical Engineering', '54.6', '100', '0'), (11, 'Northeastern University', '1', 'Admit', 'MS', 'Information Security', 'Fall ', '2009', '740', '540', '1280', '5', '113', 'VTU', 'CS', '67', '100', '0'), (12, 'Northeastern University', '1', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '157', '146', '303', '3', '94', 'IET DAVV', 'Computer Engineering', '78.28', '100', '66'), (13, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '590', '1370', '3.5', '114', 'Manipal Institue of Technology', 'ECE', '8.3', '10', '0'), (14, 'Northeastern University', '1', 'Admit', 'MS', 'computer science / MIS', 'Fall ', '2015', '163', '150', '313', '3.5', 'None', 'K J Somaiya College of Engiineering', 'Information Technology', '66', '100', '48'), (15, 'Northeastern University', '1', 'Admit', 'MS', 'Information Security', 'Fall ', '2013', '158', '148', '306', '3', '94', 'Rajasthan Technical University', 'Computer Engineering', '67', '100', '0'), (16, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '610', '1410', '3.5', '110', 'UPTU', 'CSE', '74', '100', '0'), (17, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '164', '155', '319', '3', '111', 'Amity University', 'Computer Science', '7.22', '10', '36'), (18, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '630', '1390', '3.5', '103', 'Rajiv Gandhi Technical University', 'Electronics and Communication', '73', '100', '0'), (19, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '157', '321', '3', '108', 'Guru Gobind Singh Indraprashta University', 'IT', '70', '100', '0'), (20, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '163', '324', '3.5', '109', 'Jaypee Institute of Information Technology', 'Computer Science', '7.3', '10', '0'), (21, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '700', '640', '1340', '3.5', '104', 'MU', 'electronics', '59', '100', '0'), (22, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '164', '159', '323', '3.5', '116', 'VIT University', 'Computer Sc & Engg', '8.8', '10', '0'), (23, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '143', '305', '2.5', '96', 'NIT Raipur', 'Electrical', '7.2', '10', '0'), (24, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics and Communication', 'Spring ', '2012', '790', '580', '1370', '4.5', '112', 'Gayatri Vidya Parishad College of Engineering', 'Electronics and Communications Engineering', '66', '100', '0'), (25, 'Northeastern University', '1', 'Admit', 'MS', 'Business Analytics', 'Fall ', '2015', '168', '159', '327', '3', '105', 'PESIT', 'Electronics and Communication', '6.72', '10', '30'), (26, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '570', '1370', '3.5', '100', 'MU', 'Computer Engineering', '0', '0', '0'), (27, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '740', '370', '1110', '3.5', '107', 'VTU', 'CSE', '66', '100', '0'), (28, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '800', '480', '1280', '4', '104', 'MU', 'Computer Dept.', '68', '100', '0'), (29, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '760', '570', '1330', '3', '101', 'MU', 'IT', '57', '100', '0'), (30, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '149', '310', '3.5', '89', 'Jaypee Institute of Information Technology', 'Electroincs and Telecommunication', '8.8', '10', '0'), (31, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '165', '153', '318', '3.5', '102', 'Jai Narain Vyas University Jodhpur', 'Electrical Engineering', '67', '100', '0'), (32, 'Northeastern University', '1', 'Admit', 'MS', 'CS', 'Fall ', '2012', '800', '700', '1500', '4', 'None', 'University of Mumbai', 'Computer', '64', '100', '0'), (33, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '156', '151', '307', '3.5', '106', 'Anna University', 'Information Technology', '71.2', '100', '58'), (34, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '159', '150', '309', '3.5', '106', 'JNTU', 'ece', '71', '100', '0'), (35, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2014', '161', '149', '310', '4', '101', 'BITS Pilani', 'Mechanical Eng', '3.4', '4', '36'), (36, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '730', '380', '1110', '4', '95', 'MIT Pune', 'Mechanical Engineering', '72.92', '100', '0'), (37, 'Northeastern University', '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2012', '740', '660', '1400', '3', '90', 'RGTU', 'ECE', '3.6', '4', '0'), (38, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '152', '315', '3', '100', 'SVCE', 'CSE', '7.32', '10', '0'), (39, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '790', '430', '1220', '3.5', 'None', 'COEP', 'Information Technology', '7.94', '10', '0'), (40, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2011', 'None', 'None', '0', 'None', 'None', 'MU', 'electronics and telecom engineering', '0', '0', '0'), (41, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '530', '1320', '3.5', '102', 'Sinhgad College of Engineering', 'Computer', '53', '100', '0'), (42, 'Northeastern University', '1', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (43, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '153', '312', '4', '109', 'Amrita School of Engineering', 'Computer Science', '7.69', '10', '0'), (44, 'Northeastern University', '1', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '800', '590', '1390', '3.5', '107', 'UPTU', 'Computer Science', '65', '100', '0'), (45, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '165', '161', '326', '5', '112', 'Rajiv Gandhi Prodyogiki Vishwavidyalaya', '0', '7.4', '10', '0'), (46, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '600', '1400', '4', '103', 'University of Mumbai', 'Information Technology', '68', '100', '0'), (47, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2008', '800', '520', '1320', '5', '287', 'D J Sanghvi', 'Computer Engineering', '62', '100', '0'), (48, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '157', '153', '310', '4', '109', 'VTU', 'Computer Science', '68.3', '100', '0'), (49, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2015', '159', '157', '316', '3.5', '104', 'SIES Graduate School of Technology', 'EXTC', '65', '100', '0'), (50, 'Northeastern University', '1', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '800', '640', '1440', '4.5', '117', 'MU', 'Electronics', '67', '100', '30'), (51, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '760', '500', '1260', '4', '90', 'VTU', 'ISE', '78', '100', '0'), (52, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2013', '155', '153', '308', '4', '109', 'University of Mumbai', 'Production Engineering', '70.19', '100', '0'), (53, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '750', '590', '1340', '3', '107', 'JNTU', 'Electronics and Communication', '74', '100', '18'), (54, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '770', '410', '1180', '3.5', '111', 'Pune University', 'Computer Engineering', '64', '100', '0'), (55, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '152', '310', '3.5', '107', 'MU', 'COMP ENGG', '60', '100', '0'), (56, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '730', '570', '1300', '3.5', '97', 'Thadomal Shahani Engineering College', 'Computer Engg.', '68', '100', '0'), (57, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '680', '640', '1320', '4.5', '114', 'University of Pune', 'Computer Engineering', '65.44', '100', '0'), (58, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '157', '151', '308', '4', '109', 'SFIT', 'IT', '54.56', '100', '0'), (59, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '156', '150', '306', '4', 'None', 'Anna University', 'Computer Science', '73', '100', '0'), (60, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '780', '420', '1200', '3.5', '95', 'Nagpur University', 'Electronics', '63', '100', '0'), (61, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '680', '570', '1250', '4.5', '116', 'Anna University', 'CS', '77', '100', '0'), (62, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '163', '158', '321', '4', '109', 'MU', 'Computer Engineering', '67', '100', '0'), (63, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '750', '590', '1340', '3', '100', 'Gujarat Technological University', 'EC', '7.7', '10', '0'), (64, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2015', '160', '146', '306', '3.5', '100', 'VTU', 'E&C;', '8.02', '10', '0'), (65, 'Northeastern University', '1', 'Admit', 'MS', 'Biomedical Engineering', 'Fall', 'None', '157', '148', '305', '3.5', '93', 'Vidyalankar Institute of Technology', 'biomedical', '71.5', '100', '0'), (66, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '146', '308', '3', '102', 'University of Pune', 'Information Tech.', '72.23', '100', '36'), (67, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '152', '320', '4', '108', 'MU', 'Computer Engineering', '69.47', '100', '12'), (68, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall', 'None', '158', '152', '310', '3.5', '94', 'Sreenidhi Institute of Science & Technology', 'avionics', '3.12', '4', '0'), (69, 'Northeastern University', '1', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2011', '720', '560', '1280', '3.5', '100', 'Jaypee Institute of Information Technology', 'Dept of Bioinformatics and Biotechnology', '74', '100', '0'), (70, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '149', '308', '3.5', '97', 'JUET Guna', 'CSE', '7.2', '10', '0'), (71, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '160', '150', '310', '3', '108', 'University of Pune', 'Information Tech', '65', '100', '0'), (72, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '720', '500', '1220', '3.5', '117', 'VIT Pune', 'Electronics', '7', '10', '0'), (73, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '550', '1350', '5', '106', 'Jadavpur University', 'Power engg', '7.8', '10', '0'), (74, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '156', '318', '3.5', '110', 'UPTU', 'Electronics', '64.74', '100', '42'), (75, 'Northeastern University', '1', 'Admit', 'MS', 'MIS-management related courses', 'Fall ', '2012', '790', '610', '1400', '3', '99', 'PICT', 'IT', '3', '4', '0'), (76, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '162', '151', '313', '3', '104', 'PICT', 'CS', '3.5', '4', '0'), (77, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '148', '307', '3', '100', 'VTU', 'Computer Science', '70.1', '100', '70'), (78, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '550', '1350', '3.5', '91', 'VTU', 'Information Science', '73', '100', '0'), (79, 'Northeastern University', '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '720', '520', '1240', '2', '21', 'MU', 'Computer Engineering', '0', '100', '0'), (80, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '170', '152', '322', '3.5', '98', 'Guru Gobind Singh Indraprashta University', 'TOOL ENGINEERING', '79.47', '100', '18'), (81, 'Northeastern University', '1', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '156', '148', '304', '3.5', '100', 'MU', 'Electronics', '0', '0', '0'), (82, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '160', '152', '312', '3.5', '108', 'JNTU', 'ECE', '7.6', '10', '0'), (83, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '590', '1390', '4', '109', 'Manipal Institue of Technology', 'Computer Science and Engineering', '7.71', '10', '0'), (84, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '156', '152', '308', '3.5', '112', 'Jai Narain Vyas University Jodhpur', 'Computer Science and Engineering', '73.4', '100', '0'), (85, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '162', '155', '317', '3.5', '113', 'GGSIPU', 'Mechanical', '70', '100', '0'), (86, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '740', '490', '1230', '3', '101', 'MU', 'I.T', '64', '100', '0'), (87, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '154', '317', '3', '103', 'ITM Gurgaon', 'CSE', '64.3', '100', '0'), (88, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '550', '1330', '4.5', '107', 'K J Somaiya College of Engiineering', 'Information Technology', '71.4', '100', '0'), (89, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '153', '314', '3', '109', 'Shivaji University', 'Electronics Engineering', '70.3', '100', '0'), (90, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Spring ', '2011', '700', '530', '1230', '4', '110', 'Sinhgad College of Engineering', 'Chemical Engineering', '60', '100', '0'), (91, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '650', '1450', '4', '110', 'Vidyalankar Institute of Technology', 'Information Technology', '71.46', '100', '0'), (92, 'Northeastern University', '1', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '155', '149', '304', '3', '101', 'BBDIT Ghaziabad', 'Mechanical Engineering', '72', '100', '0'), (93, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '151', '310', '3', '93', 'VTU', 'IS', '80', '100', '0'), (94, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2012', '720', '320', '1040', '3', '96', 'JNTU', 'ECE', '62', '100', '0'), (95, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '154', '317', '3', '107', 'University of Mumbai', 'Computer Engineering', '69.68', '100', '0'), (96, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '440', '1230', '4', '96', 'MU', 'Computer Engg', '65.2', '100', '0'), (97, 'Northeastern University', '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2012', '167', '156', '323', '3.5', '104', 'Saboo Siddik Mumbai university', 'Computer Science', '57', '100', '0'), (98, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '154', '167', '321', '3', '108', 'Veermata Jijabai Technological Institute', 'Information Technology', '8.6', '10', '0'), (99, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '370', '1170', '3', '102', 'PICT', 'IT', '65', '100', '0'), (100, 'Northeastern University', '1', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall', 'None', '154', '146', '300', 'None', '94', 'None', '0', '0', '0', '0'), (101, 'Northeastern University', '1', 'Admit', 'MS', 'Operations Research', 'Fall ', '2014', '160', '145', '305', '2.5', '93', 'SJCE', 'Mech', '7.3', '10', '0'), (102, 'Northeastern University', '1', 'Admit', 'MS', 'software engineering', 'Fall ', '2013', '160', '151', '311', '4', '109', 'R.D. National College', 'IT', '70', '100', '0'), (103, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '149', '313', '3', '111', 'Sardar Patel College of Engineering', 'Computer Engineering', '64.28', '100', '0'), (104, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '720', '500', '1220', '3', '103', 'MU', 'EXTC', '0', '0', '0'), (105, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '162', '158', '320', '3', '111', 'NIT Warangal', 'Electronics and Communication Engineering', '8.19', '10', '30'), (106, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '154', '148', '302', '3.5', '103', 'Anna University', 'IT', '72', '100', '0'), (107, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '163', '150', '313', '4', 'None', 'JSS Noida', 'IT', '77.53', '100', '0'), (108, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '162', '158', '320', '4', '112', 'SSN College of Engineering', 'EEE', '81', '100', '0'), (109, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '780', '620', '1400', '4', '110', 'NIT Durgapur', 'Computer Science and Engineering', '8.29', '10', '0'), (110, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Spring ', '2012', '800', '490', '1290', '3', 'None', 'Lovely institute of Technology', 'ECE', '75.2', '100', '0'), (111, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '170', '154', '324', '4', '110', 'GGSIPU', 'Computer Science', '78', '100', '0'), (112, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Fall', 'None', '155', '145', '300', 'None', '100', 'MU', 'EXTC', '71', '100', '0'), (113, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2013', '161', '144', '305', '3', '106', 'K. K. Engineering College', 'Mechanical Engineering', '66.6', '100', '0'), (114, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '150', '311', '4', '105', 'VTU', 'Computer Sciece', '71.3', '100', '42'), (115, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '161', '151', '312', '4', '105', 'CSVTU', 'Electronics and Telecommunications', '71.1', '100', '18'), (116, 'Northeastern University', '1', 'Admit', 'MS', 'CS', 'Spring ', '2015', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (117, 'Northeastern University', '1', 'Admit', 'MS', 'Sustainable enrgy and environment', 'Fall ', '2012', '161', '152', '313', '3.5', '97', 'NIT Nagpur', 'Mechanical', '6.9', '10', '0'), (118, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2012', '620', '560', '1180', '3.5', '99', 'MU', 'Electronics and Telecomm', '65', '100', '0'), (119, 'Northeastern University', '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2015', '159', '148', '307', '3.5', '99', 'UPTU', 'EI', '66', '100', '0'), (120, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '150', '311', '3', '101', 'Pune University', 'Computer Engineering', '65', '100', '0'), (121, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Spring ', '2013', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (122, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '151', '315', '4.5', '109', 'BITS Dubai', 'Electronics and Communication', '8.75', '10', '0'), (123, 'Northeastern University', '1', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '147', '145', '292', '2.5', '90', 'Bharati Vidyapeeth', 'Mechanical', '67.65', '100', '0'), (124, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '160', '144', '304', '4', '96', 'Siddaganga Institue of Technology', 'Computer Science', '9.38', '10', '29'), (125, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '530', '1280', '3.5', '109', 'RGTU', 'CS', '80', '100', '0'), (126, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '740', '550', '1290', '3.5', '104', 'MU', 'computer', '67.23', '100', '0'), (127, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2013', '156', '150', '306', '2.5', '98', 'Manipal Institue of Technology', 'Electrical and Electronics', '8.76', '10', '0'), (128, 'Northeastern University', '1', 'Admit', 'MS', 'Biotechnology', 'Fall ', '2011', 'None', 'None', '0', 'None', 'None', 'Padmashree Dr D Y Patil University', 'Biotechnology & Bioinformatics', '66', '100', '0'), (129, 'Northeastern University', '1', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (130, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall', 'None', '800', '440', '1240', '3', '97', 'MU', 'mech', '71', '100', '0'), (131, 'Northeastern University', '1', 'Admit', 'MS', 'Biotechnology/bio-engineering', 'Fall ', '2011', '800', '470', '1270', '4', '96', 'VTU', 'B.E Biotechnology', '75', '100', '0'), (132, 'Northeastern University', '1', 'Admit', 'MS', 'Information Assurance', 'Spring ', '2014', '158', '146', '304', '3', '98', 'Jaypee Institute of Information Technology', 'Computer Science', '63', '100', '0'), (133, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '168', '155', '323', '4', '108', 'VJTI', 'Electronics', '8', '10', '0'), (134, 'Northeastern University', '1', 'Admit', 'MS', 'computer science / MIS', 'Fall ', '2015', '160', '141', '301', 'None', '86', 'K J Somaiya College of Engiineering', 'Computer Science', '65.6', '100', '37'), (135, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '620', '1420', 'None', '108', 'KIIT', 'Electrical', '7.31', '10', '0'), (136, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '163', '157', '320', '4.5', '109', 'MU', 'Computer', '73', '100', '0'), (137, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '740', '310', '1050', '2.2', '92', 'MU', 'IT', '0', '0', '0'), (138, 'Northeastern University', '1', 'Admit', 'MS', 'Bioinformatics', 'Spring ', '2015', '156', '139', '295', '3', '93', 'VTU', 'Information Science', '74', '100', '10'), (139, 'Northeastern University', '1', 'Admit', 'MS', 'computer science / MIS', 'Fall ', '2015', '164', '146', '310', '4', '110', 'Rajasthan Technical University', 'Computer Science', '79', '100', '29'), (140, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '530', '1300', '3', '111', 'VIT', 'Information Technology', '64.24', '100', '0'), (141, 'Northeastern University', '1', 'Admit', 'MS', 'MIS-management related courses', 'Fall ', '2011', 'None', 'None', '0', '3', '95', 'VESIT', 'Electronics and Telecom', '0', '0', '0'), (142, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', 'None', 'None', '0', 'None', 'None', 'Cummins College of Engineering Pune', 'IT', '62.3', '100', '0'), (143, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '490', '1270', '3.5', '99', 'RAIT', 'Electronics', '65', '100', '0'), (144, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall', 'None', '161', '148', '309', '3.5', '105', 'Jaypee Institute of Information Technology', 'Information technology', '7.7', '10', '5'), (145, 'Northeastern University', '1', 'Admit', 'MS', 'Pharmacology', 'Fall ', '2012', '770', '580', '1350', '3', '100', 'Osmania University', 'Pharmacy', '74.2', '100', '0'), (146, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '780', '340', '1120', '3', '93', 'ITM Gurgaon', 'CSE', '72', '100', '0'), (147, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2016', '161', '146', '307', '3', '91', 'University of Pune', 'Computer', '54.84', '100', '0'), (148, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '155', '320', '3.5', '103', 'Panjab University', 'ECE', '68.5', '100', '0'), (149, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '166', '159', '325', '3', '108', 'Guru Gobind Singh Indraprashta University', 'Computer Science', '65.95', '100', '0'), (150, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '162', '154', '316', '3', '113', 'Heritage University of Technology', 'Computer Science', '7.63', '10', '0'), (151, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '158', '150', '308', '3.5', '110', 'Jaypee Institute of Information Technology', 'Biotechnology', '6.8', '10', '0'), (152, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '154', '154', '308', '3', '108', 'Prathyusha Institute of Technology and Management', 'ECE', '72', '100', '45'), (153, 'Northeastern University', '1', 'Admit', 'MS', 'Information Assurance', 'Fall ', '2014', '163', '152', '315', '3.5', '101', 'SRKNEC Nagpur', 'Information Technology', '61', '100', '17'), (154, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '660', '600', '1260', '4', '102', 'Nagpur University', 'Information Technology', '67.52', '100', '0'), (155, 'Northeastern University', '1', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '159', '149', '308', '3', '101', 'AITR RGPV', 'CS', '76.5', '100', '39'), (156, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '153', '315', '3.5', '105', 'Vivekananda College of Engineering an Technology (VTU)', 'Computer Science and Engineering', '68', '100', '0'), (157, 'Northeastern University', '1', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2014', '167', '148', '315', '4', '102', 'VTU', 'Electronics and Communication', '71', '100', '45'), (158, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '147', '307', '3', '88', 'VJTI', 'CS', '5.7', '10', '0'), (159, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '151', '311', '3.5', '10', 'None', '0', '0', '0', '0'), (160, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '740', '500', '1240', '3.5', '112', 'Pune University', 'Computer', '63', '100', '0'), (161, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '161', '141', '302', '2.5', 'None', 'Anna University', 'Electronics and Communication engineering', '8.3', '10', '0'), (162, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '150', '150', '300', '3.5', '110', 'VTU', 'Computer Science', '3.5', '4', '0'), (163, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '640', '1440', '4.5', '114', 'MU', 'IT', '76.5', '100', '0'), (164, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '161', '145', '306', '3.5', '102', 'West Bengal University Of Technology', 'Information Technology', '7.82', '10', '0'), (165, 'Northeastern University', '1', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '161', '148', '309', 'None', '105', 'IES IPS Academy', 'Electronics and Communications', '73.5', '100', '53'), (166, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '800', '590', '1390', '4.5', '270', 'SPCE', 'IT', '63', '100', '0'), (167, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '161', '151', '312', '3', '107', 'MU', 'Computer Science', '64', '100', '0'), (168, 'Northeastern University', '1', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '161', '145', '306', '3', '98', 'PSG College of Technology', 'mechanical', '7.78', '10', '3'), (169, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '350', '1120', '3', 'None', 'CSVTU', 'Information Technology', '8.65', '10', '0'), (170, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '790', '580', '1370', '3', '105', 'MU', 'Computer Engineering', '68.6', '100', '0'), (171, 'Northeastern University', '1', 'Admit', 'MS', 'CS', 'Fall ', '2013', '160', '152', '312', 'None', '98', 'MU', 'information technology', '65', '100', '0'), (172, 'Northeastern University', '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2013', '166', '156', '322', '4.5', '104', 'Medicaps Institute of Science & Technology Indore', 'Mechanical Engineering', '64', '100', '0'), (173, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '770', '530', '1300', '3.5', '99', 'PESIT', 'Telecommunication', '74.57', '100', '0'), (174, 'Northeastern University', '1', 'Admit', 'MS', 'Chemical/Environmental Engg.', 'Fall ', '2012', '800', '560', '1360', '3.5', '105', 'Osmania University', 'chemical engineering', '8.89', '10', '0'), (175, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '690', '490', '1180', '4', 'None', 'SSN College of Engineering', 'Information Technology', '80', '100', '0'), (176, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '166', '156', '322', '4', '114', 'RMK Engineering College', 'BE CSE', '7.85', '10', '15'), (177, 'Northeastern University', '1', 'Admit', 'MS', 'pharmacy', 'Fall ', '2011', '600', '300', '900', '1.5', '101', 'None', '0', '0', '0', '0'), (178, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '800', '510', '1310', '3.5', '108', 'Bhilai Institute of Technology', 'Electrical Engineering', '66.2', '100', '0'), (179, 'Northeastern University', '1', 'Admit', 'MS', 'Technology Leadership', 'Fall ', '2014', 'None', 'None', '0', 'None', 'None', 'BVUCOE', 'Electronics Engineering', '62', '100', '8'), (180, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Spring ', '2013', '730', '480', '1210', '3', '108', 'JNTU', 'Biotechnology', '74', '100', '0'), (181, 'Northeastern University', '1', 'Admit', 'MS', 'Digital Media', 'Fall ', '2011', '790', '520', '1310', '3.5', '109', 'MU', 'computer engg', '0', '0', '0'), (182, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '164', '156', '320', '3.5', '110', 'Graphic Era University', 'Computer Science', '83', '100', '24'), (183, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '158', '149', '307', '3', '96', 'CUSAT', 'ECE', '7.4', '10', '0'), (184, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '480', '1270', '4.5', '113', 'MU', 'Computer Engineering', '67', '100', '0'), (185, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '760', '630', '1390', '3', 'None', 'VJTI', 'IT', '7.7', '10', '0'), (186, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '154', '314', '3', '107', 'SIES Graduate School of Technology', 'CE', '67', '100', '0'), (187, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '152', '315', '3.5', '109', 'Pune University', 'Computer Engineering', '77', '100', '24'), (188, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '168', '153', '321', '5', '106', 'UPTU', 'CS', '70', '100', '0'), (189, 'Northeastern University', '1', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2014', '163', '152', '315', '4', 'None', 'PESIT', 'CSE', '8.08', '10', '0'), (190, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '151', '311', '3.5', '103', 'GNDU', 'CS', '71', '100', '0'), (191, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '159', '148', '307', '3.5', '107', 'MU', 'Information Technology(I.T)', '59.8', '100', '0'), (192, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '165', '154', '319', '4', '115', 'DA-IICT', 'ICT ( Information and Communication Technology)', '7.75', '10', '0'), (193, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '159', '152', '311', '3', 'None', 'SASTRA', 'Computer Science', '8.7', '10', '24'), (194, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '670', '360', '1030', '3.5', '97', 'Ambedkar Institute of technology', 'Computer Science', '74', '100', '0'), (195, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '158', '319', '4', '112', 'MDU', 'Computer Science', '75', '100', '41'), (196, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science/ Electronics and Communication', 'Fall ', '2012', '162', '149', '311', '3', '106', 'None', 'ECE', '69.1', '100', '0'), (197, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '168', '160', '328', '4', '112', 'Delhi College Of Engineeing', 'Computer Engineering', '78', '100', '0'), (198, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2011', '640', '420', '1060', '4', '97', 'Anna University', 'Electronics and Comm', '71', '100', '0'), (199, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '162', '148', '310', '3.5', 'None', 'CEG', 'Electronics and Communication', '7.62', '10', '33'), (200, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '168', '158', '326', 'None', '115', 'Cochin University of Science and Technology', 'Computer Science and Engineering', '75', '100', '0'), (201, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '156', '153', '309', '4', '115', 'Anna University', 'Biotechnology', '7.75', '10', '0'), (202, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '680', '570', '1250', '3.5', '103', 'Anna University', 'Mechanical', '74', '100', '0'), (203, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '163', '150', '313', '3.5', '103', 'UPTU', 'Electronics and Communications', '69', '100', '0'), (204, 'Northeastern University', '1', 'Admit', 'MS', 'Biotechnology', 'Fall ', '2011', '770', '660', '1430', '3', '111', 'UPTU', 'Biotechnology', '65', '100', '0'), (205, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '155', '318', '4', '108', 'VTU', 'CSE', '78', '100', '0'), (206, 'Northeastern University', '1', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (207, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '160', '143', '303', '2.5', '84', 'MU', 'Information Technology', '60', '100', '0'), (208, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '166', '150', '316', 'None', 'None', 'HBTI', 'Computer Science and Engineering', '75.6', '100', '0'), (209, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2008', '720', '440', '1160', '3.5', '94', 'West Bengal University Of Technology', 'Computer Science & Engineering', '8', '10', '0'), (210, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '160', '163', '323', '4', '116', 'Amrita School of Engineering', 'B.Tech CSE', '7.66', '10', '0'), (211, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '710', '490', '1200', '3', '105', 'VTU', 'Computer science', '66.5', '100', '0'), (212, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2009', '800', '580', '1380', '4', '111', 'PICT', 'Information Technology', '3.273', '4', '0'), (213, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '139', '300', '3', '95', 'GGSIPU', 'IT', '75.28', '100', '0'), (214, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '160', '155', '315', '4.5', '113', 'Amrita Vishwa Vidhyapeetham', 'Computer Science and Engineering', '7.71', '10', '43'), (215, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '169', '144', '313', '3', '98', 'Amrita School of Engineering', 'ECE', '8.01', '10', '0'), (216, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '152', '318', '4', '105', 'mgit jntu-hyd', 'information technology', '62', '100', '0'), (217, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '154', '157', '311', '4', '114', 'Anna University', 'Computer Science', '6.7', '10', '0'), (218, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '740', '230', '970', '2.5', '96', 'None', '0', '0', '0', '0'), (219, 'Northeastern University', '1', 'Admit', 'MS', 'MIS-management related courses', 'Fall ', '2011', '700', '540', '1240', '3.5', '91', 'Sri Venkateswara College of Engineering', 'IT', '65', '100', '0'), (220, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '730', '490', '1220', '3', '93', 'Meenakshi Sundararajan Engineering College', 'cse', '80', '100', '0'), (221, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '770', '610', '1380', '4.5', '287', 'RAIT', 'CE', '62', '100', '0'), (222, 'Northeastern University', '1', 'Admit', 'MS', 'Information Security', 'Fall ', '2012', '161', '151', '312', '3.5', '104', 'Pune University', 'Computer Engineering', '57.5', '100', '0'), (223, 'Northeastern University', '1', 'Admit', 'MS', 'pharmacy', 'Fall ', '2011', 'None', 'None', '0', 'None', 'None', 'MU', '0', '0', '0', '0'), (224, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '162', '142', '304', '3', '94', 'Nirma Institute of Technology', 'CSE', '7.66', '10', '0'), (225, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '730', '550', '1280', 'None', '233', 'Vidyalankar Institute of Technology', 'computers', '64', '100', '0'), (226, 'Northeastern University', '1', 'Admit', 'MS', 'MIS/MS CS', 'Fall ', '2013', '800', '450', '1250', '4.5', '101', 'Sri Sairam Engineering College', 'Computer Science', '73', '100', '0'), (227, 'Northeastern University', '1', 'Admit', 'MS', 'MIS/CS', 'Fall ', '2013', '158', '144', '302', '3', '104', 'MJCET', 'CSE', '3.89', '100', '0'), (228, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '790', '510', '1300', 'None', '105', 'Thadomal Shahani Engineering College', 'Information Technology', '3.9', '4', '0'), (229, 'Northeastern University', '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2014', '157', '146', '303', '3', '95', 'University of Mumbai', 'Electronics', '50', '100', '0'), (230, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '710', '680', '1390', '3.5', '106', 'VTU', 'Information Science', '70', '100', '0'), (231, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '159', '151', '310', '3.5', '112', 'Anna University', 'Electronics & Communication', '7.9', '10', '54'), (232, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '155', '323', '3', '105', 'L D College Of Engineering', 'Information Technology', '7.67', '10', '3'), (233, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '161', '153', '314', '3.5', 'None', 'Sinhgad College of Engineering', 'Computer Engineering', '63', '100', '0'), (234, 'Northeastern University', '1', 'Admit', 'MS', 'Information Security', 'Fall ', '2012', '158', '143', '301', '4', '97', 'University of Pune', 'Computer', '59', '100', '0'), (235, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '165', '154', '319', '3', '113', 'BIT', 'telecom', '60', '100', '36'), (236, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '690', '470', '1160', 'None', '92', 'VTU', 'Information Science', '0', '0', '0'), (237, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '157', '145', '302', '3.5', '84', 'Bangalore Institute of Technology', 'Computer Science', '72.45', '5', '0'), (238, 'Northeastern University', '1', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2014', '166', '144', '310', '3', '90', 'Manipal Institue of Technology', 'CIVIL', '6.6', '10', '6'), (239, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Networking', 'Fall ', '2013', '162', '157', '319', '4', 'None', 'BIT Mesra', 'ECE', '69', '100', '0'), (240, 'Northeastern University', '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '710', '350', '1060', '3.5', '83', 'SIT', 'Information Technology', '57', '100', '0'), (241, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '750', '500', '1250', '3', '97', 'D J Sanghvi', 'Electronics', '63', '100', '0'), (242, 'Northeastern University', '1', 'Admit', 'MS', 'CS MIS', 'Fall ', '2015', '164', '154', '318', '4', 'None', 'Guru Nanak Dev University Amritsar', 'Computer Science', '61.4', '100', '36'), (243, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '750', '490', '1240', '3', '104', 'MU', 'Information Technology', '62', '100', '0'), (244, 'Northeastern University', '1', 'Admit', 'MS', 'Information Management', 'Fall ', '2014', '155', '152', '307', '4', 'None', 'Madras Institute of Technology', 'IT', '8.2', '10', '24'), (245, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2013', '164', '153', '317', '3', '104', 'NIT Jalandhar', '0', '0', '0', '0'), (246, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '160', '324', '3', '108', 'RGPV', 'Computer Science', '74.13', '100', '0'), (247, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '163', '155', '318', '3.5', '115', "MGM's Jawaharlal Nehru Engineering College", 'Computer Science', '67', '100', '0'), (248, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '163', '156', '319', '3', '102', 'MU', 'Computer Engineering', '65', '100', '0'), (249, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '169', '157', '326', '4', '108', 'NIT Silchar', 'Computer Science and Engineering', '6.94', '10', '0'), (250, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall', 'None', '760', '450', '1210', '3.5', '104', 'D J Sanghvi', 'IT', '0', '0', '0'), (251, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2014', '168', '147', '315', '3', '98', 'IIT Indore', 'Electrical Engineering', '6.55', '10', '0'), (252, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '380', '1160', '3.5', '101', 'SSN College of Engineering', 'Electronics and communication engineering', '78', '100', '0'), (253, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '158', '321', '4', '110', 'University of Pune', 'IT', '68.41', '100', '0'), (254, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '155', '315', '3', '99', 'Anna University', 'Information Technology', '9.15', '10', '0'), (255, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Spring ', '2016', '156', '150', '306', '3', '100', 'Maharishi Dayanand University', 'Electronics & Communication', '70.7', '100', '43'), (256, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '159', '150', '309', '4', '105', 'GITAM', 'ECE', '84', '100', '87'), (257, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '159', '152', '311', '3', '105', 'SSN College of Engineering', 'IT', '74', '100', '0'), (258, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '164', '150', '314', '3', '100', 'Dharamsinh Desai University', 'Computer Engineering', '7.87', '10', '0'), (259, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '570', '1340', '4', '107', 'D J Sanghvi', 'Information Technology', '59.57', '100', '0'), (260, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Spring ', '2013', '165', '155', '320', '3.5', '107', 'NIT Karnataka', 'EC', '7.42', '10', '0'), (261, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Networking', 'Fall ', '2013', '152', '144', '296', '3.5', '106', 'NMAMIT Nitte', 'Electronics and Communication', '72', '100', '0'), (262, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '159', '318', '4', '107', 'GECA', 'Information Technology', '7.3', '10', '0'), (263, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '730', '470', '1200', '3', '81', 'S.R.K.N.E.C', 'Information Technology', '65', '100', '0'), (264, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '730', '440', '1170', '4', '105', 'University of Rajasthan', 'Computer Science', '75.7', '100', '0'), (265, 'Northeastern University', '1', 'Admit', 'MS', 'Management Information System', 'Spring ', '2014', '156', '145', '301', 'None', 'None', 'Amrita School of Engineering', 'Computer Science', '8.8', '10', '0'), (266, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '165', '149', '314', '3.5', '107', 'CEG', 'Electronics and communication', '8.67', '10', '0'), (267, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2013', '164', '149', '313', '3', '103', 'CBIT', 'Bio Tech', '79', '100', '0'), (268, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '165', '149', '314', '3', '104', 'NITJ', 'ICE', '7.75', '10', '58'), (269, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '147', '311', '3', 'None', 'NIE', 'CSE', '8.87', '10', '0'), (270, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '740', '640', '1380', '4', '114', 'None', '0', '0', '0', '0'), (271, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '161', '148', '309', '4', '105', 'SVCE', 'B.E CSE', '7.19', '10', '17'), (272, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Spring ', '2012', '800', '560', '1360', '4', '107', 'Kakatiya University', 'E.E.E', '67', '100', '0'), (273, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '154', '160', '314', '3', '116', 'None', 'ECE', '8', '10', '0'), (274, 'Northeastern University', '1', 'Admit', 'MS', 'Management Information System', 'Fall', 'None', '307', '150', '457', '4.5', '93', 'None', '0', '62', '100', '0'), (275, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '160', '152', '312', '3.5', '108', 'University of Mumbai', 'Computer Engineering', '61', '100', '10'), (276, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '164', '150', '314', '3.5', '105', 'SCOET', 'Computer Science', '68', '100', '0'), (277, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '780', '560', '1340', '3.5', '104', 'MU', 'Electronics & Telecommunication', '62', '100', '0'), (278, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Spring ', '2013', '158', '141', '299', '3', '82', 'None', '0', '0', '0', '0'), (279, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '158', '322', '4', '109', 'Osmania University', 'Information Technology', '82.14', '100', '0'), (280, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '149', '314', '3', '100', 'Model Engineering College', 'Computer Science', '75', '100', '0'), (281, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics and Communication', 'Spring ', '2013', '690', '300', '990', '3', '84', 'LDCE', 'EC', '66', '100', '0'), (282, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '160', '145', '305', '3', '100', 'VJTI', 'Electronics', '6', '10', '0'), (283, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '165', '146', '311', '4', '103', 'Veermata Jijabai Technological Institute', 'Information Technology', '8.3', '10', '20'), (284, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Spring ', '2011', '800', '570', '1370', '4', '116', 'BITS Pilani', 'Electronics and Instrumentation', '9.1', '10', '0'), (285, 'Northeastern University', '1', 'Admit', 'MS', 'Management Information System', 'Fall ', '2015', '157', '157', '314', '3', '106', 'Panimalar Engineering College', 'Computer Science', '81', '100', '51'), (286, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '580', '1360', '4', '110', 'JNTU', 'Computer Science', '71.82', '100', '0'), (287, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '430', '1220', '3', '106', 'NIT Warangal', 'Computer Science & Engg', '7.7', '10', '0'), (288, 'Northeastern University', '1', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2013', '161', '160', '321', '3.5', '107', 'Saveetha Engineering College', 'Electronics & communication', '76', '100', '0'), (289, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '158', '144', '302', '3.5', '102', 'University of Pune', 'IT', '3.6', '4', '0'), (290, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2011', '770', '670', '1440', '3.5', '116', 'SSCET Bhilai', 'ETC', '7.62', '10', '0'), (291, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '163', '145', '308', '3', '101', 'Nagarjuna University', 'Electronics and Computers', '8.66', '10', '0'), (292, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '780', '630', '1410', '3', '112', 'University of Mumbai', 'Computer Engg', '70', '100', '0'), (293, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (294, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '157', '317', '4', 'None', 'Acharya Institute of technology', 'Computer Science', '71', '100', '0'), (295, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '157', '146', '303', '3.5', '98', 'PICT', 'Computer', '63.4', '100', '0'), (296, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '640', '1440', '3.5', '116', 'Silicon Institute Of Technology', 'Computer Science', '8.64', '10', '0'), (297, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '780', '510', '1290', '3', '95', 'MU', 'IT', '62', '100', '0'), (298, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '152', '315', '4', '111', 'Amrita Vishwa Vidhyapeetham', 'Computer Science and Engineering', '8.35', '10', '0'), (299, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '145', '308', '3', '102', 'GITAM', 'INFORMATION TECHNOLOGY', '8.55', '10', '0'), (300, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '156', '151', '307', '3.5', '106', 'Pune University', 'Computer Engg.', '57', '100', '0'), (301, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '158', '151', '309', '3.5', '100', 'SRM', 'Computer science and engineering', '6.8', '10', '0'), (302, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '151', '147', '298', '3', '91', 'MU', 'Electronics Engg', '68.6', '100', '24'), (303, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '157', '144', '301', '2.5', '98', 'Jaypee Institute of Information Technology', 'Electronics and Communication', '7.2', '10', '0'), (304, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '610', '1400', '3.5', '117', 'MU', 'Information Technology', '66', '100', '0'), (305, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '790', '550', '1340', '4', '105', 'Thakur College of Engineering and Technology', 'Computer Engineering', '68.69', '100', '0'), (306, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '153', '315', '3.5', '110', 'University of Mumbai', 'Computer Engineering', '70', '100', '0'), (307, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '150', '310', '3.5', '103', 'R V College of Engineering', 'Computer Science', '71', '100', '41'), (308, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '690', '1490', '4.5', '107', 'Indraprastha University', 'Electronics and Communication', '71', '100', '0'), (309, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2013', '750', '450', '1200', '4.5', '110', 'Institute of Technology Nirma University', 'Instrumentation & Control Electrical Department', '6.56', '10', '0'), (310, 'Northeastern University', '1', 'Admit', 'MS', 'pharmaceutics', 'Fall ', '2011', '750', '500', '1250', '3', '84', 'Gujarat Technological University', 'pharmacy', '65', '100', '0'), (311, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '570', '1340', '4', '108', 'MU', 'Comp Engg', '62', '100', '0'), (312, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '146', '304', '3', '103', 'BMSCE', 'information science and engineering', '8.81', '10', '24'), (313, 'Northeastern University', '1', 'Admit', 'MS', 'Biotechnology', 'Fall ', '2008', '760', '500', '1260', '4', '107', 'SASTRA', 'biotechnology', '8.6', '10', '0'), (314, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '154', '149', '303', '3.5', '95', 'RAIT', 'Electronics', '70', '100', '0'), (315, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '157', '321', '4', '110', 'Model Engineering College', 'Computer Science', '80.2', '100', '0'), (316, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '740', '400', '1140', '3.5', '100', 'VTU', 'CS', '65', '100', '0'), (317, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '168', '147', '315', '3', '94', 'Rajiv Gandhi Technical University', 'Mechanical', '0', '0', '0'), (318, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '168', '157', '325', '4', '114', 'Sardar Patel College of Engineering', 'Electronics', '75.3', '100', '22'), (319, 'Northeastern University', '1', 'Admit', 'MS', 'CS / MSIS / ITM', 'Fall ', '2011', '790', '300', '1090', '3.5', '93', 'V.G. Vaze college Mumbai University', 'Department Of Information Technology', '80', '100', '0'), (320, 'Northeastern University', '1', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2014', '156', '149', '305', '3', '102', 'JNTU', 'Computer Science', '78', '100', '0'), (321, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '690', '540', '1230', '4', '115', 'VTU', 'Electronics and Communications Engineering', '68.76', '100', '0'), (322, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '710', '590', '1300', '3.5', '101', 'Nirma Institute of Technology', 'Computer Engg', '7.02', '10', '0'), (323, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '153', '315', '3.5', '111', 'VIT', 'Computer Science and Engineering', '7.88', '10', '0'), (324, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '154', '149', '303', '4', '108', 'Anna University', 'ECE', '74', '100', '38'), (325, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '162', '147', '309', '3.5', '100', 'K J Somaiya College of Engiineering', 'I.T.', '64', '100', '0'), (326, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '157', '147', '304', '3', '92', 'Rajasthan Technical University', 'Computer Science', '68.8', '100', '0'), (327, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '170', '155', '325', '4', '110', 'Pune University', 'Information Technology', '70.2', '100', '30'), (328, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '660', '1460', '4', '114', 'SASTRA', 'Computer Science', '9.29', '10', '0'), (329, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '164', '154', '318', '4.5', '103', 'Sinhgad College of Engineering', 'Information Technology', '69', '100', '0'), (330, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '159', '150', '309', '3.5', '100', 'K J Somaiya College of Engiineering', 'IT', '58', '100', '0'), (331, 'Northeastern University', '1', 'Admit', 'MS', 'MIS-management related courses', 'Fall ', '2014', '156', '143', '299', '4', 'None', 'MU', 'Computer Engineering', '72.34', '100', '0'), (332, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall', 'None', '157', '142', '299', 'None', 'None', 'Manav Rachna College of Engineering', 'electronics and communication', '65', '100', '0'), (333, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Spring ', '2014', '164', '146', '310', '3', 'None', 'None', 'EC', '69.16', '100', '0'), (334, 'Northeastern University', '1', 'Admit', 'MS', 'Information Security', 'Fall ', '2014', '162', '162', '324', '3', 'None', 'NIT Arunachal Pradesh', 'Computer Science and Engineering', '7.85', '10', '0'), (335, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '167', '155', '322', '4', '116', 'MU', 'computer', '80.83', '100', '0'), (336, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '165', '151', '316', '4', '109', 'Rajiv Gandhi Institute Of Technology', 'Computers', '65', '100', '0'), (337, 'Northeastern University', '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2014', '148', '146', '294', '3', '94', 'Vidyalankar Institute of Technology', 'information technology', '0', '0', '0'), (338, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '152', '314', '4', '111', 'MU', 'Computer Engineering', '67', '100', '0'), (339, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '160', '150', '310', '3', '7', 'Anna University', 'Mechanical Engineering', '7.5', '10', '0'), (340, 'Northeastern University', '1', 'Admit', 'MS', 'Telecom management', 'Spring ', '2013', '730', '320', '1050', '3', '79', 'Syed Hashim College-Affl to JNTU', 'ECE', '68.5', '100', '0'), (341, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '161', '145', '306', '3', '104', 'Anna University', 'Mechanical Engineering', '8.41', '10', '0'), (342, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '770', '530', '1300', '3.5', '112', 'University of Mumbai', 'Electronics Engineering', '69.16', '100', '0'), (343, 'Northeastern University', '1', 'Admit', 'MS', 'computer science / MIS', 'Spring ', '2015', '161', '147', '308', '3', '99', 'Dharamsinh Desai University', 'Electronics and Communications', '73.5', '100', '36'), (344, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '162', '160', '322', '4', '114', 'MU', 'Information Technology', '54', '100', '12'), (345, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '149', '315', '3.5', '100', 'Nirma Institute of Technology', 'Information Technology', '7.63', '10', '30'), (346, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '151', '313', '4', 'None', 'Amrita Vishwa Vidhyapeetham', 'Computer Science', '7.32', '10', '22'), (347, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '390', '1190', '2.5', '96', 'Osmania University', 'ECE', '69', '100', '0'), (348, 'Northeastern University', '1', 'Admit', 'MS', 'CS MIS', 'Fall ', '2012', '160', '148', '308', '3.5', '106', 'Fr Agnels Vashi (University of Mumbai)', 'Computer', '65', '100', '0'), (349, 'Northeastern University', '1', 'Admit', 'MS', 'CS', 'Fall ', '2014', '160', '154', '314', '4', '109', 'MU', 'Information Technology', '59.7', '100', '0'), (350, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '151', '144', '295', '3', '90', 'Maharashtra Institute of Technology', 'Computer Science', '74', '100', '0'), (351, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '164', '149', '313', '3', '101', 'NIT Durgapur', 'Computer Science', '7.8', '10', '59'), (352, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', 'None', 'None', '0', 'None', 'None', 'None', 'Electrical and Electronics Engineering', '67', '100', '42'), (353, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall', 'None', '157', '152', '309', '3.5', '109', 'MU', 'I.T.', '54', '100', '0'), (354, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '145', '308', '3', '100', 'VTU', 'CS', '8.35', '10', '0'), (355, 'Northeastern University', '1', 'Admit', 'MS', 'Telecom management', 'Fall ', '2014', '156', '148', '304', '4', '94', 'Vidyalankar Institute of Technology', 'Electronics and Telecommunication', '3.83', '4', '0'), (356, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', 'None', 'None', '0', 'None', 'None', 'Guru Gobind Singh Indraprashta University', 'INDUSTRIAL AND PRODUCTION', '74.5', '100', '0'), (357, 'Northeastern University', '1', 'Admit', 'MS', 'MIS-management related courses', 'Fall ', '2013', '159', '146', '305', '3.5', '96', 'VTU', 'EEE', '65', '100', '0'), (358, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '159', '152', '311', '4', '107', 'D j Sanghvi', 'Computer Engineering', '70', '100', '0'), (359, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '156', '149', '305', '3.5', '108', 'CSVTU', 'CSE', '66.45', '100', '0'), (360, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '142', '303', '4.5', '97', 'BIT Mesra', 'Electronics & Communication Engineering', '69.9', '100', '0'), (361, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '161', '149', '310', '4', '108', 'R.N.S.I.T (VTU)', 'Computer science', '65', '100', '0'), (362, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '160', '148', '308', '3.5', '107', 'University of Mumbai', 'Information Technology', '53', '100', '0'), (363, 'Northeastern University', '1', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '170', '150', '320', '3.5', '106', 'IIT Bombay', 'Mechanical', '8.1', '10', '0'), (364, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '164', '155', '319', 'None', '108', 'VTU', 'Computer Science', '72', '100', '0'), (365, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall', 'None', '159', '157', '316', '4', '102', 'University of Pune', 'Computer', '59', '100', '0'), (366, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2012', '770', '480', '1250', '3.5', '109', 'Don Bosco Institute of Technology', 'EXTC', '56', '100', '0'), (367, 'Northeastern University', '1', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '157', '153', '310', '3', 'None', 'JNTU', 'Mechanical', '75', '100', '12'), (368, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '152', '319', '3.5', '95', 'KIIT', 'ELECTRICAL ENGINEERING', '7.74', '10', '0'), (369, 'Northeastern University', '1', 'Admit', 'MS', 'pharmaceutics', 'Fall ', '2015', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (370, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '710', '490', '1200', '3', '106', 'University', 'CSE', '7.89', '10', '0'), (371, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '159', '153', '312', '3.5', '107', 'Pune University', 'IT', '62', '100', '0'), (372, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2006', '790', '630', '1420', '4.5', '293', 'Punjab Technical University', 'Electronics & Communication Engg', '67', '100', '0'), (373, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '440', '1210', '3', '111', 'MSRIT', 'Computer Science', '75', '100', '0'), (374, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '165', '151', '316', '4', '109', 'VTU', 'Computer Science', '73', '100', '57'), (375, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '146', '308', '3', '93', 'Maharaja Agrasen Institute Of Technology', 'Computer Science Engineering', '73.4', '100', '0'), (376, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2012', '780', '420', '1200', '2.5', '98', 'University of Pune', 'Electronics and telecommunication', '60.1', '100', '0'), (377, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2016', '162', '159', '321', '4.5', '111', 'Sathyabama University', 'Mechanical Engineering', '7.59', '10', '0'), (378, 'Northeastern University', '1', 'Admit', 'MS', 'None', 'Fall ', '2013', '157', '155', '312', '4', '113', 'MU', 'Computer Engineering', '65', '100', '0'), (379, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Spring ', '2015', '161', '143', '304', '3.5', '107', 'Vignan Institute of Technology and Science', 'Information Technology', '79', '100', '24'), (380, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '600', '1380', '4', '102', 'VJCET (MG University)', 'CSE', '80.34', '100', '0'), (381, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '157', '154', '311', '3', '104', 'VTU', 'ISE', '7.04', '10', '45'), (382, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '740', '400', '1140', '3', '95', 'MU', 'Computer Engg.', '71', '100', '0'), (383, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2013', '163', '154', '317', '3.5', '109', 'Manipal Institue of Technology', 'Mechanical Engineering', '7.66', '10', '0'), (384, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '156', '150', '306', '3.5', '113', 'VTU', 'Computer Science and Engineering', '74.21', '100', '0'), (385, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '157', '149', '306', '3.5', '104', 'GGSIPU', 'EEE', '75.1', '100', '0'), (386, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '165', '155', '320', '3', 'None', 'PTU-Dav Institue of Engineering and Technology', 'Information Technology', '69', '100', '0'), (387, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '166', '156', '322', '3.5', '111', 'JNTU', 'CS', '63', '100', '0'), (388, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '158', '320', '4.5', '110', 'MAIT GGSIPU', 'CSE', '73.1', '100', '22'), (389, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Networks', 'Fall ', '2013', '770', '580', '1350', '4', '115', 'Sir MVIT', 'CS', '74.5', '100', '0'), (390, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '760', '530', '1290', '3.5', '107', 'Himachal Pradesh University / IITT College of Engineering', 'B.Tech (Electronics and Communication)', '68.6', '100', '0'), (391, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '153', '311', '3.5', '106', 'Anna University', 'Electrical and Electronics', '7.53', '10', '0'), (392, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '158', '323', '4.5', '112', 'VTU', 'CSE', '9.27', '10', '0'), (393, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Spring ', '2013', '162', '154', '316', '4.5', '109', 'Lahore University of Management Sciences', 'School of Science and Engg.', '2.85', '4', '0'), (394, 'Northeastern University', '1', 'Admit', 'MS', 'MEM', 'Fall ', '2013', '158', '147', '305', '3', '87', 'JNTU', 'ece', '67.5', '100', '0'), (395, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '162', '150', '312', '3.5', '104', 'SRM', 'Computer Science', '8.73', '10', '0'), (396, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '158', '143', '301', '3', '98', 'MVSR', 'Mechanical', '70', '100', '1'), (397, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '800', '610', '1410', '3.5', '108', 'JNTU', 'CS', '79', '100', '0'), (398, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '450', '1220', '4', '103', 'VTU', 'Computer Sciece', '73.5', '100', '0'), (399, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '150', '142', '292', '3.5', '101', "St Joseph's College of Engineering", 'CSE', '81', '100', '0'), (400, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2007', '730', '340', '1070', '3.5', '103', 'K J Somaiya College of Engiineering', 'Mechanical Engineering', '69', '100', '0'), (401, 'Northeastern University', '1', 'Admit', 'MS', 'CS / SE / IT / MIS', 'Fall ', '2015', '158', '157', '315', '4', '112', 'Rajasthan Technical University', 'Computer Engineering', '67.11', '100', '30'), (402, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '156', '149', '305', '3', '94', 'Rajasthan Technical University', 'Computer science', '81.5', '100', '0'), (403, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '530', '1300', '4', '108', 'VTU', 'Computer Science & Engineering', '67', '100', '0'), (404, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '165', '153', '318', '3.5', '108', 'GGSIPU', 'CSE', '73', '100', '44'), (405, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '167', '154', '321', '3.5', '101', 'G H Patel College of Engg & Tech', 'Information Technology', '7.76', '10', '34'), (406, 'Northeastern University', '1', 'Admit', 'MS', 'Human Computer Interaction', 'Fall ', '2012', '160', '148', '308', '3.5', '83', 'University of Pune', 'Computer Engg.', '65.5', '100', '0'), (407, 'Northeastern University', '1', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '164', '143', '307', '3', '91', 'VIT', 'Computer Engineering', '8.74', '10', '0'), (408, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2013', '161', '157', '318', '4', '111', 'MU', 'Electronics and Telecommunication', '76', '100', '0'), (409, 'Northeastern University', '1', 'Admit', 'MS', 'Management Information System', 'Fall ', '2015', '159', '150', '309', '2.5', '93', 'Chitkara University', 'B.E. CSE', '7.2', '10', '33'), (410, 'Northeastern University', '1', 'Admit', 'MS', 'CS / MIS', 'Fall ', '2014', '160', '156', '316', '3.5', '106', 'Amrita School of Engineering', 'CSE', '6.38', '10', '22'), (411, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '157', '153', '310', '4', '108', 'VTU', 'Computer Science', '66', '100', '0'), (412, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '159', '144', '303', '3.5', '95', 'JNTU', 'IT', '74.41', '100', '0'), (413, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '170', '160', '330', '4', '112', 'Jaypee Institute of Information Technology', 'Electronics and Communication', '8.6', '10', '0'), (414, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '680', '360', '1040', '4', '106', 'MITCOE; Pune University', 'I T', '70', '100', '0'), (415, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '149', '311', '4', '107', 'Padre Conceicao College Of Engineering', 'Electronics And Telecommunication', '78.12', '100', '6'), (416, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '790', '460', '1250', '4', '109', 'MU', 'Computer Science', '73.25', '100', '0'), (417, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '161', '153', '314', '3', 'None', 'SASTRA', 'info and comm technology (ICT)', '7.3', '10', '24'), (418, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '167', '155', '322', '3.5', '106', 'NIT Patna', 'Computer Science', '8.24', '10', '36'), (419, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '730', '540', '1270', '3.5', '103', 'VTU', 'CS', '67', '100', '0'), (420, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '760', '420', '1180', '4', '109', 'G.H. Raisoni College of Engineering Nagpur', 'Information Technology', '65', '100', '0'), (421, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '161', '150', '311', '3.5', '101', "St Joseph's College of Engineering", 'EEE', '74', '100', '0'), (422, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '760', '510', '1270', '5', '98', 'Rajiv Gandhi Institute Of Technology', 'Instrumentation', '60.56', '100', '0'), (423, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '151', '309', '3.5', '103', 'SBMJain Coll', 'Dept of CS', '78', '100', '0'), (424, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '710', '520', '1230', '3.5', '90', 'RMK Engineering College', 'Computer Science', '83', '100', '0'), (425, 'Northeastern University', '1', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '161', '146', '307', '3.5', '99', 'University of Pune', 'EC', '67.53', '100', '36'), (426, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '157', '148', '305', '4', '105', 'Goa University', 'Computer Engineering', '78', '100', '32'), (427, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '750', '610', '1360', '3', '106', 'JNTU', 'ECE', '72', '100', '44'), (428, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '166', '152', '318', '3', '103', 'VTU', 'Information Science', '63', '100', '45'), (429, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '166', '156', '322', '3', '104', 'Gautam Buddh Technical University', 'Information Technology', '71', '100', '0'), (430, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '159', '150', '309', '3', '106', 'Amity University', 'Computer Science and Engineering', '8.36', '10', '39'), (431, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '760', '610', '1370', '4', '115', 'MG University', 'Computer Science', '79', '100', '0'), (432, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '166', '150', '316', '4', '108', 'RKNEC', 'IT', '75', '100', '0'), (433, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '156', '314', '4', 'None', 'Anna University', 'Information Technology', '8.01', '10', '0'), (434, 'Northeastern University', '1', 'Admit', 'MS', 'Biotechnology', 'Fall ', '2014', '164', '155', '319', '5', '112', 'VIT', 'Biotechnology', '8.62', '10', '0'), (435, 'Northeastern University', '1', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (436, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '149', '311', '3', '88', 'Sri Sairam Engineering College', 'Computer Science and Engineering', '0', '0', '0'), (437, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '158', '148', '306', '3', '7', 'Chhattisgarh Swami Vivekanand Technical Unveirsity', 'Computer Science and Engineering', '8.91', '10', '0'), (438, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '154', '147', '301', '3', '110', 'University of Mumbai', 'computer engineering', '3.7', '4', '0'), (439, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '500', '1270', '3', '97', 'Anna University', 'Information Technology', '75', '100', '0'), (440, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '144', '303', '3', '101', 'Bangalore Institute of Technology', 'Computer Science and Engineering', '78.11', '100', '0'), (441, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '146', '305', '3', '8', 'Bapatla Engineering College', 'CSE', '90.2', '100', '0'), (442, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '800', '330', '1130', '4', '253', 'Hacettepe University', 'Electrical & Electronics Engineering', '3.87', '4', '0'), (443, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '164', '157', '321', '4.5', '107', 'MSRIT', 'Mechanical Engineering', '9.16', '10', '0'), (444, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2014', '162', '149', '311', '3.5', '113', 'SRM', 'ECE', '8.57', '10', '0'), (445, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (446, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2016', '160', '155', '315', '3.5', '98', 'UPTU', 'IT', '63.08', '100', '18'), (447, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '750', '290', '1040', '3.5', '95', 'D J Sanghvi', 'IT', '67', '100', '0'), (448, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '162', '158', '320', '3', '114', 'NIT Durgapur', 'Computer Science and Engineering', '7.36', '10', '24'), (449, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '780', '390', '1170', '3.5', '88', 'CHHATTISGARH SWAMI VIVEKANANDA TECHNICAL UNIVERSITY', 'COMPUTER SCIENCE', '8.55', '10', '0'), (450, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '164', '145', '309', '3', '103', 'Amrita School of Engineering', 'Mechanical', '6.1', '10', '36'), (451, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2013', '158', '150', '308', '3.5', 'None', 'RMK Engineering College', 'EEE', '72', '100', '0'), (452, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '155', '316', '3.5', '108', 'University of Calicut', 'Computer Science', '63', '100', '0'), (453, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '165', '150', '315', 'None', '95', 'None', '0', '0', '0', '0'), (454, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management / Industrial Engineering / IMSE', 'Fall ', '2015', '154', '145', '299', '3.5', '87', 'Velammal Engineering College', 'ECE', '80', '100', '0'), (455, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '660', '1430', '4', '112', 'VIT University', 'Computer science engineering', '9.1', '10', '0'), (456, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '153', '314', '4.5', '105', 'K J Somaiya College of Engiineering', 'IT', '61', '100', '0'), (457, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '660', '1450', '4.5', '109', 'VIT', 'Computer Science Engineering', '9.33', '10', '0'), (458, 'Northeastern University', '1', 'Admit', 'MS', 'CS', 'Fall ', '2013', '800', '510', '1310', '4.5', '115', 'MU', 'IT', '68', '100', '0'), (459, 'Northeastern University', '1', 'Admit', 'MS', 'CS / MSIS / ITM', 'Fall ', '2011', '780', '520', '1300', '3', '96', 'University of Pune', 'Information Technology', '53', '100', '0'), (460, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '161', '149', '310', '3.5', '105', 'BIT Mesra', 'ECE', '7.04', '10', '0'), (461, 'Northeastern University', '1', 'Admit', 'MS', 'Entertainment technology-Animations and graphics', 'Fall', 'None', '790', '560', '1350', '4', '106', 'NIT Calicut', 'Computer Science', '8.34', '100', '0'), (462, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '156', '320', '3.5', '114', 'VTU', 'Computer Science', '75', '100', '0'), (463, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '158', '153', '311', '3.5', '103', 'VTU', 'Computer Science Engg', '70', '100', '0'), (464, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '790', '610', '1400', '3', '105', 'Jaypee Institute of Information Technology', 'InformationTechnology', '6.6', '10', '0'), (465, 'Northeastern University', '1', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2014', '163', '153', '316', '4', '113', 'MU', 'Civil Engineering', '51', '100', '22'), (466, 'Northeastern University', '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '760', '480', '1240', '4', '110', 'Rajiv Gandhi Institute Of Technology', 'Information Technology', '55', '100', '0'), (467, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '156', '321', '3', '111', "St.Xavier's College", 'Information Technology', '75.6', '100', '0'), (468, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2008', '800', '580', '1380', '5', '111', 'MU', 'Information Technology', '60', '100', '0'), (469, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '147', '307', '3', '95', 'Jaypee Institute of Information Technology', 'CSE', '72.5', '100', '0'), (470, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '158', '154', '312', 'None', '105', 'PCE Nagpur', 'Computer Tech.', '71', '100', '0'), (471, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '690', '540', '1230', '3', '106', 'VTU', 'CS', '74', '100', '0'), (472, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '760', '490', '1250', '3', '101', 'Madras Institute of Technology', 'ECE', '6.4', '10', '0'), (473, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics & Communication', 'Fall ', '2012', '730', '610', '1340', '3.5', '93', 'VTU', 'Electronics and Communication', '77.2', '100', '0'), (474, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical and computer engineering electrical engineering telecommunications engineering', 'Fall ', '2014', '165', '148', '313', '3.5', '96', 'D J Sanghvi', 'EXTC', '67.6', '100', '0'), (475, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '159', '152', '311', '3', '106', 'VTU', 'Computer Science', '67.8', '100', '33'), (476, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '164', '154', '318', '3', '107', 'Amity University', 'CS&E;', '7.5', '10', '0'), (477, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '148', '309', '3', '100', 'Anna University', 'Computer Science', '8.5', '10', '0'), (478, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '780', '660', '1440', '4.5', '283', 'Sri Venkateswara College of Engineering', 'Computer Science', '72', '100', '0'), (479, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '161', '163', '324', '4', '111', 'SAKEC University of Mumbai', 'Electronics', '60', '100', '60'), (480, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '152', '312', '4', '115', 'MU', 'Computers', '66.45', '100', '24'), (481, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '170', '153', '323', '3.5', '90', 'Osmania University', 'ECE', '77', '100', '0'), (482, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '153', '317', '3', '103', 'SVITS', 'Computer Science', '73', '100', '0'), (483, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '153', '149', '302', '3', 'None', 'University of Mumbai', 'Management', '61', '100', '36'), (484, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '650', '1420', '3.5', '111', 'Vishwakarma Institute of Technology', 'Electronics', '65.38', '100', '0'), (485, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2014', '163', '163', '326', '4', '115', 'NIT Calicut', 'Computer Science and Engineering', '6.88', '10', '0'), (486, 'Northeastern University', '1', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '750', '610', '1360', '3.5', '110', 'VTU', 'Electronics and Communications', '70.66', '100', '0'), (487, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2010', '790', '560', '1350', '3.5', '107', 'None', '0', '0', '0', '0'), (488, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '570', '1340', '3', '103', 'IET DAVV', 'CSE', '74', '100', '0'), (489, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Spring ', '2013', '780', '560', '1340', '4', 'None', 'MJCET', 'Electronics and Instrumentation', '64', '100', '0'), (490, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '720', '1520', '5.5', '118', 'None', '0', '0', '0', '0'), (491, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '162', '142', '304', 'None', '97', 'IES IPS Academy', 'Electronics and communication', '76', '100', '42'), (492, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '154', '317', '3.5', '99', 'BESU Shibpur', 'Computer Science and Technology', '74.7', '100', '22'), (493, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2007', '800', '550', '1350', '4.5', '283', 'MU', 'Electronics', '55', '100', '0'), (494, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '161', '149', '310', '3.5', '101', 'JNTU', 'Computer Science', '65.44', '100', '0'), (495, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '170', '164', '334', '3.5', '113', 'Amrita School of Engineering', 'CSE', '7.73', '10', '0'), (496, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '500', '1280', '3', '95', 'MU', 'Computer', '74', '100', '0'), (497, 'Northeastern University', '1', 'Admit', 'MS', 'CS', 'Spring ', '2015', '163', '155', '318', '4.5', '111', 'Bharati Vidyapeeth', 'Instrumentation and Control', '75.66', '100', '33'), (498, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2013', '159', '143', '302', '3', '94', 'Jaypee Institute of Information Technology', 'Electronics and Communication', '7', '10', '0'), (499, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '164', '152', '316', '3', '98', 'None', '0', '0', '0', '0'), (500, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '490', '1280', '4.5', '108', 'SSN College of Engineering', 'Electronics And Communication Engineering', '82', '100', '0'), (501, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '146', '308', '4', '105', 'SSN College of Engineering', 'Information Technology', '82', '100', '0'), (502, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '530', '1300', '3.5', '100', 'None', 'Computer engineering', '69', '100', '0'), (503, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '148', '307', '3.5', '109', 'Valliammai Engineering College', 'ECE- Electronics and Communications Engineering', '78', '100', '0'), (504, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '390', '1190', '3', '103', 'Pune University', 'Information Technology', '68.92', '100', '0'), (505, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '161', '323', '4', '112', 'Thadomal Shahani Engineering College', 'Computer Science', '75', '100', '12'), (506, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '410', '1210', '3', '99', 'Sarvajanik College of Engineering & Technology', 'Computer Engineering', '75', '100', '0'), (507, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '158', '322', '3.5', '113', 'D J Sanghvi', 'computer engineering', '73.5', '100', '0'), (508, 'Northeastern University', '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2013', '730', '550', '1280', '4', '105', 'L D College Of Engineering', 'Computer Engineering', '68.9', '100', '0'), (509, 'Northeastern University', '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '740', '520', '1260', '4', '96', 'SSN College of Engineering', 'Electrical and Electronics Engineering', '72', '100', '0'), (510, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Summer ', '2013', '159', '152', '311', '4', '102', 'K J Somaiya College of Engiineering', 'Mechanical Engg.', '55', '100', '0'), (511, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2013', '162', '151', '313', '3', '100', 'MDU', 'ECE', '62', '100', '0'), (512, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Spring ', '2013', '165', '146', '311', '3', '97', 'D J Sanghvi', 'Chemical', '54', '100', '0'), (513, 'Northeastern University', '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2014', '158', '148', '306', 'None', 'None', 'VTU', 'Electronics and Communication', '74', '100', '29'), (514, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2014', '162', '153', '315', '3.5', 'None', 'JNTU', 'electrical engineering', '70', '100', '0'), (515, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '550', '1340', '3', '103', 'U P Tech University', 'Computer Science', '71.84', '100', '0'), (516, 'Northeastern University', '1', 'Admit', 'MS', 'Information Security', 'Fall ', '2008', '700', '530', '1230', '3.5', '111', 'None', '0', '0', '0', '0'), (517, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '700', '490', '1190', '3', '92', 'GTU', 'Mechanical Engg.', '6.5', '10', '0'), (518, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '730', '520', '1250', '3', '89', 'VTU', 'Electronics & Communication', '66.2', '100', '0'), (519, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '720', '370', '1090', '3', 'None', 'SVCE', 'Electrical Engineering', '8.1', '10', '0'), (520, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management / Industrial Engineering / IMSE', 'Fall ', '2015', '165', '160', '325', '4.5', 'None', 'Columbia University', '0', '0', '0', '0'), (521, 'Northeastern University', '1', 'Admit', 'MS', 'Electronic and Telecommunication Engineering', 'Fall ', '2012', '165', '146', '311', '3', '104', 'NIT Calicut', 'Electronics and Communications', '8.3', '10', '0'), (522, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '153', '315', '3', '109', 'PSG College of Technology', 'IT', '9.09', '10', '19'), (523, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '159', '144', '303', '3', '100', 'B.S ABDUR RAHMAN UNIVERSITY', 'Electronics and communication', '8.51', '100', '0'), (524, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '760', '530', '1290', '4.5', '110', 'VTU', 'Electronics and Communication', '74.3', '100', '0'), (525, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '148', '306', '2.5', 'None', 'JNTU', 'Computer Science and Engineering', '70', '100', '17'), (526, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '158', '149', '307', '4', '96', 'MU', 'EXTC', '64.85', '100', '20'), (527, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '158', '144', '302', '3', '90', 'Thadomal Shahani Engineering College', 'CS', '7', '10', '0'), (528, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '750', '600', '1350', '3.5', '100', 'SSN College of Engineering', 'EEE', '8.61', '10', '0'), (529, 'Northeastern University', '1', 'Admit', 'MS', 'Information Security', 'Fall ', '2011', '720', '570', '1290', '3', '111', 'University of Pune', 'Computer Science', '56.6', '100', '0'), (530, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2009', '780', '520', '1300', '3', '110', 'GITAM', 'ECE', '9.55', '10', '0'), (531, 'Northeastern University', '1', 'Admit', 'MS', 'Biotechnology', 'Fall ', '2011', '610', '540', '1150', '3.5', 'None', 'None', '0', '3', '4', '0'), (532, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2013', '154', '145', '299', '2.5', '82', 'West Bengal University Of Technology', 'Electronic & Communication', '7.23', '10', '0'), (533, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '640', '1440', '3', '115', 'MAIT GGSIPU', 'CSE', '79', '100', '0'), (534, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '149', '308', '3.5', '104', 'SSN College of Engineering', 'Computer Science', '82.81', '100', '0'), (535, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '158', '142', '300', '3', '83', 'Pune University', 'computer engineering', '64.15', '100', '0'), (536, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '150', '313', '4', '108', 'NMIMS', 'IT', '3.2', '4', '0'), (537, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '760', '500', '1260', '3', '86', 'TSEC', 'Computer Science', '74', '100', '0'), (538, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '158', '148', '306', '3', '104', 'SASTRA', 'CSE', '8.1', '10', '0'), (539, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '160', '161', '321', '4', '106', 'PSG College of Technology', 'Electronics and Communication', '8.82', '10', '24'), (540, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '690', '500', '1190', '3.5', '101', 'MU', 'Computer', '66', '100', '0'), (541, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '152', '313', '3', '101', 'UPTU', 'CS', '71', '100', '0'), (542, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '147', '310', '3', '99', 'K J Somaiya College of Engiineering', 'Computers', '62', '100', '0'), (543, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '150', '314', 'None', '104', 'None', '0', '8.06', '100', '0'), (544, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '155', '317', '4.5', '114', 'Manipal Institue of Technology', 'Computer Science', '9.46', '10', '12'), (545, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '770', '490', '1260', '3.5', '101', 'PTU Jallandhar', 'Computer Science', '69.2', '100', '0'), (546, 'Northeastern University', '1', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '161', '156', '317', '3', '112', 'Jaypee Institute of Information Technology', 'ECE', '5.5', '10', '0'), (547, 'Northeastern University', '1', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2015', '160', '150', '310', '3.5', '100', 'MSRIT', 'Civil Engineering', '9.17', '10', '0'), (548, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2013', '770', '580', '1350', '3', '98', 'D j Sanghvi', 'Chemical Engineering', '59', '100', '0'), (549, 'Northeastern University', '1', 'Admit', 'MS', 'Electronic and Telecommunication Engineering', 'Fall ', '2012', '780', '320', '1100', '3', 'None', 'MU', 'Electronics and Telecommunication', '63', '100', '0'), (550, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '159', '150', '309', '3', '98', 'NIT Kurukshetra', 'Mechanical Engineering', '8', '10', '0'), (551, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '148', '307', '3', '104', 'Anna University', 'Computer Science', '78', '100', '0'), (552, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '740', '390', '1130', '3.5', '98', 'Dharamsinh Desai University', 'Information Technology', '72.5', '100', '0'), (553, 'Northeastern University', '1', 'Admit', 'MS', 'Information Security', 'Fall ', '2012', '800', '390', '1190', '3.5', '97', 'MU', 'Computer Engineering', '63', '100', '0'), (554, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '152', '315', '4', '103', 'Amrita School of Engineering', 'Computer Science and Engineering', '7.32', '10', '30'), (555, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '590', '1360', '5', '98', 'COEP', 'Information Technology', '8.42', '10', '0'), (556, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '158', '138', '296', '3.5', '90', 'MU', 'Information Technology', '72', '100', '0'), (557, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '158', '148', '306', '3', '96', 'University of Mumbai', 'Computer Engineering', '70.4', '100', '0'), (558, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '750', '550', '1300', '4', '107', 'VTU', 'EE', '71', '100', '0'), (559, 'Northeastern University', '1', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2015', '157', '149', '306', '4', '108', 'JBIET', 'Civil Engineering', '79.5', '100', '17'), (560, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '151', '312', '4.5', '115', 'Amity University', 'Computer Science', '7.36', '10', '0'), (561, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '760', '470', '1230', '4.5', '97', 'Pune University', '0', '70', '100', '0'), (562, 'Northeastern University', '1', 'Admit', 'MS', 'pharmaceutics', 'Fall ', '2012', '157', '152', '309', '3.5', '111', 'Manipal Institue of Technology', 'Pharmacy', '8.25', '10', '0'), (563, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '700', '480', '1180', '3.5', '100', 'Sri Venkateswara College of Engineering', 'CSE', '71', '100', '0'), (564, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '550', '1350', '4.5', '108', 'Don Bosco Institute of Technology', 'Computers', '66', '100', '0'), (565, 'Northeastern University', '1', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2015', '161', '151', '312', '4', '107', 'MSRIT', 'Civil Engineering', '9.35', '10', '0'), (566, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '166', '151', '317', '3', '103', 'Amrita School of Engineering', 'CS', '7.64', '10', '0'), (567, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '170', '153', '323', '3.5', '103', 'Pune University', 'ECE', '72', '100', '0'), (568, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2014', '162', '162', '324', '4', '116', 'PESIT', '0', '0', '0', '0'), (569, 'Northeastern University', '1', 'Admit', 'MS', 'Health Informatics', 'Fall ', '2014', '149', '153', '302', '3.5', '110', 'Padmashree Dr D Y Patil University', 'Btech Bioinformatics', '63', '100', '0'), (570, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '530', '1330', '4', 'None', 'MU', 'Information Technology', '74', '100', '0'), (571, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '700', '460', '1160', '3', '92', 'Pune University', 'Computer', '62', '100', '0'), (572, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2013', '760', '270', '1030', '2.5', '76', 'University of Mumbai', 'Electronics & telecom', '66.89', '100', '0'), (573, 'Northeastern University', '1', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '170', '156', '326', '4', '110', 'MU', 'Electronics & Telecommunication', '0', '100', '57'), (574, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '520', '1300', '3.5', '101', 'Model Engineering College', 'Computer Science', '67', '100', '0'), (575, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '168', '149', '317', '3', '102', 'BVM Engineering College', 'Electronics and Telecommunication', '7.7', '10', '0'), (576, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '780', '400', '1180', '4', '260', 'MU', 'Computers', '62', '100', '0'), (577, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2012', '770', '430', '1200', '3.5', '100', 'Vidyalankar Institute of Technology', 'Electronics and Telecommunication', '0', '0', '0'), (578, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (579, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '162', '145', '307', '3', '96', 'University of Pune', 'Mechanical', '57', '100', '0'), (580, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2009', '790', '640', '1430', 'None', '115', 'VTU', 'Electronics and Communication', '76', '100', '0'), (581, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '780', '490', '1270', '3', 'None', 'Pune University', 'IT', '65.79', '100', '0'), (582, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2011', '730', '560', '1290', '3', '110', 'NIT Jalandhar', 'ECE', '7.28', '10', '0'), (583, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '156', '154', '310', '4', '112', 'None', '0', '0', '0', '0'), (584, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '164', '141', '305', '3.5', '98', 'MU', 'Information Technology', '67.96', '100', '0'), (585, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Spring ', '2016', '163', '156', '319', '4', '108', 'Siddaganga Institue of Technology', 'Mechanical', '8.32', '10', '2'), (586, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '150', '309', '3', '103', 'MU', 'IT', '68.84', '100', '0'), (587, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '152', '315', '3.5', '101', 'Osmania University', 'C.S.E', '77', '100', '0'), (588, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '660', '600', '1260', '4', '111', 'University of Pune', 'Computer Engineering', '65.81', '100', '0'), (589, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '750', '650', '1400', '4', '113', 'IIIT Hyderabad', 'Computer Science and Engineering', '7.77', '10', '0'), (590, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '154', '152', '306', '3.5', '105', 'D J Sanghvi', 'IT', '72', '100', '36'), (591, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '160', '154', '314', '3', '94', 'University of Texas Dallas', 'EEE', '0', '0', '0'), (592, 'Northeastern University', '1', 'Admit', 'MS', 'EE / CS', 'Fall ', '2013', '800', '410', '1210', '3', '115', 'RKNEC', 'EC', '74.55', '100', '0'), (593, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '800', '550', '1350', '3.5', '102', 'None', 'CS', '72', '100', '0'), (594, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2012', '790', '470', '1260', '3', '7', 'SASTRA', 'Electronics and Communications engineering', '6.62', '10', '0'), (595, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '640', '1440', '3', '108', 'Amrita School of Engineering', 'Information Technology', '7.1', '10', '0'), (596, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '148', '307', '3', '104', 'SSN College of Engineering', 'EEE', '70', '100', '0'), (597, 'Northeastern University', '1', 'Admit', 'MS', 'CS', 'Fall ', '2013', '700', '560', '1260', '3', '108', 'MU', 'I.T', '69', '100', '0'), (598, 'Northeastern University', '1', 'Admit', 'MS', 'Management Information System', 'Fall ', '2014', '159', '148', '307', '3', '89', 'BITS Pilani', 'MBA', '7.77', '10', '45'), (599, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2011', 'None', 'None', '0', 'None', 'None', 'Institut Teknologi Bandung', 'Industrial Engineering', '3.4', '4', '0'), (600, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '160', '150', '310', 'None', '110', 'Anna University', 'ECE', '8.46', '10', '16'), (601, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '730', '1500', '4', '113', 'CoE Trivandrum', 'Computer science', '71', '100', '0'), (602, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '730', '490', '1220', '3', '94', 'MU', 'Comp. Engg', '77', '100', '0'), (603, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '157', '152', '309', '3.5', '100', 'Rajasthan Technical University', 'Computer Science', '75', '100', '0'), (604, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '160', '145', '305', '3.5', '96', 'Thadomal Shahani Engineering College', 'EXTC', '65', '100', '0'), (605, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '620', '1380', '5', '119', 'MU', 'Electronics and Telecommunications', '62', '100', '0'), (606, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '76', '590', '666', '3.5', '94', 'NIT Raipur', 'IT', '7.93', '10', '0'), (607, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '158', '322', '4', '105', 'BITS Pilani', 'Computer Science', '7.64', '10', '35'), (608, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '580', '1380', '4', '107', 'MS University Baroda', 'Electronics', '78.14', '100', '0'), (609, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '159', '160', '319', '3.5', '115', 'None', 'Computers', '7.84', '10', '0'), (610, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '167', '145', '312', '2.5', '89', 'SRM', 'COMPUTER SCIENCE AND ENGINEERING', '8.06', '10', '27'), (611, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Networks', 'Spring ', '2014', '167', '150', '317', '3.5', '97', 'CEG', 'Electronics and communication engineering', '7.84', '10', '0'), (612, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', 'None', 'None', '0', 'None', 'None', 'Madras Institute of Technology', 'Computer Science and Engineering', '8.2', '10', '6'), (613, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Spring ', '2013', '162', '152', '314', 'None', '112', 'SRKNEC Nagpur', 'Electronics', '63', '100', '0'), (614, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '156', '319', '3', 'None', 'Coimbatore Insitute of Technology', 'CSE', '8.1', '10', '0'), (615, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Spring ', '2013', '780', '460', '1240', '3.5', '101', 'Osmania University', 'Computer Science', '77', '100', '0'), (616, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2015', '165', '155', '320', '3.5', '107', 'MGM JNEC Aurangabad', 'Mechanical Engineering', '63.5', '100', '72'), (617, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2011', '800', '410', '1210', '3.5', '105', 'CEG', 'Electronics and Communication', '7.7', '10', '0'), (618, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '760', '520', '1280', '3.5', '86', 'University of Mumbai', 'Instrumentation', '0', '0', '0'), (619, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2015', '163', '155', '318', '4', '114', 'NIT Kurukshetra', 'Electrical Engineering', '9.4', '10', '0'), (620, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '151', '155', '306', '4', '111', 'None', '0', '0', '0', '0'), (621, 'Northeastern University', '1', 'Admit', 'MS', 'CS/SE', 'Fall ', '2012', '160', '149', '309', '4', '105', 'Sona College', 'Information Technology', '76', '100', '0'), (622, 'Northeastern University', '1', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (623, 'Northeastern University', '1', 'Admit', 'MS', 'CS', 'Fall ', '2014', '159', '149', '308', '3.5', '95', 'MU', 'IT', '64', '100', '33'), (624, 'Northeastern University', '1', 'Admit', 'MS', 'Information Security', 'Fall ', '2012', '158', '145', '303', '3', 'None', 'VTU', 'Electronics and communication', '56', '100', '0'), (625, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2015', '163', '152', '315', '3.5', '113', 'Maharishi Dayanand University', 'Electronics and Communication Engineering', '3.65', '4', '0'), (626, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2012', '750', '650', '1400', '4', '114', 'MU', 'Electronics and Telecommunication', '69', '100', '0'), (627, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '157', '150', '307', '3', 'None', 'Panimalar Engineering College', 'I.T', '70', '100', '34'), (628, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '780', '500', '1280', '3', '99', 'Sardar Patel College of Engineering', 'CS', '71.78', '100', '0'), (629, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '149', '308', '3.5', '98', 'Bannari Amman Institute of Technology', 'EEE', '9.01', '10', '0'), (630, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '165', '150', '315', '3.5', '7', 'Jaypee Institute of Information Technology', 'IT', '7.9', '10', '12'), (631, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '690', '590', '1280', '3', '104', 'SASTRA', 'IT', '8.12', '100', '0'), (632, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '156', '148', '304', '3', '109', 'Sri Sairam Engineering College', 'Information Technology', '84.5', '100', '0'), (633, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '152', '311', '3.5', '107', 'VTU', 'Computer Science', '82', '100', '0'), (634, 'Northeastern University', '1', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '161', '151', '312', '3.5', '97', 'BMSIT', 'Computer Science', '70', '100', '0'), (635, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '158', '320', '4', 'None', 'NIT Raipur', 'Computer Science & Engg.', '7.76', '10', '8'), (636, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '700', '640', '1340', '3', '91', 'MU', 'Information Technology', '63', '100', '0'), (637, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '157', '144', '301', '3.5', '97', 'MU', 'Computer Engineering', '75', '100', '0'), (638, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '168', '153', '321', '3', '108', 'NIT Surathkal', '0', '7.65', '10', '0'), (639, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '155', '147', '302', '3.5', '96', 'Anna University', 'CSE', '7.32', '10', '6'), (640, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '148', '310', '5', '108', 'Amrita School of Engineering', 'CSE', '7.68', '10', '0'), (641, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '154', '318', 'None', 'None', 'Sardar Patel University', 'Information Technology', '8.94', '10', '0'), (642, 'Northeastern University', '1', 'Admit', 'MS', 'MEM', 'Fall', 'None', '158', '147', '305', '3', '96', 'JNTU', 'ece', '68', '100', '0'), (643, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '155', '315', '3.5', '107', 'MU', 'Computer Engineering', '3.8', '4', '0'), (644, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '740', '530', '1270', '3', '108', 'PICT', 'Information Technology', '72.36', '100', '0'), (645, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '690', '670', '1360', '4', '105', 'Nagpur University', 'BCA Post Grad Diploma in CS', '58', '100', '0'), (646, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '162', '153', '315', '3.5', '106', 'Pune University', 'Information Technology', '69', '100', '0'), (647, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '156', '145', '301', 'None', '89', 'MIT PUNE', 'Mechanical Engg.', '68', '100', '0'), (648, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2014', '163', '155', '318', '4', 'None', 'AISSMS College of Engineering Pune', 'Mechanical ENGG', '61.2', '100', '0'), (649, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '151', '314', '3', '103', 'PSG College of Technology', 'Computer science and Engineering', '8.3', '10', '41'), (650, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '163', '160', '323', '3', '106', 'Guru Gobind Singh Indraprashta University', 'Computer Science', '85.79', '100', '0'), (651, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2007', '760', '370', '1130', '4', '263', 'Pune University', 'Electronics & Telecommunications', '65.5', '100', '0'), (652, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '159', '150', '309', '3.5', '106', 'WBUT', 'IT', '7.7', '10', '0'), (653, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '168', '163', '331', '5', '112', 'GITAM', 'Cse', '6.88', '10', '0'), (654, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '161', '153', '314', '3', '110', 'VTU', 'CSE', '83.33', '100', '38'), (655, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '159', '157', '316', '3', '101', "Vidyavardhini\\'s College of Engg and Technology", 'Computer Engineering', '73.22', '100', '0'), (656, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '170', '156', '326', '3.5', '108', 'COEP', 'Mechanical', '7.18', '10', '15'), (657, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '157', '165', '322', '3.5', 'None', 'VTU', 'Information Science', '76', '100', '0'), (658, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '750', '550', '1300', '4', '273', 'MGMCET Mumbai University', 'EXTC', '67', '100', '0'), (659, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '164', '149', '313', '3', '91', 'Punjab Technical University', 'ECE', '77.4', '100', '0'), (660, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '670', '1470', '4', '111', 'MU', 'Computer Engineering', '66.8', '100', '0'), (661, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '158', '318', 'None', '109', 'VTU', 'Computer Science', '81.07', '100', '0'), (662, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '540', '1340', '4', '112', 'VJTI', 'ECE', '6.7', '10', '0'), (663, 'Northeastern University', '1', 'Admit', 'MS', 'MIS-management related courses', 'Fall ', '2015', '158', '145', '303', '3', 'None', 'JNTU', 'Mechanical', '83.17', '100', '0'), (664, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '790', '570', '1360', '3.5', '107', 'ANU', 'Computer Science', '85', '100', '0'), (665, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '153', '315', '3.5', '104', 'The National Institute of Engineering', 'Computer Science & Engineering', '9.61', '10', '27'), (666, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '163', '152', '315', 'None', '105', 'MU', 'Mechanical', '70.12', '100', '0'), (667, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '159', '151', '310', '4', '107', 'Bangalore Institute of Technology', 'ISE', '71.76', '100', '28'), (668, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '155', '150', '305', '3', 'None', 'Anna University', 'EIE', '78', '100', '0'), (669, 'Northeastern University', '1', 'Admit', 'MS', 'pharmacy', 'Fall ', '2011', '580', '470', '1050', '2.5', '103', 'Dr.Bhanuben Nanavati college of Pharmacy', 'Pharmacy', '0', '0', '0'), (670, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2012', '157', '151', '308', '3.5', '112', 'Siddaganga Institue of Technology', 'Electrical and Electronics Engg', '57.66', '100', '0'), (671, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '157', '145', '302', '3', '102', 'None', '0', '0', '0', '19'), (672, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2011', '800', '550', '1350', '4', '106', 'VTU', 'Electronics and Communication', '72.2', '100', '0'), (673, 'Northeastern University', '1', 'Admit', 'MS', 'Biotechnology', 'Fall ', '2006', '620', '730', '1350', '5.5', '287', 'MU', 'Microbiology / Biotechnology', '73', '100', '0'), (674, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2011', '730', '340', '1070', '3', '80', 'University of Mumbai', 'Electronics & Telecommunication', '69.72', '100', '0'), (675, 'Northeastern University', '1', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (676, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '800', '590', '1390', '3.5', '107', 'University of Mumbai', 'IT', '63.4', '100', '0'), (677, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '152', '314', '3.5', '102', 'Sri Jayachamarajendra College of Engineering', 'Computer Science and Engineering', '8.5', '10', '0'), (678, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '780', '440', '1220', '3', '97', 'MU', 'Instrumentation Engineering', '65', '100', '0'), (679, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '480', '1230', '3.5', '99', 'JNTU', 'IT', '78', '100', '0'), (680, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2010', '790', '560', '1350', 'None', '94', 'MU', 'Mechanical', '61', '100', '0'), (681, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '161', '143', '304', '3.5', '108', 'Vidyalankar Institute of Technology', 'Information Technology', '63', '100', '0'), (682, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '550', '1350', '4', '107', 'TSEC', 'Computer Engineering', '74', '100', '0'), (683, 'Northeastern University', '1', 'Admit', 'MS', 'pharmacy', 'Fall ', '2011', '900', '270', '1170', '2.5', '100', 'JNTU', 'pharmacy', '65', '100', '0'), (684, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '160', '152', '312', '3', '107', 'Sikkim Manipal Institute of Technology', 'Computer Sciences', '8.34', '10', '28'), (685, 'Northeastern University', '1', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '160', '149', '309', '3', '101', 'GGSIPU', 'CSE', '79', '100', '0'), (686, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '164', '149', '313', '3', '104', 'Nirma Institute of Technology', 'Electronics and Communication Engineering', '8.1', '10', '0'), (687, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '760', '620', '1380', '2.5', 'None', 'Kerala University', 'Information technology', '6.8', '10', '0'), (688, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '158', '149', '307', '3', '101', 'Shri Shankaracharya College of Engi & Tech Bhilai', 'Computer Science', '72.24', '100', '20'), (689, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2013', '157', '144', '301', '3', '93', 'Pondicherry University', 'Mechanical Engineering', '69.7', '100', '0'), (690, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '163', '141', '304', '4', '103', 'R V College of Engineering', 'Computer Science', '72', '100', '0'), (691, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '157', '151', '308', '4', '101', 'VTU', 'CSE', '75.2', '100', '25'), (692, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '156', '144', '300', 'None', 'None', 'Vidyalankar Institute of Technology', 'Computer Engg', '65', '100', '0'), (693, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '151', '313', '4.5', '108', 'Shivaji University', 'Computer Science', '67', '100', '0'), (694, 'Northeastern University', '1', 'Admit', 'MS', 'Information Technology', 'Fall ', '2008', '750', '520', '1270', '5.5', '110', 'Thakur College of Engineering and Technology', 'Information Technology', '61', '100', '0'), (695, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '720', '610', '1330', '4.5', '112', 'Sri Sairam Engineering College', 'Computer Science', '82', '100', '0'), (696, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '158', '146', '304', '3.5', '102', 'Bhilai Institute of Technology', 'Computer Science', '7.8', '10', '65'), (697, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '151', '309', '4', '107', 'Chattisgarh Swami Vivekanand Technical University', 'Computer Science and Engineering', '8.52', '10', '0'), (698, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '170', '153', '323', '3.5', '90', 'Osmania University', 'ECE', '77', '100', '0'), (699, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '720', '450', '1170', 'None', '87', 'RAIT', 'Electronics', '0', '0', '0'), (700, 'Northeastern University', '1', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '161', '141', '302', '3', '85', 'GITAM', 'EEE', '85.6', '100', '33'), (701, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '165', '151', '316', '3.5', '113', 'nitk', 'ee', '7.59', '10', '24'), (702, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '168', '160', '328', '4', '113', 'Pune University', 'Computer Science', '70', '100', '0'), (703, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2012', '780', '500', '1280', '3.5', '92', 'BIT Mesra', 'Electical and Electronics Engineering', '6.28', '10', '0'), (704, 'Northeastern University', '1', 'Admit', 'MS', 'Information Security', 'Fall ', '2011', '770', '520', '1290', '3', '105', 'NIT Patna', 'IT', '9.18', '10', '0'), (705, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '610', '1410', '3', '108', 'MU', 'Electronics and Telecom', '66', '100', '0'), (706, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2011', '690', '570', '1260', '3.5', '103', 'Gujarat Technological University', 'Electronics and Communication', '71.5', '100', '0'), (707, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '800', '360', '1160', '3.5', '108', 'Dr. B.A.M.U.', 'MECHANICAL', '65', '100', '0'), (708, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2015', '160', '150', '310', '3.5', '88', 'KL University', 'Mechanical', '7.3', '10', '9'), (709, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '540', '1310', '4', '102', 'Rajiv Gandhi Technical University', 'Computer Science', '73', '100', '0'), (710, 'Northeastern University', '1', 'Admit', 'MS', 'Information Systems', 'Spring ', '2013', '147', '158', '305', '4', '92', 'H.B.T.I. Kanpur', 'Computer Science and Engineering', '69', '100', '0'), (711, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '152', '313', '4.5', '106', 'VTU', 'CSE', '76', '100', '0'), (712, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2015', '165', '149', '314', '4', '98', 'VIT', 'School of Electrical Engineering', '8.1', '10', '0'), (713, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2012', '162', '158', '320', '3', '108', 'RTM Nagpur University', 'ETC', '73.45', '100', '0'), (714, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '161', '152', '313', '4', '110', 'JUIT', 'CSE', '8', '10', '0'), (715, 'Northeastern University', '1', 'Admit', 'MS', 'Entrepreneurship', 'Fall ', '2014', '151', '149', '300', '3', '97', 'VIT', 'ECE', '6.45', '10', '0'), (716, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall', 'None', '151', '159', '310', '3', '107', 'NIT Tirchy', 'Production Engg', '7.37', '10', '0'), (717, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '740', '620', '1360', '3', '109', 'Anna University', 'CSE', '8.5', '10', '0'), (718, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '730', '530', '1260', '3', '105', 'K J Somaiya College of Engiineering', 'Information Technology', '70', '100', '0'), (719, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '720', '1520', '3.5', '106', 'DU', 'EE', '71', '100', '0'), (720, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '155', '152', '307', '3', '92', "St Joseph's College of Engineering", 'Computer Science', '8.51', '10', '0'), (721, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '800', '720', '1520', '4.5', '120', 'R V College of Engineering', 'ECE', '77.2', '100', '0'), (722, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '155', '152', '307', '3', '105', 'Reva Institute of Technology', 'Computer Science', '73.4', '100', '0'), (723, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '500', '1290', '2.5', '106', 'Amrita School of Engineering', 'ECE', '6.68', '10', '0'), (724, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Spring ', '2016', '156', '154', '310', '3.5', '106', 'SRM', 'MBA', '8.9', '10', '0'), (725, 'Northeastern University', '1', 'Admit', 'MS', 'MIS-management related courses', 'Fall ', '2013', '164', '155', '319', '3', '110', 'Panjab University', 'CSE', '76.1', '100', '0'), (726, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '660', '1430', '4', '106', 'VTU', 'Information Science', '71', '100', '0'), (727, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '154', '316', '3', '105', 'Model Engineering College', 'Computer Science', '68', '100', '0'), (728, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '161', '155', '316', '3', '103', 'RGTU', 'IT', '73', '100', '0'), (729, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '800', '510', '1310', '3', '103', 'BVBCET', 'Information Science', '71.8', '100', '0'), (730, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '780', '310', '1090', '3', '99', 'K.S.I.T', 'Computer Science', '75', '100', '0'), (731, 'Northeastern University', '1', 'Admit', 'MS', 'Information Security', 'Fall ', '2015', '167', '146', '313', '3', 'None', 'Institute of Technical Education and Research', 'Computer Science & Engineering', '7.98', '10', '36'), (732, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '680', '1450', '4.5', '116', 'MU', 'Computers', '64', '100', '0'), (733, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall', 'None', '165', '153', '318', '4', '106', 'Jadavpur University', 'Electrical Engg', '7.98', '10', '24'), (734, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '600', '1370', '4', '105', 'Pune University', 'Computer', '64.24', '100', '0'), (735, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'Bangalore Institute of Technology', 'Information Science', '78.8', '100', '0'), (736, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '149', '312', '3', '100', 'None', '0', '7.39', '10', '32'), (737, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '720', '450', '1170', '3', '100', 'MU', 'Information Technology', '69', '100', '0'), (738, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Spring ', '2012', '740', '450', '1190', 'None', '103', 'Mody University', 'Computer Science', '6.93', '10', '0'), (739, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '170', '150', '320', '3', '104', 'Jaypee Institute of Information Technology', 'Computer Science Engineering', '71', '100', '0'), (740, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '158', '143', '301', '3', '101', 'JSS Noida', 'Information Science', '76', '100', '0'), (741, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring', 'None', '730', '510', '1240', '3.5', 'None', 'University of Pune', '0', '70', '100', '0'), (742, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '750', '310', '1060', '3', '98', 'Govt. college of Engineering Aurangabad', 'IT', '68', '100', '0'), (743, 'Northeastern University', '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2014', '155', '153', '308', '3', '106', 'University of Pune', 'Information Technology', '59.3', '100', '7'), (744, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2014', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (745, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '520', '1290', '3', '118', 'SSN College of Engineering', 'Information Technology', '72', '100', '0'), (746, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2013', '159', '144', '303', '3', '96', 'SSN College of Engineering', 'ECE', '76', '100', '0'), (747, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '740', '300', '1040', '3', '88', 'M.H.S.S', 'Electronics and Telecommunications', '0', '0', '0'), (748, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Spring ', '2013', '156', '150', '306', '3', '91', 'JSS Noida', 'EC', '60', '100', '0'), (749, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '770', '540', '1310', '3', 'None', 'None', '0', '0', '0', '0'), (750, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '166', '152', '318', '4', '111', 'NITK Surathkal', 'Electrical & Electronics', '8.3', '10', '24'), (751, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '360', '1160', '4', '106', 'MU', 'Computers', '67.4', '100', '0'), (752, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '780', '660', '1440', '4', '287', 'MU', 'Computer engg', '61', '100', '0'), (753, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '156', '146', '302', '3.5', '82', 'BNMIT', 'CSE', '60', '100', '0'), (754, 'Northeastern University', '1', 'Admit', 'MS', 'pharmacy', 'Fall ', '2011', '740', '440', '1180', '2.5', '88', 'Sree Vidyanikethan Engineering College', 'pharmacy', '7', '10', '0'), (755, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '149', '308', '3', '105', 'MPSTME NMIMS', 'CS', '3', '4', '0'), (756, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall', 'None', '165', '159', '324', '4', '118', 'Rajiv Gandhi Institute Of Technology', 'Information Technology', '0', '0', '0'), (757, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '680', '600', '1280', '3.5', '97', 'MU', 'I.T', '66', '100', '0'), (758, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '161', '146', '307', '3', '99', 'COEP', 'Instrumentation & Control', '7.57', '10', '20'), (759, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2007', '800', '390', '1190', '3.5', '107', 'MU', 'instrumentation', '0', '0', '0'), (760, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics & Communication', 'Fall ', '2012', '800', '570', '1370', '3.5', '108', 'Gujarat Technological University', 'Electronics and Communication', '7.7', '10', '0'), (761, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '156', '151', '307', '3', '97', 'Osmania University', 'CSE', '77.5', '100', '0'), (762, 'Northeastern University', '1', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '170', '152', '322', '4', '110', 'VIT University', 'Energy Division', '8.62', '10', '0'), (763, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '168', '153', '321', '3', '101', 'DA-IICT', 'ICT', '6.57', '10', '0'), (764, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '162', '150', '312', '4', '102', 'SRM', 'IT', '7.95', '10', '0'), (765, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '430', '1210', '4', '105', 'VTU', 'CS', '75.2', '100', '0'), (766, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '167', '157', '324', '3.5', '102', 'None', 'Mechanical', '80', '100', '29'), (767, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '159', '148', '307', '3', '101', 'University of Pune', 'Mechanical', '68', '100', '0'), (768, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall', 'None', '162', '150', '312', 'None', '100', 'Nirma Institute of Technology', 'ECE', '7.74', '10', '0'), (769, 'Northeastern University', '1', 'Admit', 'MS', 'Manufacturing Engineering', 'Spring ', '2013', '159', '151', '310', '3', '111', 'Vignan Institute of Technology and Science', 'Mechanical', '76.88', '100', '0'), (770, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2013', '157', '149', '306', '2.5', '94', 'CEG', 'Mechanical Engineering', '6.08', '10', '0'), (771, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'R V College of Engineering', 'Computer Science', '0', '0', '0'), (772, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '159', '144', '303', '3.5', '100', 'MU', 'Information Technology', '69.4', '100', '0'), (773, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '149', '313', '3.5', '100', 'University of Dhaka', 'Computer Science & Engineering', '3.44', '4', '40'), (774, 'Northeastern University', '1', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '790', '470', '1260', '3.5', '95', 'Pune University', 'Information Technology', '63.93', '100', '0'), (775, 'Northeastern University', '1', 'Admit', 'MS', 'Information', 'Fall ', '2014', '159', '156', '315', 'None', '109', 'Manipal Institue of Technology', 'Printing Technology', '7.95', '10', '0'), (776, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '156', '154', '310', '3', '105', 'MU', 'Information Technology', '55', '100', '0'), (777, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '162', '143', '305', '3.5', '105', 'MU', 'Computer', '72', '100', '0'), (778, 'Northeastern University', '1', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2013', '159', '150', '309', '3', '107', 'Vidyalankar Institute of Technology', 'computer science', '65', '100', '0'), (779, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '710', '1500', '4.5', 'None', 'D J Sanghvi', 'IT', '67', '100', '0'), (780, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Spring ', '2012', '680', '430', '1110', '3', '100', 'Anna University', 'Information Technology', '7', '10', '0'), (781, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '470', '1220', '3', '94', 'Pune University', 'E & Tc', '58', '100', '0'), (782, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '158', '155', '313', '4', '109', 'MU', 'I.T', '63', '100', '0'), (783, 'Northeastern University', '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '780', '420', '1200', '3', '96', 'RGPV', 'Electrical', '67', '100', '0'), (784, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '750', '450', '1200', '3', '104', 'nrec', 'ece', '83', '100', '0'), (785, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '163', '152', '315', '3', '93', 'None', '0', '0', '0', '18'), (786, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '155', '313', '3.5', '111', 'SIES Graduate School of Technology', 'Information Technology', '74.42', '100', '36'), (787, 'Northeastern University', '1', 'Admit', 'MS', 'Information Assurance', 'Fall ', '2013', '159', '150', '309', '3', '92', 'RTU', 'IT', '62', '100', '0'), (788, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '154', '148', '302', '4', '95', 'Bharati Vidyapeeth', 'Computer Engg.', '66.5', '100', '0'), (789, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '149', '312', '4', '106', 'YMCA', 'Information Technology', '8.27', '10', '0'), (790, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '161', '148', '309', '3', '102', 'R V College of Engineering', 'Information Science', '9.05', '10', '40'), (791, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '146', '309', '3', '107', 'PESIT', 'Information Science', '76.21', '100', '0'), (792, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Spring ', '2013', '159', '149', '308', '3', '108', 'Mody Institute of Technology and Science', 'Electronics and Communications', '6.9', '10', '0'), (793, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2011', '710', '310', '1020', '2.5', '87', 'None', '0', '0', '0', '0'), (794, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '151', '313', '4', '102', 'SNIST', 'Information Technology', '69.45', '100', '0'), (795, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '12', '750', '580', '1330', '3', '90', 'University of Pune', 'ExTC', '59', '100', '0'), (796, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '154', '148', '302', '3', '107', 'Jain University', 'EC', '69', '100', '0'), (797, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2013', '158', '151', '309', '3.5', '108', 'University of Mumbai', 'Electronics and Telecommuniations', '68.93', '100', '0'), (798, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2013', '158', '151', '309', '3.5', '108', 'University of Mumbai', 'Electronics and Telecommuniations', '68.93', '100', '0'), (799, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '152', '152', '304', '3', '83', 'VTU', 'Mechanical', '70', '100', '0'), (800, 'Northeastern University', '1', 'Admit', 'MS', 'Telecom management', 'Spring ', '2012', '760', '410', '1170', '4', '110', 'MU', '0', '0', '0', '0'), (801, 'Northeastern University', '1', 'Admit', 'MS', 'Human Computer Interaction', 'Fall ', '2011', '790', '470', '1260', '4', '109', 'University of Mumbai', 'computer engineering', '72', '100', '0'), (802, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '161', '141', '302', '3', '85', 'Pune University', 'electronics and telecommunication', '60', '5', '0'), (803, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '740', '460', '1200', '4', '110', 'VTU', 'CSE', '66.5', '100', '0'), (804, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '730', '540', '1270', '4', '98', 'MU', 'Computer', '63.2', '100', '0'), (805, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2013', '158', '146', '304', '4', '109', 'Pune University', 'Printing engineering', '67', '100', '0'), (806, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '580', '1370', '3', '83', 'Sinhgad College of Engineering', 'CS', '74', '100', '0'), (807, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '156', '152', '308', '3', '100', 'MU', 'Computer Engineering', '0', '100', '0'), (808, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '460', '1260', '3.5', 'None', 'MU', 'Computer Engineering', '72.12', '100', '0'), (809, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '710', '1510', '3.5', '112', 'MU', 'Computer Engg', '61.5', '100', '0'), (810, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '790', '420', '1210', '4.5', '108', 'Maharashtra Institute of Technology', 'Mechanical', '65.33', '100', '0'), (811, 'Northeastern University', '1', 'Admit', 'MS', 'Information Technology', 'Fall ', '2011', '740', '540', '1280', '3', '99', 'Rishiraj Institute of Technology Indore', 'Electronics and Communication', '67.72', '100', '0'), (812, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '162', '151', '313', '4.5', '108', 'Bangalore Institute of Technology', 'Computer Science', '72.6', '100', '0'), (813, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2012', '740', '570', '1310', '3', '101', 'Siddaganga Institue of Technology', 'Information Science and Engineering', '74.8', '100', '0'), (814, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '750', '600', '1350', '3.5', '110', 'MU', 'IT', '69', '100', '0'), (815, 'Northeastern University', '1', 'Admit', 'MS', 'Information Security', 'Fall ', '2013', '157', '150', '307', '3', '104', 'SSN College of Engineering', 'EEE', '69', '100', '0'), (816, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '147', '160', '307', 'None', '100', 'None', '0', '67', '100', '0'), (817, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2012', '157', '144', '301', '3', '91', 'VIT Pune', 'Instrumentation', '61', '100', '0'), (818, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Networking', 'Fall ', '2013', '166', '163', '329', '4', '109', 'D J Sanghvi', 'Electronics', '74.15', '100', '0'), (819, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '450', '1250', '4', '105', 'Fr. Conceicao Rodrigues College of Engineering', 'Computer Science', '64.04', '100', '0'), (820, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '157', '154', '311', '4.5', '115', 'Anna University', 'CSE', '80', '100', '0'), (821, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '159', '150', '309', '3.5', '108', 'None', '0', '67.36', '100', '0'), (822, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '166', '150', '316', '3', '100', 'MU', 'Electronics and Telecommunication', '68', '100', '0'), (823, 'Northeastern University', '1', 'Admit', 'MS', 'pharmacy', 'Fall ', '2011', '710', '410', '1120', '3', '7', 'Nirma Institute of Technology', 'Pharmacy', '8.1', '10', '0'), (824, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '158', '146', '304', '3.5', '90', 'SVNIT Surat', 'Electrical Engineering', '7.93', '10', '0'), (825, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'Pune University', '0', '0', '0', '0'), (826, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '157', '151', '308', '4', '102', 'MSRIT', 'Information Science', '8.52', '10', '0'), (827, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engg/Robotics', 'Fall ', '2013', '160', '147', '307', '3', '98', 'Pune University', 'Mechanical Engineering', '65', '100', '0'), (828, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '150', '313', '3', '97', 'None', '0', '0', '0', '0'), (829, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '800', '570', '1370', '4', '117', 'Osmania University', 'I.T.', '82.3', '100', '0'), (830, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '170', '155', '325', '3.5', '109', 'Maharaja Surajmal Institute of Technology', 'Information Technology', '79', '100', '0'), (831, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '167', '151', '318', '4', '117', 'Amrita Vishwa Vidhyapeetham', 'Computer Science', '7.2', '10', '36'), (832, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '161', '157', '318', '3', '101', 'VNR VJIET', 'Computer Science', '68.21', '100', '0'), (833, 'Northeastern University', '1', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (834, 'Northeastern University', '1', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '160', '157', '317', '3', '103', 'University of Pune', 'Mechanical Engineering', '60', '100', '0'), (835, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '152', '312', '3.5', '109', 'Gujarat Technological University', 'Computer Science', '7.8', '10', '0'), (836, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '740', '550', '1290', '4', '101', 'Gujarat Technological University', 'Computer Engineering', '3.97', '4', '0'), (837, 'Northeastern University', '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2015', '166', '145', '311', '3.5', '92', 'RGPV', 'IT', '74', '100', '44'), (838, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '156', '320', '3', '109', 'University of Pune', 'Computer Engineering', '59.9', '100', '0'), (839, 'Northeastern University', '1', 'Admit', 'MS', 'CS / MSIS / ITM', 'Fall ', '2012', '158', '153', '311', '3', '7', 'RGPV', 'IT', '64.4', '100', '0'), (840, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '350', '1150', '3', '91', 'UPTU', 'IT', '70.6', '100', '0'), (841, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '161', '329', '4', '114', 'Institute of Technical Education and Research', 'Computer Science', '9.1', '10', '0'), (842, 'Northeastern University', '1', 'Admit', 'MS', 'Management Information System', 'Fall ', '2013', '157', '150', '307', '4.5', '93', 'University of Mumbai', 'IT', '60', '100', '0'), (843, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '730', '550', '1280', '4', '104', 'MU', 'Computer Science', '67', '100', '0'), (844, 'Northeastern University', '1', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2013', '159', '152', '311', '3', '101', 'University of Mumbai', 'Computer', '66.5', '100', '0'), (845, 'Northeastern University', '1', 'Admit', 'MS', 'Information Security', 'Fall ', '2011', '670', '560', '1230', '3.5', '105', 'Pune University', 'computer engineering', '0', '100', '0'), (846, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '149', '311', '3.5', 'None', 'Manipal Institue of Technology', 'Computer Science', '7.97', '10', '24'), (847, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '163', '155', '318', '3', '105', 'University of Pune', 'Computer Science', '8', '10', '43'), (848, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '460', '1220', '3.5', '102', 'PSG College of Technology', 'Computer Science', '8.61', '10', '0'), (849, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '149', '312', '3', '105', 'University of Mumbai', 'Computer Engineering', '67.68', '100', '6'), (850, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '158', '147', '305', '3', '100', 'RNSIT', 'Electronics', '76', '100', '17'), (851, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '510', '1270', '3', '103', 'AISSMS College of Engineering Pune', 'Electronics', '64.91', '100', '0'), (852, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '161', '154', '315', '3.5', '101', 'Sardar Patel College of Engineering', 'Computers', '60.5', '100', '0'), (853, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2015', '159', '150', '309', '4', '110', 'VIT University', 'School of Mechanical and Building Sciences', '7.64', '10', '13'), (854, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2014', '159', '141', '300', '3', '90', 'Acharya Nagarjuna University', 'Electronics and communication', '71', '100', '0'), (855, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '147', '310', '3.5', '106', 'Sinhgad College of Engineering', 'Computer', '67.14', '100', '0'), (856, 'Northeastern University', '1', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2014', '166', '149', '315', '3.5', '108', 'SNIST', 'IT', '80.42', '100', '30'), (857, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '650', '1430', '4.5', '116', 'Pt. Ravishankar Shukla University', 'Computer Science & Engineering', '7.92', '10', '0'), (858, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '157', '154', '311', '3.5', '110', 'R V College of Engineering', 'Computer Science', '80', '100', '0'), (859, 'Northeastern University', '1', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (860, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '630', '1430', '3.5', '106', 'Bangalore Institute of Technology', 'Information Science', '70', '100', '0'), (861, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2014', '168', '152', '320', '3', '107', 'NIT Tirchy', 'EEE', '7.61', '10', '36'), (862, 'Northeastern University', '1', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '800', '540', '1340', '3.5', '105', 'PSG College of Technology', 'Electronics and Communications Engg.', '8.3', '10', '0'), (863, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '159', '148', '307', '2.5', '95', 'Osmania University', 'ece', '72', '100', '0'), (864, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2012', '710', '680', '1390', '3', '101', 'M M M Engineering College Gorakhpur', 'Electronics & Communication Engineering', '76', '100', '0'), (865, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '600', '1380', '3', '105', 'MU', 'Electronics and Telecommunication', '70', '100', '0'), (866, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '159', '321', '3', '104', 'U.P.Technical University', 'Information Technology', '68', '100', '0'), (867, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '150', '312', '3', '107', 'VTU', 'Computer Science', '73', '100', '0'), (868, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '710', '340', '1050', '3', '88', 'Gujarat Technological University', 'Information Technology', '71', '100', '0'), (869, 'Northeastern University', '1', 'Admit', 'MS', 'Management Information System', 'Fall', 'None', '156', '151', '307', '3.5', '94', 'Pune University', 'Computer', '0', '0', '0'), (870, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '420', '1220', '4', '108', 'MU', 'Computer Engineering', '74.6', '100', '0'), (871, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '700', '350', '1050', '3.5', '103', 'Pune University', 'IT', '0', '0', '0'), (872, 'Northeastern University', '1', 'Admit', 'MS', 'Management Information System', 'Fall ', '2013', '156', '151', '307', 'None', '94', 'Pune University', 'Computer', '0', '0', '0'), (873, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '750', '430', '1180', '3', '97', 'Thadomal Shahani Engineering College', 'Computer', '65', '100', '0'), (874, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '740', '420', '1160', '2.5', '89', 'MU', 'Electronics & Telecommunications', '58.06', '100', '0'), (875, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Spring ', '2013', '157', '143', '300', '3', '8', 'Anna University', 'CSE', '76', '100', '0'), (876, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall', 'None', '720', '580', '1300', '4', '105', 'None', 'Information technology', '71', '100', '0'), (877, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '164', '149', '313', '4', '90', 'M. N. M Jain Engineering College - Affiliated to Anna University', 'Mechanical', '8.28', '10', '0'), (878, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '158', '150', '308', '2.5', 'None', 'Panimalar Engineering College', 'Computer science', '74', '100', '0'), (879, 'Northeastern University', '1', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '800', '610', '1410', '3', '104', 'MU', 'Information Technology', '77', '100', '0'), (880, 'Northeastern University', '1', 'Admit', 'MS', 'MIS/CS', 'Spring ', '2013', '164', '146', '310', '3', '97', 'Amrita School of Engineering', 'EIE', '7.22', '10', '0'), (881, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '760', '620', '1380', '4', '116', 'MU', 'Information Technology', '66.71', '100', '0'), (882, 'Northeastern University', '1', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (883, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '680', '460', '1140', '3.5', '98', 'Pune University', 'Electronics', '57', '100', '0'), (884, 'Northeastern University', '1', 'Admit', 'MS', 'software engineering', 'Fall ', '2012', '690', '330', '1020', '3', '95', 'Pune University', 'Instrumentation & Contrl', '75.4', '100', '0'), (885, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '350', '1130', '3.5', '90', 'RGPV', 'CS', '77', '100', '0'), (886, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '162', '152', '314', '3', '83', 'VIT', 'ECE', '8.21', '10', '0'), (887, 'Northeastern University', '1', 'Admit', 'MS', 'Regulatory Affairs', 'Spring ', '2012', '620', '330', '950', '3', '91', 'JNTU', 'pharmacy', '0', '100', '0'), (888, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2014', '157', '155', '312', '3.5', '116', 'SRM', 'EEE', '7.9', '10', '0'), (889, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '700', '330', '1030', '3.5', '103', 'JNTU', 'Computer Science', '60', '100', '0'), (890, 'Northeastern University', '1', 'Admit', 'MS', 'Marketing Communication', 'Fall ', '2012', '760', '560', '1320', '3.5', '106', 'D J Sanghvi', 'Electronics', '60.7', '100', '0'), (891, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '165', '152', '317', '3', '107', 'DA-IICT', 'Information and Communication Technology', '7.15', '10', '12'), (892, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '800', '540', '1340', '3', '105', 'K J Somaiya College of Engiineering', 'Information Technology', '73', '100', '0'), (893, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2014', '169', '142', '311', '3.5', '97', 'VIT University', 'ECE', '8.65', '10', '0'), (894, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '139', '300', '3', '95', 'Guru Gobind Singh Indraprashta University', 'Information Technology', '75.28', '100', '0'), (895, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '160', '150', '310', '3.5', '98', 'MU', 'Instrumentation', '67', '100', '0'), (896, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (897, 'Northeastern University', '1', 'Admit', 'MS', 'Biotechnology', 'Fall ', '2011', '790', '590', '1380', '3', '102', 'Amity University', 'AIB', '8.2', '10', '0'), (898, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '156', '150', '306', '3.5', '116', 'CEG', 'Information Technology', '8.15', '10', '0'), (899, 'Northeastern University', '1', 'Admit', 'MS', 'pharmaceutics', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (900, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '165', '158', '323', '3.5', 'None', 'VJTI', 'IT', '7', '10', '0'), (901, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '158', '142', '300', '3', '89', 'K J Somaiya College of Engiineering', 'IT', '58', '100', '0'), (902, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '780', '520', '1300', '4.5', '102', 'Amrita School of Engineering', 'Electronics and Communication Engineering', '7.57', '10', '0'), (903, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '144', '168', '312', '3.5', '86', 'Tsinghua University', 'Automation', '3', '4', '0'), (904, 'Northeastern University', '1', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2011', '740', '530', '1270', '3', 'None', 'Military Institute of Science and TEchnology', 'Computer Science', '3.41', '4', '0'), (905, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2014', '161', '151', '312', '3.5', '109', 'Dharamsinh Desai University', 'Information Technology', '60.8', '100', '16'), (906, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '157', '161', '318', '3.5', '115', 'Punjabi University', 'Electronics and Communication', '70.6', '100', '0'), (907, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '740', '560', '1300', '4.5', '113', 'Pune University', 'Computer Engineering', '70.15', '100', '0'), (908, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '540', '1330', '3.5', '93', 'Pune University', 'Computer Engineering', '63', '100', '0'), (909, 'Northeastern University', '1', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '166', '161', '327', '3.5', '114', 'K J Somaiya College of Engiineering', 'Mechanical Engineering', '67', '100', '0'), (910, 'Northeastern University', '1', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '158', '145', '303', '3.5', '92', 'SASTRA', 'Mechatronics', '7.66', '10', '24'), (911, 'Northeastern University', '1', 'Admit', 'MS', 'CS', 'Spring ', '2014', '168', '156', '324', '3.5', 'None', 'ANITS', 'CSE', '7.6', '10', '0'), (912, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '147', '309', '3', '97', 'SASTRA', 'CS', '7.67', '10', '0'), (913, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '470', '1270', '3.5', '100', 'MU', 'I.T.', '61', '100', '0'), (914, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '490', '1260', '4', '105', 'Shri U. V. Patel College of Engineering Ganpat University', 'Computer Engineering', '73', '100', '0'), (915, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '160', '321', '4', 'None', 'MU', 'Computer Science', '61.3', '100', '0'), (916, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '730', '350', '1080', '3', '105', 'National Institute of Engineering Mysore', 'ECE', '81.4', '100', '0'), (917, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '550', '1340', '4', '103', 'Pune University', 'Computer Science', '70', '100', '0'), (918, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Spring ', '2014', '156', '149', '305', '4', '107', 'Osmania University', 'Mechanical', '61', '100', '0'), (919, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2013', '154', '142', '296', '3.5', '90', 'Gogte Institute of Technology', 'Mechanical Engineering', '67.79', '100', '0'), (920, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical and computer science', 'Fall ', '2011', '660', '420', '1080', '3', '91', 'Anna University', 'ECE', '77', '100', '0'), (921, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '160', '158', '318', '3.5', '94', 'MIT', '0', '6.4', '10', '60'), (922, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '157', '318', '3.5', '104', 'GGSIPU', 'CSE', '73.28', '100', '0'), (923, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '153', '313', '4.5', '111', 'University of Mumbai', 'Computer Engineering', '70.5', '100', '28'), (924, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '150', '308', 'None', 'None', 'PSG College of Technology', 'Computer Science', '7.97', '10', '0'), (925, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '154', '314', '3', '107', 'Gujarat Technological University', 'Computer Engineering', '81.61', '100', '0'), (926, 'Northeastern University', '1', 'Admit', 'MS', 'pharmacy', 'Fall ', '2011', 'None', 'None', '0', 'None', '99', 'None', '0', '0', '0', '0'), (927, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Spring ', '2013', '160', '144', '304', '3', '94', 'VTU', 'Electronics and Communication', '3.11', '4', '0'), (928, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '159', '151', '310', '3.5', '102', 'Uttarakhand Technical University', 'Computer Science', '64.9', '100', '48'), (929, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2014', '160', '144', '304', '2.5', '86', 'Anna University', 'ECE', '0', '0', '0'), (930, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '163', '146', '309', '3.5', '109', 'Sri Sairam Engineering College', 'Computer Science', '8', '10', '0'), (931, 'Northeastern University', '1', 'Admit', 'MS', 'CS / MSIS / ITM', 'Fall ', '2012', '750', '500', '1250', '4', '97', 'HKBKCE(VTU)', 'Computer Science', '65', '100', '0'), (932, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '740', '520', '1260', '3', '95', 'R V College of Engineering', 'CSE', '76', '100', '0'), (933, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '150', '310', '3', '103', 'MU', 'Computer Science', '62', '100', '0'), (934, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '760', '440', '1200', '3.5', '99', 'MU', 'Computers', '65', '100', '0'), (935, 'Northeastern University', '1', 'Admit', 'MS', 'Project Management', 'Fall ', '2014', '158', '148', '306', '3', '93', 'I.T.S. Engineering College- Gautam Buddha Tech University', 'Mechanical Engineering', '66.6', '100', '0'), (936, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '520', '1310', '4', '107', 'PESIT', 'Electronics and communication', '77.27', '100', '0'), (937, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2016', '164', '159', '323', '4', 'None', 'Pune University', 'Computer Engineering', '62', '100', '36'), (938, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '750', '520', '1270', '4', '109', 'West Bengal University Of Technology', 'Electrical Engineering', '8.6', '10', '0'), (939, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '750', '430', '1180', 'None', '106', 'MU', 'Electronics and TeleCommuincation', '72', '100', '0'), (940, 'Northeastern University', '1', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '157', '154', '311', '3', '100', 'VTU', 'Computer Science', '75.61', '100', '0'), (941, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '710', '600', '1310', '3', '97', 'VIT Pune', 'Computer Science', '65', '100', '0'), (942, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '750', '600', '1350', '4', '109', 'D J Sanghvi', 'IT', '68.9', '100', '0'), (943, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '410', '1160', '3.5', '102', 'Sri Ram Engineering College', 'Electronics and Communications', '62.5', '100', '0'), (944, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2010', '750', '510', '1260', '4.5', '109', 'COEP', 'Production', '7.53', '10', '0'), (945, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '800', '470', '1270', '4', '109', 'BITS Pilani', 'B.Pharm (Hons.)', '8.71', '10', '0'), (946, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '157', '150', '307', '3', '108', 'Madras Institute of Technology', 'ECE', '7.8', '10', '43'), (947, 'Northeastern University', '1', 'Admit', 'MS', 'pharmacy', 'Fall ', '2012', '760', '390', '1150', '3', '99', 'BITS Pilani', 'Pharmacy', '7.82', '10', '0'), (948, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '145', '305', '3', '95', 'CBIT', 'CSE', '78.4', '100', '12'), (949, 'Northeastern University', '1', 'Admit', 'MS', 'Aerospace Engineering', 'Fall', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (950, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '630', '1380', '4', '111', 'PICT', 'Computer Science', '3.25', '4', '0'), (951, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '550', '1350', '3', '97', 'Rajiv Gandhi Institute Of Technology', 'Computer Engineering', '65.92', '100', '0'), (952, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '151', '315', '3.5', '109', 'West Bengal University Of Technology', 'Computer Science and Engineering', '7.86', '10', '31'), (953, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '153', '315', '3', '109', 'Anna University', 'CSE', '9.09', '10', '0'), (954, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '162', '152', '314', '4.5', '112', 'PESIT', 'CSE', '78.5', '100', '15'), (955, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '157', '149', '306', '4', '106', 'VTU', 'ECE', '68.5', '100', '0'), (956, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '610', '1410', '4', '111', 'MU', 'EXTC', '70', '100', '0'), (957, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '150', '315', '3', '101', 'IPS Academy Indore [RGPV University Bhopal]', 'CSE', '75', '100', '0'), (958, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '158', '159', '317', '4', '114', 'VTU', 'ECE', '63', '100', '0'), (959, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '156', '141', '297', '2.5', '80', 'Amrita School of Engineering', 'Electrical And Electronics', '7.6', '10', '18'), (960, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '730', '1530', '4', '115', 'NIT Calicut', 'CSE', '7.88', '10', '0'), (961, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '730', '1530', 'None', 'None', 'NIT Calicut', 'CSE', '7.88', '10', '0'), (962, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2011', '700', '510', '1210', '4', '103', 'Goa University', 'Mechanical', '63', '100', '0'), (963, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '770', '380', '1150', '3.5', '100', 'Osmania University', 'CSE', '79', '100', '0'), (964, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '168', '153', '321', '4', '110', 'NIT Silchar', 'CSE', '8.35', '10', '0'), (965, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '159', '150', '309', '3', '104', 'MU', 'Computer', '71.2', '100', '0'), (966, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '740', '620', '1360', '4', 'None', 'Delhi College Of Engineeing', 'Information Technology', '71.32', '100', '0'), (967, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2012', '730', '570', '1300', '4', '106', 'D J Sanghvi', 'Biomedical', '0', '0', '0'), (968, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '167', '156', '323', '4', '110', 'MU', 'Electronics and Telecommunication', '67', '100', '0'), (969, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '360', '1130', '3.5', '101', 'BIT Mesra', 'Computer Science', '77.7', '100', '0'), (970, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '170', '162', '332', 'None', '116', 'Dhirubhai Ambani Institute of Information & Communication Technology', 'ICT', '7.32', '10', '0'), (971, 'Northeastern University', '1', 'Admit', 'MS', 'Biotechnology', 'Fall ', '2015', '154', '145', '299', '3.5', '106', 'University of Mumbai', 'Biotechnology', '66.5', '100', '0'), (972, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2012', '154', '143', '297', '4', '0', 'S.I.E.S GST (Mumbai University)', 'Electronics and Telecommunications', '57.5', '100', '0'), (973, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '780', '340', '1120', '3', '93', 'ITM Gurgaon', 'Computer Science Engineering', '72', '100', '0'), (974, 'Northeastern University', '1', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (975, 'Northeastern University', '1', 'Admit', 'MS', 'Information Security', 'Fall ', '2013', '167', '146', '313', '3.5', '104', 'RGTU', 'CS', '79', '100', '0'), (976, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '161', '329', '3.5', '113', 'Jaypee Institute of Information Technology', 'Computer Science & IT', '8.3', '10', '0'), (977, 'Northeastern University', '1', 'Admit', 'MS', 'Information Systems', 'Spring ', '2013', '159', '145', '304', '3.5', '95', 'University of Mumbai', 'Information Technology', '57', '100', '0'), (978, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '800', '530', '1330', '3.5', '104', 'Vidyalankar Institute of Technology', 'Computer Engineering', '58', '100', '0'), (979, 'Northeastern University', '1', 'Admit', 'MS', 'Project Management', 'Fall ', '2014', '145', '149', '294', '4', '102', 'MMCOE', 'Computer Engineering', '67', '100', '36'), (980, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '160', '159', '319', '4', 'None', 'MSIT', 'IT', '74', '100', '0'), (981, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '740', '600', '1340', '3.5', '103', 'JNTU', 'Computer science', '69', '100', '0'), (982, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '170', '151', '321', '4', '103', 'NITK Surathkal', 'EEE', '6.72', '10', '0'), (983, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '163', '150', '313', '4', '96', 'Institute of Technical Education and Research', 'Computer Science', '8.54', '10', '0'), (984, 'Northeastern University', '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (985, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '660', '1460', '4', '112', 'MU', 'Computer Engineering', '67.85', '100', '0'), (986, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '450', '1230', '5', '113', 'Amrita School of Engineering', 'Computer Science', '8.08', '10', '0'), (987, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2012', '800', '580', '1380', '3.5', '95', 'Manipal Institue of Technology', 'ECE', '6.93', '10', '0'), (988, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '161', '153', '314', 'None', 'None', 'UPTU', 'Computer Science', '75', '100', '0'), (989, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '163', '152', '315', '3.5', '100', 'SASTRA', 'Information Technology', '7.97', '10', '0'), (990, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '530', '1300', '3', 'None', 'CoE Trivandrum', 'Computer Science', '7.43', '10', '0'), (991, 'Northeastern University', '1', 'Admit', 'MS', 'CS/MIS', 'Fall ', '2014', '161', '145', '306', '3', '101', 'Pune University', 'Coputer Science', '58', '100', '36'), (992, 'Northeastern University', '1', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '156', '152', '308', 'None', '104', 'MU', 'Mechanical Engineering', '64', '100', '0'), (993, 'Northeastern University', '1', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Spring ', '2016', '156', '148', '304', '3.5', '100', 'Pune University', 'E&TC;', '63', '100', '24'), (994, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '156', '144', '300', '2.5', '99', 'COEP', 'Computer Engineering', '6', '10', '30'), (995, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '540', '1340', '3.5', '100', 'D J Sanghvi', 'Computer', '67', '100', '0'), (996, 'Northeastern University', '1', 'Admit', 'MS', 'Electronic and Telecommunication Engineering', 'Fall ', '2013', '156', '145', '301', '3.5', 'None', 'MU', 'electronics', '62.17', '100', '0'), (997, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '152', '315', '3.5', 'None', 'Pune University', 'Computer Engineering', '67.63', '100', '0'), (998, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2012', '780', '470', '1250', '4', '107', 'VIT Pune', 'EnTc', '8.55', '10', '0'), (999, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '1390', '620', '2010', '770', '104', 'MU', 'Computer Engineering', '68', '100', '0'), (1000, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Systems Engineering', 'Fall ', '2011', '690', '610', '1300', '4', '97', 'None', '0', '0', '0', '0'), (1001, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '770', '600', '1370', '4', '111', 'COEP', 'Information Techology', '7.74', '10', '0'), (1002, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Spring ', '2013', '161', '142', '303', '2.5', '102', 'Coimbatore Insitute of Technology', 'Information Technology', '8.39', '10', '0'), (1003, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '166', '164', '330', '3', '105', 'COEP', 'I.T.', '7.98', '10', '0'), (1004, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '157', '144', '301', '3', '85', 'MU', 'Information Technology', '65', '100', '44'), (1005, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2011', '750', '550', '1300', '3', '98', 'Kurukshetra University', 'Electronics & Instrumentation', '71', '100', '0'), (1006, 'Northeastern University', '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2012', '159', '149', '308', '4', '108', 'VNR VJIET', 'INFORMATION TECHNOLOGY', '75.85', '100', '0'), (1007, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2015', '157', '152', '309', '4', '106', 'MSRIT', 'Mechanical Engineering', '8.92', '10', '33'), (1008, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2012', '790', '640', '1430', '4', '113', 'MU', 'Computers', '76', '100', '0'), (1009, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '730', '370', '1100', '3', '95', 'VIT', 'Btech Biotechnology', '7.89', '10', '0'), (1010, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '158', '150', '308', '3', '100', 'Nirma Institute of Technology', 'Computer Engineering', '8.34', '10', '0'), (1011, 'Northeastern University', '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '710', '400', '1110', '3', '86', 'Nagpur/G.H Raisoni', 'Information Tech.', '0', '0', '0'), (1012, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '760', '600', '1360', '3.5', 'None', 'Shri Vaishnav Institute of Science and Technology Indore', 'Electronics and communication', '66.34', '100', '0'), (1013, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '167', '165', '332', '4', '118', 'MU', 'Computer Engineering', '67.6', '100', '0'), (1014, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '450', '1250', '3.5', '108', 'S.P.I.T.', 'Electronics', '74.4', '100', '0'), (1015, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '159', '325', '3', '108', 'KIIT', 'Electrical Engineering', '8.28', '10', '44'), (1016, 'Northeastern University', '1', 'Admit', 'MS', 'Information Security', 'Fall ', '2015', '150', '153', '303', 'None', '92', 'Sri Venkateswara College of Engineering', 'ECE', '68', '100', '29'), (1017, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2014', '153', '148', '301', '3.5', '106', 'Anna University', 'ECE', '7.77', '100', '0'), (1018, 'Northeastern University', '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '680', '480', '1160', '3.5', '99', 'MU', 'computer science', '69', '100', '0'), (1019, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2011', '750', '700', '1450', '4', '101', 'MSRIT', 'MECHANICAL', '8.25', '10', '0'), (1020, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '155', '319', '3.5', '105', 'NMIMS', 'Computer Science', '3.26', '4', '0'), (1021, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '156', '154', '310', '3', '105', 'Fr. Conceicao Rodrigues College of Engineering', 'Computer', '62', '100', '0'), (1022, 'Northeastern University', '1', 'Admit', 'MS', 'Mechanical Engineering', 'Spring ', '2014', '163', '149', '312', '4.5', '105', 'Kurukshetra University', 'Mechanical Engineering', '71.2', '100', '0'), (1023, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '161', '148', '309', '3.5', '102', 'St. vincent pallotti college iof engineering and technology', 'Computer Engineering', '70.23', '100', '0'), (1024, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '790', '560', '1350', '3', '94', 'BIT Durg', 'CSE', '7.75', '10', '0'), (1025, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Spring ', '2011', '680', '340', '1020', '3.5', '105', 'MU', 'Computer Engg', '62', '100', '0'), (1026, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '700', '420', '1120', '3', '96', 'VTU', 'Information Science', '71.5', '100', '0'), (1027, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '158', '153', '311', '3.5', '107', 'Anna University', 'ECE', '73', '100', '0'), (1028, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '162', '144', '306', '3', '85', 'BITS Goa', 'M.SC Economics+B.E.Computerscience', '0', '0', '48'), (1029, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '530', '1300', '3', '102', 'GITAM', 'IT', '8.09', '10', '0'), (1030, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '165', '149', '314', '3.5', '108', 'IPEC', 'IT', '67.4', '100', '0'), (1031, 'Northeastern University', '1', 'Admit', 'MS', 'pharmacy', 'Fall ', '2011', '640', '320', '960', '3.5', '102', 'Gujarat Technological University', 'pharmacy', '0', '0', '0'), (1032, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '151', '309', '3.5', '110', 'Rajagiri School of Engineering and Technology', 'IT', '80', '100', '48'), (1033, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '790', '560', '1350', '3', '94', 'BIT Durg', 'CSE', '7.75', '10', '0'), (1034, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '154', '149', '303', '3', '98', 'Nagpur University', '0', '57', '100', '0'), (1035, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '146', '305', '3.5', '98', 'VTU', 'Computer Science', '74', '100', '0'), (1036, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '750', '500', '1250', '4', '101', 'University of Mumbai', 'Computers', '66.2', '100', '0'), (1037, 'Northeastern University', '1', 'Admit', 'MS', 'CS MIS', 'Fall ', '2012', '168', '147', '315', '3.5', '91', 'VTU', 'Electronics & Communication', '67', '100', '0'), (1038, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '160', '153', '313', '4.5', '110', 'School of Engineering and Technology - Jain University Bangalore', 'Electronics and Communications', '76.14', '100', '6'), (1039, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '148', '310', '3', '94', 'JNTU', 'Computer Science', '63.6', '100', '0'), (1040, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '160', '324', '4', '103', 'Atharva College', 'Information Technology', '58.6', '100', '0'), (1041, 'Northeastern University', '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2015', '158', '147', '305', '3.5', '103', 'Kumaun University', 'IT', '79.3', '100', '0'), (1042, 'Northeastern University', '1', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '780', '420', '1200', '3.5', '94', 'Pune University', 'mechanical engineering', '61', '100', '0'), (1043, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '730', '580', '1310', '3.5', '101', 'P.V.P.P.C.O.E. (Mumbai University)', 'Information Technology (I.T.)', '70.2', '100', '0'), (1044, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '780', '520', '1300', '3.5', '107', 'MU', 'Production Engineering', '58', '100', '0'), (1045, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '156', '322', '3.5', '112', 'NIT Raipur', 'Information Technology', '8.34', '10', '0'), (1046, 'Northeastern University', '1', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (1047, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '160', '141', '301', '3.5', '95', 'SSN College of Engineering', 'ECE', '8.16', '10', '0'), (1048, 'Northeastern University', '1', 'Admit', 'MS', 'CS / MSIS / ITM', 'Fall ', '2015', '157', '154', '311', '3', '108', 'VIT Mumbai University', 'Computer Engineering', '58.33', '100', '36'), (1049, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Spring ', '2013', '160', '140', '300', '3', '91', 'University of Mumbai', 'EXTC', '64', '100', '36'), (1050, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '158', '153', '311', '3', '96', 'Pune University', 'Computer Science', '74.5', '100', '0'), (1051, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2012', '158', '150', '308', '4.5', '101', 'MU', 'Electronics', '58.23', '4', '0'), (1052, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '146', '306', '3.5', 'None', 'Vishwakarma Institute of Technology', 'Computer', '8.7', '10', '0'), (1053, 'Northeastern University', '1', 'Admit', 'MS', 'Information Systems', 'Spring ', '2012', '800', '340', '1140', '3.5', '105', 'PICT', 'Information Technology', '61', '100', '0'), (1054, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '430', '1230', '4', '110', 'Pune University', 'Computer', '69', '100', '0'), (1055, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Spring ', '2012', '770', '360', '1130', '3', '95', 'None', 'EXTC', '61.5', '100', '0'), (1056, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '154', '162', '316', '4.5', '113', 'Walchand College Of Engineering', 'CSE', '8.06', '10', '16'), (1057, 'Northeastern University', '1', 'Admit', 'MS', 'CS', 'Fall ', '2012', '740', '630', '1370', '3', '102', 'Vardhaman', 'IT', '67.3', '100', '0'), (1058, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '750', '450', '1200', '3', '96', 'VTU', 'CS', '75', '100', '0'), (1059, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '164', '151', '315', '3', '109', 'R.G.P.V.', 'EC', '75.6', '100', '20'), (1060, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '157', '321', '4', 'None', 'Pune University', 'Computer Engineering', '71', '100', '0'), (1061, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '350', '1150', '3.5', '104', 'Madras Institute of Technology', 'Computer Science', '8', '10', '0'), (1062, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2006', '790', '540', '1330', '5.5', '277', 'K J Somaiya College of Engiineering', 'Mechanical Engineering', '73.14', '100', '0'), (1063, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '163', '152', '315', '4', '107', 'SSN College of Engineering', 'CSE', '72', '100', '0'), (1064, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '165', '149', '314', '3', '101', 'VTU', 'Computer Science', '75', '100', '0'), (1065, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2011', '790', '490', '1280', '4', '115', 'Goa University', 'Electronics and Telcommunication', '4', '100', '0'), (1066, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '720', '590', '1310', '3', '97', 'University of Mumbai', 'Information Technology', '75.73', '100', '0'), (1067, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '720', '470', '1190', '3.5', '94', 'K J Somaiya College of Engiineering', 'IT', '61', '100', '0'), (1068, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '161', '151', '312', '3', '101', "Vidyavardhini's COE & Tech", 'IT', '71.12', '100', '0'), (1069, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '155', '143', '298', '3', '96', 'VIT University', 'COMPUTER SCIENCE', '8.38', '10', '0'), (1070, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '159', '157', '316', '4', '110', 'Sardar Patel College of Engineering', 'Computer', '73.4', '100', '30'), (1071, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '165', '152', '317', '3', '101', 'BPUT', 'EEE', '8.57', '10', '0'), (1072, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '160', '152', '312', '4', '112', 'DDIT', 'Computer Engineering', '7.21', '10', '12'), (1073, 'Northeastern University', '1', 'Admit', 'MS', 'CS', 'Fall ', '2014', '161', '156', '317', '3.5', '99', 'Sinhgad College of Engineering', 'Computer Engineering', '63.17', '100', '0'), (1074, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '700', '440', '1140', '3.5', '99', 'R V College of Engineering', 'ISE', '8.56', '10', '0'), (1075, 'Northeastern University', '1', 'Admit', 'MS', 'Applied Mathematics', 'Fall ', '2011', '800', '550', '1350', '4', '96', 'University of Mumbai', 'Computer Engineering', '54', '100', '0'), (1076, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '154', '315', '3.5', '106', 'Maharishi Dayanand University', 'ECE', '70', '100', '0'), (1077, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '720', '570', '1290', '3.5', '116', 'MU', 'Computer Science', '78.04', '100', '0'), (1078, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2010', '790', '370', '1160', '3.5', '87', 'Sri Sairam Engineering College', 'ECE', '76', '100', '0'), (1079, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '159', '156', '315', '3.5', '110', 'Pune University', 'Computer', '67', '100', '0'), (1080, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '790', '490', '1280', '4', '247', 'MREC', 'CS', '79', '100', '0'), (1081, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '160', '147', '307', '3.5', '104', 'MU', 'Information Technology', '58.36', '100', '0'), (1082, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '780', '660', '1440', '4', '283', 'MU', 'Computers', '62', '100', '0'), (1083, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '156', '154', '310', '3.5', '113', 'VTU', 'ISE', '74.66', '100', '0'), (1084, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '163', '158', '321', 'None', '110', 'NIT Hamirpur', 'Electronics & Communication Engg.', '9', '10', '0'), (1085, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '730', '370', '1100', '3', '106', 'LNCT', 'EC', '0', '0', '0'), (1086, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2012', '790', '580', '1370', '3.5', 'None', 'Amity University', 'ECE', '7.01', '10', '0'), (1087, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '160', '319', '3.5', '108', 'University of Mumbai', 'Computer Engineering', '64', '100', '0'), (1088, 'Northeastern University', '1', 'Admit', 'MS', 'MEM', 'Fall ', '2014', '159', '143', '302', '3', 'None', 'Sri Venkateswara College of Engineering', 'Electrical and Electronics', '6.7', '10', '0'), (1089, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2012', '750', '530', '1280', '3.5', '113', 'Amity University', 'Electronics & Communication', '7', '10', '0'), (1090, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '780', '410', '1190', '3.5', '110', 'NMIMS', 'Electronics', '3.2', '4', '0'), (1091, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '148', '309', '3.5', '107', 'Banasthali University', 'Information Technology', '79.2', '100', '0'), (1092, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '710', '320', '1030', '3.5', '85', 'Punjab Technical University', 'CSE', '75', '100', '0'), (1093, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2011', '770', '380', '1150', '3.5', '92', 'MU', 'Computer', '65', '100', '0'), (1094, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '162', '148', '310', '3', '99', 'Guru Gobind Singh Indraprashta University', 'Electronics and Communication Engineering', '69', '100', '15'), (1095, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '149', '311', '4', '99', 'SNDT', 'I.T', '3.73', '4', '24'), (1096, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '158', '157', '315', '3.5', '114', 'VTU', 'Information Science', '68', '100', '0'), (1097, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '750', '460', '1210', '4', '92', 'MU', 'IT', '68', '100', '0'), (1098, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '164', '157', '321', '4.5', '113', 'Dr. Babasaheb Ambedkar Technological University Lonere', 'Chemical Engineering', '8.49', '10', '0'), (1099, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '164', '150', '314', '3.5', '105', 'Galgotias College Of Engineering And Technology', 'Electronics and Communication', '69', '100', '0'), (1100, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '161', '153', '314', '3', '99', 'Jaypee Institute of Information Technology', 'Department of Computer Science and ICT', '77', '100', '24'), (1101, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '780', '650', '1430', '4', '111', 'VESIT', 'EXTC', '0', '0', '0'), (1102, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2012', '156', '149', '305', '3.5', '99', 'SASTRA', 'Information Technology', '7.47', '10', '0'), (1103, 'Northeastern University', '1', 'Admit', 'MS', 'Construction Management', 'Fall ', '2014', '157', '149', '306', 'None', '102', 'NCET Bangalore', 'Civil Engineering', '65', '100', '0'), (1104, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '167', '144', '311', '3.5', '93', 'Amrita School of Engineering', 'Computer Science and Engineering', '8.16', '10', '0'), (1105, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '144', '308', '3', '101', 'G.H Patel colg of Engg. Sardar Patel University', 'Information Technology', '8.88', '10', '0'), (1106, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall', 'None', '156', '144', '300', '3', '91', 'Rajasthan Technical University', 'computer science', '3.3', '4', '24'), (1107, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '166', '158', '324', '3', '102', 'KIIT', 'Electrical', '8.2', '10', '0'), (1108, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '162', '152', '314', '3', '104', 'University of Mumbai', 'Electronics and Telecommunication', '58.8', '100', '0'), (1109, 'Northeastern University', '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2013', 'None', 'None', '0', '3.5', '101', 'MU', 'Computer engineering', '64', '100', '36'), (1110, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '50', '31', '81', '3.5', '100', 'None', '0', '3.14', '4', '0'), (1111, 'Northeastern University', '1', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2014', '164', '153', '317', '3.5', '106', 'GGSIPU', 'Computer Science', '76', '100', '0'), (1112, 'Northeastern University', '1', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '157', '143', '300', '3.5', 'None', 'UPTU', 'CS&E;', '64', '100', '54'), (1113, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '161', '155', '316', 'None', '113', 'MU', 'Computer Engineering', '60', '100', '0'), (1114, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '151', '151', '302', '3.5', '108', 'VTU', 'Computer Science and Engineering', '68.8', '100', '0'), (1115, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2006', '780', '680', '1460', '4.5', '290', 'MU', 'Computer Engg', '59', '100', '0'), (1116, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '630', '590', '1220', 'None', 'None', 'Thiagarajar College of engineering', 'ECE', '7.9', '10', '0'), (1117, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '161', '152', '313', '4', '109', 'JNTU', 'CS', '71', '100', '0'), (1118, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '161', '153', '314', '3.5', '117', 'Pune University', 'Computer Science', '55', '100', '0'), (1119, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '167', '144', '311', '4', '111', 'Rajiv Gandhi Technical University', 'Electronics and Communication', '73.8', '100', '0'), (1120, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall', 'None', '166', '155', '321', 'None', '103', 'Amrita School of Engineering', 'Electronics and Instrumentation Engineering', '8.75', '10', '0'), (1121, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '156', '152', '308', '4.5', '107', 'University of Pune', 'Information technology', '7.77', '10', '0'), (1122, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '161', '154', '315', '3.5', '111', 'Gogte Institute of Technology', 'Electronics & Communication', '77', '100', '0'), (1123, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '159', '142', '301', '3', '93', 'Ramrao Adik Institute of Technology', 'Information Technology', '3.2', '4', '54'), (1124, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '520', '1320', '3.5', '94', 'Sona College', 'Information Technology', '80', '100', '0'), (1125, 'Northeastern University', '1', 'Admit', 'MS', 'Information Science', 'Fall ', '2013', '163', '147', '310', '3.5', '101', 'VIT', 'electronics and communication', '3.68', '4', '0'), (1126, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (1127, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '165', '157', '322', '4', '111', 'Cochin University of Science and Technology', 'Computer Science', '67', '100', '76'), (1128, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '158', '146', '304', '4', '101', 'Malnad College Of Engineering', 'CS and E', '79.91', '100', '0'), (1129, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '170', '155', '325', '3.5', 'None', 'BESU Shibpur', 'Computer Science and Technology', '87', '100', '0'), (1130, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '149', '307', '3.5', '103', 'VTU', 'CS', '74.3', '100', '0'), (1131, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '152', '315', '3.5', '108', 'NIT Kurukshetra', 'computer engineering', '8.8', '10', '18'), (1132, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '166', '162', '328', '4', '115', 'BIT Mesra', 'Computer Science', '7.31', '100', '34'), (1133, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '168', '158', '326', '4', '119', 'University of Pune', 'InformationTechnology', '62', '100', '0'), (1134, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '167', '150', '317', '3.5', '97', 'GGSIPU', 'Information Technology', '76.34', '100', '0'), (1135, 'Northeastern University', '1', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2011', '700', '500', '1200', '3.5', '110', 'Dr D Y Patil University', '0', '0', '0', '0'), (1136, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '800', '650', '1450', '4.5', '300', 'MU', 'Comp Engg', '62', '100', '0'), (1137, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '570', '1360', '3', '108', 'St Martins engineering college', 'CSE', '72', '100', '0'), (1138, 'Northeastern University', '1', 'Admit', 'MS', 'Bioinformatics', 'Fall', 'None', 'None', 'None', '0', '3', 'None', 'IIT BHU', 'Biomedical Engineering', '7.83', '10', '0'), (1139, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '158', '152', '310', '3', '101', 'JNTU', 'CSE', '76.4', '100', '19'), (1140, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '162', '147', '309', '3.5', '97', 'Vasavi College of Engineering', 'Computer Science', '91', '100', '0'), (1141, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '167', '152', '319', '4', 'None', 'VTU', 'CSE', '81.5', '100', '0'), (1142, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '164', '155', '319', '4.5', '102', 'Amrita School of Engineering', 'Computer Science and Engineering', '7.7', '10', '0'), (1143, 'Northeastern University', '1', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2015', '161', '147', '308', '3', '96', 'Gayatri Vidya Parishad College of Engineering', 'computer science and engineering', '74.7', '100', '0'), (1144, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '160', '155', '315', '3.5', '106', 'M.V.S.R Engineering College', 'Electronics and Communication', '78.5', '100', '0'), (1145, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '149', '310', '3', '101', 'mgit', 'it', '77.2', '100', '0'), (1146, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '145', '308', '3', 'None', 'PVP Siddhartha Inst. of Tech', 'CSE', '74.41', '100', '0'), (1147, 'Northeastern University', '1', 'Admit', 'MS', 'Biotechnology', 'Fall ', '2014', '150', '153', '303', '2.5', 'None', 'JNTU', 'b.pharmacy', '70.1', '100', '0'), (1148, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '750', '410', '1160', '3.5', '92', 'Madras Institute of Technology', 'IT', '7.8', '10', '0'), (1149, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '740', '480', '1220', '3', '100', 'University of Mumbai', 'Electronics and Telecommunication', '63', '100', '0'), (1150, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall', 'None', '164', '149', '313', '3.5', '103', 'CBIT', 'ECE', '83', '100', '0'), (1151, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '159', '144', '303', '3.5', '90', 'Coimbatore Insitute of Technology', 'Information Technology', '8.29', '10', '0'), (1152, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '530', '1330', '4', '109', 'GITAM', 'CSE', '8.97', '10', '0'), (1153, 'Northeastern University', '1', 'Admit', 'MS', 'Biotechnology/bio-engineering', 'Fall ', '2013', '148', '144', '292', '3', '100', 'Osmania University', 'biotechnology', '78', '100', '0'), (1154, 'Northeastern University', '1', 'Admit', 'MS', 'pharmaceutics', 'Fall ', '2012', '740', '480', '1220', '3.5', '97', 'BITS Pilani', 'Pharmacy and health sciences', '8.26', '10', '0'), (1155, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '520', '1300', '3.5', '114', 'None', 'Computer Science', '76', '100', '0'), (1156, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '156', '142', '298', '2.5', '98', 'UPTU', 'Computer Science & Tech', '8', '10', '0'), (1157, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '800', '300', '1100', '3', 'None', 'Sreenidhi Institute of Science & Technology', 'EEE', '73.2', '100', '0'), (1158, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '670', '1470', '4', '113', 'D J Sanghvi', 'Computers', '65.5', '100', '0'), (1159, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '156', '144', '300', '3', '88', "St Joseph's College of Engineering", 'Electrical and Electronics Engineering', '72', '100', '0'), (1160, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Networking', 'Fall ', '2013', '161', '156', '317', '4', '105', 'Kerala University', 'Information Technology', '3.98', '4', '0'), (1161, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '152', '144', '296', '3.5', '95', 'NIT Warangal', 'Computer Science', '8.4', '10', '0'), (1162, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '159', '319', '4', '115', 'NIT Raipur', 'IT', '8.43', '10', '0'), (1163, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '164', '148', '312', '4', '112', 'Anna University', 'EE', '7.36', '10', '0'), (1164, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '730', '510', '1240', '4', '104', "SLC's institute of Engg and Tech affiliated to JNTU", 'CSE', '72', '100', '0'), (1165, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '145', '304', '4', '105', 'Lakshmi Narain College of Technology', 'Information Technology', '77.8', '100', '0'), (1166, 'Northeastern University', '1', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Spring ', '2012', '800', '550', '1350', '3.5', '99', 'VIT', 'Information Technology', '7.9', '10', '0'), (1167, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '158', '144', '302', 'None', '98', 'West Bengal University Of Technology', 'Electronics & Instrumentation', '8.25', '10', '0'), (1168, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '155', '145', '300', '3', '100', 'Amrita Vishwa Vidhyapeetham', 'Computer Science', '8.05', '10', '67'), (1169, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2014', '163', '151', '314', '3.5', '109', 'JNTU', 'Mechanical', '63.4', '100', '0'), (1170, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '800', '430', '1230', '4', '84', 'None', 'Mathematics', '76', '100', '0'), (1171, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '620', '1410', '4', '110', 'D J Sanghvi', 'EXTC', '73', '100', '0'), (1172, 'Northeastern University', '1', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '155', '149', '304', '3.5', '96', 'University of Calicut', 'Computer Science', '64.5', '100', '0'), (1173, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '163', '156', '319', '3', '105', 'Nagpur University', 'B.E electronics', '61', '100', '0'), (1174, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2013', '156', '152', '308', '4', '109', 'NIT Tirchy', 'Chemical Engineering', '6.2', '10', '0'), (1175, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Spring ', '2012', '710', '440', '1150', 'None', '97', 'LNCT', 'Electical and electronics', '74', '100', '0'), (1176, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '161', '152', '313', '3.5', '104', 'VESIT', 'Computer Engineering', '73.55', '100', '31'), (1177, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '147', '306', '3.5', '104', 'Coimbatore Insitute of Technology', 'M. Sc. Software Engineering(5 Year Integrated Course)', '74.11', '100', '0'), (1178, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall', 'None', '760', '450', '1210', '3', '92', 'BITS Dubai', 'Electronics and Communication Engg', '6.91', '10', '0'), (1179, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '147', '168', '315', '3.5', '103', 'GNDU', 'CSE', '74', '100', '7'), (1180, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '155', '316', '4', '113', 'Atharva College', 'Information Technology', '64.13', '100', '0'), (1181, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '800', '430', '1230', '3', '103', 'Sri Venkateswara College of Engineering', 'EEE', '68', '100', '0'), (1182, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '162', '153', '315', '3.5', '106', 'University of Pune', 'IT', '69', '100', '0'), (1183, 'Northeastern University', '1', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '163', '149', '312', '3.5', '104', 'PICT', 'Mechanical', '60', '100', '0'), (1184, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '148', '307', '3.5', '97', 'PICT', 'IT', '3.78', '4', '0'), (1185, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '510', '1310', '4', '105', 'NIT RKL', 'CSE', '8.51', '10', '0'), (1186, 'Northeastern University', '1', 'Admit', 'MS', 'MIS/MS CS', 'Fall ', '2013', '161', '160', '321', '4', '118', 'CEG', 'IT', '7.6', '10', '0'), (1187, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '550', '1350', '3.5', '111', 'NIT Silchar', 'Computer Science and Engineering', '8.17', '10', '0'), (1188, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '460', '1260', '3.5', '99', 'Fr. Conceicao Rodrigues College of Engineering', 'Computer Science', '65.73', '100', '0'), (1189, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '170', '147', '317', '3.5', '105', 'YMCA', 'Information Technology', '8.81', '10', '24'), (1190, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '570', '1320', '4', '106', 'K J Somaiya College of Engiineering', 'IT', '0', '0', '0'), (1191, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '152', '142', '294', '3', '98', 'MU', 'Information Technology', '67', '100', '0'), (1192, 'Northeastern University', '1', 'Admit', 'MS', 'Cell and Molecular Biology', 'Fall ', '2012', '156', '158', '314', '3.5', '101', 'D Y Patil College of Engineering', 'Biotechnology', '68', '100', '0'), (1193, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '760', '600', '1360', '4', '104', 'JNTU', 'cs', '72', '100', '0'), (1194, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '770', '770', '1540', '3.5', '280', 'VTU', 'Computer Science', '78', '100', '0'), (1195, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '650', '1420', '4', '109', 'MU', 'Computer Engineering', '68.57', '100', '0'), (1196, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '168', '150', '318', '3', '102', 'VIT University', 'Mechanical Engineering', '7.47', '10', '0'), (1197, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2012', '750', '390', '1140', '3', '99', 'None', '0', '0', '0', '0'), (1198, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '480', '1260', '3.5', '100', 'Sinhgad College of Engineering', 'Information Technology', '72', '100', '0'), (1199, 'Northeastern University', '1', 'Admit', 'MS', 'Civil Engineering', 'Spring ', '2013', '170', '154', '324', '3.5', '96', 'IIT Bombay', 'Civil Engineering', '7.37', '10', '0'), (1200, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '800', '460', '1260', '4', '247', 'Sardar Patel College of Engineering', 'Information Technology', '67.86', '100', '0'), (1201, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '168', '149', '317', '3', '104', 'PICT', 'Computer Engg', '3.6', '4', '0'), (1202, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '156', '151', '307', '3.5', '105', 'VTU', 'CSE', '67', '100', '0'), (1203, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '156', '150', '306', '3', '105', 'Punjab Technical University', 'Computer Science', '72.5', '100', '0'), (1204, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '550', '1350', '4', '107', 'MU', 'EXTC', '71', '100', '0'), (1205, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '155', '151', '306', '3', '105', 'UPTU', 'electronics and Communication', '7.62', '10', '0'), (1206, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '161', '159', '320', '3.5', '110', 'University of Pune', 'Electronics', '64', '100', '0'), (1207, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '580', '1380', '2.5', '101', 'Kakatiya University', 'ece', '70.1', '100', '0'), (1208, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2012', '163', '147', '310', '3.5', '106', 'U.P.T.U.', 'ECE', '73.3', '100', '0'), (1209, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '310', '1110', '3', '95', 'University of Mumbai', 'Computer', '64.3', '100', '0'), (1210, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '760', '520', '1280', '4', '102', 'MU', 'Information Technology', '62', '100', '0'), (1211, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '161', '152', '313', '3.5', 'None', 'MU', 'ExTC', '62', '100', '31'), (1212, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '790', '490', '1280', '4', '109', 'MU', 'Information Technology', '67', '100', '33'), (1213, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2012', '157', '146', '303', '3.5', '99', 'MU', 'Mechanical engineering', '57', '100', '0'), (1214, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '540', '1340', '3', '110', 'UPTU', 'Computer Science and Engineering', '70', '100', '0'), (1215, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '163', '159', '322', '3', '108', 'MU', 'Information Technology', '66', '100', '0'), (1216, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '760', '670', '1430', '4', '116', 'SSN College of Engineering', 'Information Technology', '71', '100', '0'), (1217, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '164', '156', '320', '4', '108', 'VTU', 'Telecommunication Engg', '70', '100', '0'), (1218, 'Northeastern University', '1', 'Admit', 'MS', 'Information Science', 'Fall ', '2011', '770', '470', '1240', '3', '102', 'Sir MVIT', 'Information Science', '75.89', '100', '0'), (1219, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '162', '149', '311', '4', '112', 'UPTU', 'Information Technology', '75.1', '100', '0'), (1220, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '780', '610', '1390', '4.5', '297', 'G.G.S.I.P. U', 'Computer Science', '82', '100', '0'), (1221, 'Northeastern University', '1', 'Admit', 'MS', 'Biotechnology', 'Fall ', '2012', '680', '600', '1280', '4', '108', 'Bharati Vidyapeeth', 'Pharmacy', '71', '100', '0'), (1222, 'Northeastern University', '1', 'Admit', 'MS', 'Chemical Engineering', 'Fall ', '2012', '790', '730', '1520', '5', 'None', 'VTU', 'Biotechnology', '79', '100', '0'), (1223, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '155', '146', '301', 'None', '97', 'MU', 'Electronics', '55', '100', '0'), (1224, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '760', '330', '1090', '3', '91', 'Fr.CRCE', 'Computer Engineering', '70.42', '100', '0'), (1225, 'Northeastern University', '1', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '161', '144', '305', '3', '89', 'MU', 'Mechanical', '65.66', '100', '24'), (1226, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '620', '1390', '4', '98', 'D J Sanghvi', 'IT', '66.58', '100', '0'), (1227, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '153', '315', '2.5', '106', 'Jaypee Institute of Information Technology', 'Computer Science & Engineer', '6.8', '10', '0'), (1228, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '170', '160', '330', '4', '112', 'Dr MGR College', 'Computer Science', '8.4', '10', '0'), (1229, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '158', '145', '303', '3.5', '100', 'MU', 'Computer', '70', '100', '0'), (1230, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '700', '640', '1340', '2.5', '103', 'J.B. Institute of Engg & Tech(Affliated to JNTU)', 'Computer Science', '74.9', '100', '0'), (1231, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '660', '410', '1070', '3', '97', 'Sir MVIT', 'CS', '68.32', '100', '0'), (1232, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '800', '350', '1150', '3.5', 'None', 'JNTU', 'electronics and Instrumentation', '0', '0', '0'), (1233, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '169', '148', '317', '3.5', '109', 'Dharamsinh Desai University', 'Information Technology', '8.31', '10', '11'), (1234, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '150', '310', '3', '104', 'Dr.BAMU Aurangabad/MIT Aurangabad', 'Computer Science and Engineering', '63.98', '100', '0'), (1235, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '159', '153', '312', '3.5', '98', 'Sri Venkateswara College of Engineering', 'Computer Science', '6.59', '10', '0'), (1236, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '141', '300', '3', '94', 'Atharva College', 'COMPUTER ENGINEERING', '3.71', '4', '0'), (1237, 'Northeastern University', '1', 'Admit', 'MS', 'Finance', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'Iowa State University', 'Economics and Finance', '3.22', '4', '0'), (1238, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '162', '152', '314', '3.5', '103', 'Anna University', 'Electrical And Electronics Engineering', '7.96', '10', '0'), (1239, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '610', '1400', '3.5', '107', 'VTU', 'Computer Science', '74.3', '100', '0'), (1240, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '720', '460', '1180', '2.5', '84', 'RCET bhilai', 'electrical', '7.2', '100', '0'), (1241, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '163', '147', '310', '3.5', '110', 'Amrita Vishwa Vidhyapeetham', 'Electrical and Electronics Engineering', '8.1', '10', '11'), (1242, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '139', '301', '3', '96', 'JNTU', 'ECE', '71.35', '100', '0'), (1243, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical and computer engineering electrical engineering telecommunications engineering', 'Fall ', '2013', '164', '156', '320', '3', '109', 'Amrita School of Engineering', 'EIE(elec & instrumentation)', '7.36', '10', '0'), (1244, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '146', '306', '4', 'None', 'Don Bosco Institute of Technology', 'Infortmation Technology', '65', '100', '0'), (1245, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '800', '750', '1550', '5', '290', 'SPCE', 'CE', '63', '100', '0'), (1246, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '165', '141', '306', '4', '104', 'SSN College of Engineering', 'ECE', '85', '100', '0'), (1247, 'Northeastern University', '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2015', '157', '145', '302', '3', '97', 'ASIET', 'IT', '70.6', '100', '42'), (1248, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '157', '319', '3.5', '106', 'RGMCET', 'COMPUTER SCIENCE', '69', '100', '0'), (1249, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '155', '319', '4.5', '108', 'Anna University', 'CSE', '9.26', '10', '10'), (1250, 'Northeastern University', '1', 'Admit', 'MS', 'medicinal chemistry', 'Fall ', '2014', '155', '158', '313', '4', '113', 'MU', 'Pharmacy', '57.5', '100', '24'), (1251, 'Northeastern University', '1', 'Admit', 'MS', 'Management Information System', 'Fall ', '2015', '155', '150', '305', '3.5', '111', 'Anna University', 'Chemical Engg', '9', '10', '36'), (1252, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '159', '150', '309', '3', '105', 'None', '0', '0', '0', '0'), (1253, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2007', '700', '550', '1250', 'None', 'None', 'None', '0', '0', '0', '0'), (1254, 'Northeastern University', '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2012', '780', '630', '1410', '4.5', '99', 'MU', 'computers', '59', '100', '0'), (1255, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '155', '146', '301', '3.5', 'None', 'VTU', 'Information Science', '70.5', '100', '0'), (1256, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics & Communication', 'Fall ', '2015', '154', '145', '299', '3.5', '102', 'Kurukshetra University', 'Electronics and Communication', '68', '100', '0'), (1257, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '630', '1410', '4', '107', 'MU', 'E & TC', '66', '100', '0'), (1258, 'Northeastern University', '1', 'Admit', 'MS', 'MIS-management related courses', 'Fall ', '2012', '157', '151', '308', '4', '102', 'MU', 'Computer Engineering', '64', '100', '0'), (1259, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2014', '161', '150', '311', '3', '111', 'COEP', 'Mechanical', '6.4', '10', '0'), (1260, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2012', '690', '630', '1320', '2.5', '89', 'MIT Pune', 'Mechanical Sandwich', '61.53', '100', '0'), (1261, 'Northeastern University', '1', 'Admit', 'MS', 'Information Assurance', 'Fall ', '2015', '151', '154', '305', '4', '96', 'Anna University', 'ECE', '7.18', '10', '29'), (1262, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '164', '146', '310', '3.5', '101', 'GTU', 'Computer Enginnering', '7.77', '10', '0'), (1263, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '720', '1520', '4.5', '114', 'MU', 'Computers', '69.12', '100', '0'), (1264, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '154', '316', '3', '109', 'Sri Venkateswara College of Engineering', 'Computer Science Engineering', '7.7', '10', '0'), (1265, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '160', '150', '310', '3.5', 'None', 'Velammal Engineering College', 'EEE', '8.62', '10', '0'), (1266, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '147', '310', '3.5', '111', 'Guru Gobind Singh Indraprashta University', 'Computer Science', '73', '100', '0'), (1267, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2013', '153', '137', '290', '3', '81', 'MU', 'Electronics and telecommunicatio', '69.04', '100', '0'), (1268, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '730', '520', '1250', '3.5', '105', 'University of Pune', 'Information Technology', '64', '100', '0'), (1269, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '151', '310', '4', '105', 'UPTU', 'Computer Science', '3.2', '4', '0'), (1270, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '160', '148', '308', '3.5', '105', 'Anna University', 'Mechanical Engineering', '6.7', '10', '0'), (1271, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '740', '450', '1190', '3', 'None', 'MU', 'Electronics and Telecommunications', '70', '100', '27'), (1272, 'Northeastern University', '1', 'Admit', 'MS', 'CS / MSIS / ITM', 'Fall ', '2014', '164', '155', '319', '3.5', '105', 'SMVDU Jammu', 'CSE', '8.73', '10', '39'), (1273, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '162', '148', '310', 'None', '308', 'MU', 'Information technology', '66', '100', '0'), (1274, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '154', '317', '3.5', 'None', 'Model Engineering College', 'Computer Science', '74', '100', '36'), (1275, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '165', '156', '321', '3.5', '108', 'BMSCE', 'Computer Science', '9.26', '10', '0'), (1276, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '780', '420', '1200', '3.5', '91', 'COEP', 'Material Science', '6.46', '10', '0'), (1277, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '530', '1330', '3', '101', 'B M S College of Engineering', 'Electronics and Communications', '77', '100', '0'), (1278, 'Northeastern University', '1', 'Admit', 'MS', 'Management Information System', 'Fall ', '2014', '155', '154', '309', '3', '105', 'Sri Venkateswara College of Engineering', 'Computer Science and Engineering', '7.24', '10', '6'), (1279, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '155', '316', '3.5', '103', 'Dr. AIT VTU', 'Computer Science Engineering', '71.15', '100', '0'), (1280, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '157', '150', '307', '3.5', '100', 'VTU', 'Computer Science', '73.47', '100', '0'), (1281, 'Northeastern University', '1', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (1282, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '167', '145', '312', '3', '101', 'VTU', 'Computer Science', '65', '100', '0'), (1283, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '152', '320', '3', '104', 'R V College of Engineering', 'Electronics and Communication', '8.84', '10', '0'), (1284, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '161', '150', '311', '3.5', 'None', 'Datta Meghe College of Engineering', 'Computer Science and Engineering', '57', '100', '16'), (1285, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Spring ', '2013', '160', '156', '316', '3.5', '7', 'Amrita School of Engineering', 'CSE', '2.5', '4', '0'), (1286, 'Northeastern University', '1', 'Admit', 'MS', 'energy', 'Fall ', '2014', '700', '430', '1130', '3', '7', 'Anna University', 'EEE', '8.75', '100', '0'), (1287, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '167', '150', '317', '4', '104', 'Manipal Institue of Technology', 'Computer Science and Engineering', '8.41', '10', '29'), (1288, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '149', '314', '3', '104', 'Cochin University of Science and Technology', 'Computer Science', '79', '100', '0'), (1289, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '166', '167', '333', '4.5', '113', 'Bangalore Institute of Technology', 'Computer Science', '76.7', '100', '0'), (1290, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '500', '1300', '4', '107', 'MU', 'Computer Engg', '67.4', '100', '0'), (1291, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2008', '700', '560', '1260', '4.5', '100', 'VTU', 'ece', '66', '100', '0'), (1292, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2011', '750', '500', '1250', '3', '101', 'North Gujarat University', 'EC', '3.6', '4', '0'), (1293, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '156', '151', '307', '3', '91', 'WIT Solapur', 'ECE', '62.65', '100', '0'), (1294, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '163', '152', '315', '3.5', '108', 'MU', 'Computer Engineering', '60.26', '100', '0'), (1295, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '590', '1340', '2.5', '101', 'CITM indore', 'computer science', '66.13', '100', '0'), (1296, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '161', '152', '313', '3.5', '102', 'MU', 'EXTC', '75', '100', '0'), (1297, 'Northeastern University', '1', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2015', '161', '152', '313', '3.5', '107', 'Amrita School of Engineering', 'IT', '8.9', '10', '29'), (1298, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '720', '550', '1270', '3', '95', 'Nirma Institute of Technology', 'Information Technology', '8.46', '10', '0'), (1299, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '157', '325', '3', '103', 'Manipal Institue of Technology', 'Information technology', '7.75', '10', '0'), (1300, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '163', '152', '315', '3.5', '101', 'sri krishna devaraya university', 'CSE', '7.6', '10', '0'), (1301, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '530', '1310', '3', '104', 'VIT University', 'Computer Science', '9.2', '10', '0'), (1302, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '153', '146', '299', '3', '96', 'SRM', 'Mechanical Engineering', '8.2', '10', '0'), (1303, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '169', '157', '326', '4', '109', 'GGSIPU', 'ECE', '72', '100', '32'), (1304, 'Northeastern University', '1', 'Admit', 'MS', 'CS', 'Fall ', '2012', '800', '500', '1300', '5', '104', 'VTU', 'Electronics', '70', '100', '0'), (1305, 'Northeastern University', '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '740', '450', '1190', 'None', '102', 'K.C college of engineering', 'I.T', '0', '0', '0'), (1306, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2008', '780', '410', '1190', '3', '1210', 'SRKNEC nagpur', 'elect & communication', '68', '100', '0'), (1307, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2015', '161', '141', '302', '3', '102', 'Inderprastha Engineering College', 'Electronics & Communication', '70', '100', '0'), (1308, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '147', '310', '3', '102', 'SRM', 'CSE', '9.5', '10', '29'), (1309, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '730', '440', '1170', '3.5', '97', 'CEG', 'M.Sc(5 year Integrated)Information Technology', '8.52', '10', '0'), (1310, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '147', '309', '3', '100', 'Rajasthan Technical University', 'Computer Science', '75.3', '100', '0'), (1311, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '800', '490', '1290', '3', '105', 'Medicaps Institute of Science & Technology Indore', 'Computer Science', '79.25', '100', '0'), (1312, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '167', '165', '332', '4.5', '113', "St Joseph's College of Engineering", 'Electrical and Electronics Engineering', '7.89', '10', '14'), (1313, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2007', '800', '470', '1270', '3', '101', 'Northeastern', 'TSM', '3.33', '4', '0'), (1314, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '770', '570', '1340', '3', '107', 'BBSBEC', 'CSE', '76.1', '100', '0'), (1315, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '168', '156', '324', '3.5', '112', 'Chitkara University', 'Computer Science Engineering', '7.67', '10', '0'), (1316, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '165', '147', '312', '3.5', '312', 'JNTU', 'CSE', '71', '100', '0'), (1317, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '155', '142', '297', '3', '82', 'Shivaji University', 'Computer Science', '65.8', '100', '0'), (1318, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2011', '780', '540', '1320', '3', '114', 'VTU', 'Computer science', '79', '100', '0'), (1319, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2006', '750', '550', '1300', '4', '275', 'MU', 'EXTC', '67', '100', '0'), (1320, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '740', '440', '1180', '2', '91', 'VESIT', 'CS', '70', '100', '0'), (1321, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2008', '780', '540', '1320', '3.5', '105', 'MDU', 'Computer science', '66', '100', '0'), (1322, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Spring ', '2007', '780', '410', '1190', '3.5', '280', 'SASTRA', 'ECE', '7', '10', '0'), (1323, 'Northeastern University', '1', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '159', '149', '308', '3', '102', 'Nagarjuna University', 'Electronics & Computer Engineering', '8.26', '10', '0'), (1324, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Summer ', '2015', '161', '152', '313', '3.5', '96', 'University of Mumbai', 'Information Technology', '66', '100', '29'), (1325, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2016', '161', '153', '314', '3', '104', 'None', 'Computer Science', '7.67', '10', '0'), (1326, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '147', '309', '4', '99', 'Pune University', 'Computer', '74', '100', '12'), (1327, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '161', '158', '319', '3.5', '102', 'IIT Kharagpur', 'Chemistry', '6.39', '10', '0'), (1328, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '170', '150', '320', '3', '104', 'CVSR/ JNTU-Hyderabad', 'CSE', '72', '100', '0'), (1329, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '159', '153', '312', '3.5', '109', 'None', '0', '0', '0', '0'), (1330, 'Northeastern University', '1', 'Admit', 'MS', 'Chemical Engineering', 'Fall ', '2012', '790', '730', '1520', '5', 'None', 'VTU', 'Biotechnology', '79', '100', '0'), (1331, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '740', '460', '1200', '4', '104', 'Univ. of Mumbai', 'Electronics', '61', '100', '0'), (1332, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '163', '153', '316', '4.5', '110', 'Maharishi Dayanand University', 'Computer Science', '66', '100', '0'), (1333, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '159', '145', '304', '3.5', '99', 'JNTU', 'Computer Science and Engineering', '75.8', '100', '22'), (1334, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '150', '312', '3.5', '110', 'Dr. M.G.R. EDUCATIONAL AND RESEARCH INSTITUTE UNIVERSITY', 'ELECTRICAL AND ELECTRONICS ENGINEERING', '9.37', '10', '24'), (1335, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '770', '520', '1290', '3', '102', 'MU', 'ELECTRONICS & TELECOMMUNICATION', '6.5', '10', '0'), (1336, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2011', '730', '390', '1120', '3', '90', 'IET DAVV', 'Computer Engineering', '0', '0', '0'), (1337, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '390', '1190', '4', '104', 'MU', 'Electronics and Telecommunications (EXTC)', '75', '100', '0'), (1338, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '146', '309', '3', '101', 'MU', 'Computer Engineering', '58', '100', '0'), (1339, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '151', '313', '4', '113', 'VTU', 'CSE', '73', '100', '0'), (1340, 'Northeastern University', '1', 'Reject', 'MS', 'Electronics and electrical engineering', 'Fall ', '2014', '165', '150', '315', '3.5', '110', 'Vidyalankar Institute of Technology', 'Electronics', '72', '100', '0'), (1341, 'Northeastern University', '1', 'Reject', 'MS', 'Electronics and Communication', 'Spring ', '2013', '163', '145', '308', 'None', '96', 'RNSIT', 'ECE', '75', '100', '0'), (1342, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '159', '147', '306', '3', '105', 'MGIT - JNTUH', 'EEE', '73', '100', '0'), (1343, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '660', '1440', '4', '111', 'MU', 'Computer Enginnering', '69', '100', '0'), (1344, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '560', '1350', '3.5', '110', 'Pune University', 'Electronics Engineering', '3.25', '4', '0'), (1345, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '154', '144', '298', '3', 'None', 'Rajasthan Technical University', 'Computer Engineering', '65', '100', '0'), (1346, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '790', '330', '1120', '3.5', '85', 'MU', 'Computer', '63.5', '100', '0'), (1347, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '800', '520', '1320', '4', '113', 'VTU', 'Electronics and Communication', '61', '100', '0'), (1348, 'Northeastern University', '1', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '790', '420', '1210', '3', '93', 'K J Somaiya College of Engiineering', 'Mechanical', '66', '100', '0'), (1349, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '750', '580', '1330', '3', '100', 'Bharati Vidyapeeth', 'Electrical', '58', '100', '0'), (1350, 'Northeastern University', '1', 'Reject', 'MS', 'Information Systems', 'Fall ', '2012', '291', '139', '430', '3', '80', 'University of Mumbai', 'Information Technology', '54', '100', '0'), (1351, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '152', '316', '3.5', '102', 'University of Pune', 'Information Technology', '71.44', '100', '0'), (1352, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '161', '159', '320', '3', '116', 'MU', 'Computer Engineering', '61', '100', '0'), (1353, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '770', '690', '1460', '3', '104', 'MU', 'CS', '63.5', '100', '0'), (1354, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '156', '153', '309', '4', '105', 'YCCE', 'Computer Technology', '64', '100', '28'), (1355, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '156', '321', '3', '110', 'Anna University', 'B.Tech I.T', '7.61', '10', '0'), (1356, 'Northeastern University', '1', 'Reject', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2014', '156', '152', '308', '5', '111', 'RKNEC', 'Industrial', '74', '100', '0'), (1357, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '580', '1360', '4', 'None', 'BITS Pilani', 'Mechanical', '7.8', '10', '0'), (1358, 'Northeastern University', '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '710', '470', '1180', '3.5', '97', 'Sinhgad College of Engineering', 'Electronics & Telecommunications', '55', '100', '0'), (1359, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '790', '520', '1310', 'None', 'None', 'Atharva College', 'IT', '69', '100', '0'), (1360, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '153', '314', '3', '101', 'Nagpur University', 'Electronics Engineering', '76', '100', '0'), (1361, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '168', '152', '320', '3', '104', 'JUET', 'CSE', '6.9', '10', '0'), (1362, 'Northeastern University', '1', 'Reject', 'MS', 'Electronics and electrical engineering', 'Spring ', '2013', '161', '144', '305', '3', '84', 'American International University', 'Electrical & Electronic Engineering', '3.04', '4', '0'), (1363, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '157', '146', '303', '3.5', '90', 'Mepco Schlenk Engineering College', 'Computer Science', '75', '100', '0'), (1364, 'Northeastern University', '1', 'Reject', 'MS', 'Computational Science', 'Fall ', '2015', '158', '145', '303', '3', '110', 'KLS Gogte Institute of Technology', 'Computer Science and Engineering', '79.12', '100', '31'), (1365, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '161', '150', '311', '4', '108', 'M.I.T Pune', 'Computer Engineering', '59.87', '100', '0'), (1366, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '154', '321', '3', '108', 'FRCRCE-Mumbai University', 'Information Technology', '67.2', '100', '0'), (1367, 'Northeastern University', '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '161', '156', '317', '4', '112', 'VTU', 'Electronics and Communication', '77', '100', '0'), (1368, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Spring ', '2014', '158', '157', '315', '3.5', '105', 'JNTU', 'ECE', '73', '100', '0'), (1369, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '740', '640', '1380', '3', '87', 'MU', 'Computer science', '66', '100', '0'), (1370, 'Northeastern University', '1', 'Reject', 'MS', 'MIS-management related courses', 'Fall ', '2012', '160', '148', '308', '3', '106', 'Jaypee Institute of Information Technology', 'Information Technology', '6.1', '10', '0'), (1371, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '157', '143', '300', '3.5', '91', 'MU', 'Computer', '60.89', '100', '0'), (1372, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '770', '510', '1280', '4', '95', 'Goa University', 'Electronics and Telecommunication', '72', '100', '0'), (1373, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '145', '303', '4', '104', 'K J Somaiya College of Engiineering', 'COMPS', '65', '100', '0'), (1374, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '150', '311', '3', '91', 'Pune University', 'Computer', '62', '100', '0'), (1375, 'Northeastern University', '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '540', '1340', '3.5', '103', 'VNIT Nagpur', 'ECE', '8.22', '10', '0'), (1376, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '148', '310', '3', '100', 'UPTU', 'Computer Science', '67', '100', '0'), (1377, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '159', '150', '309', '3', '102', 'MU', 'EXTC', '60.77', '100', '12'), (1378, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '480', '1280', '3', '98', 'MU', 'computer', '64.3', '100', '0'), (1379, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '167', '143', '310', '3.5', '98', 'St Francis Institute of Technology - Mumbai Unversity', 'Computer Engineering', '70', '100', '0'), (1380, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '150', '308', '3', '92', 'UPTU', 'IT', '63', '100', '42'), (1381, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '490', '1280', '4', '103', 'MU', 'IT', '67', '100', '0'), (1382, 'Northeastern University', '1', 'Reject', 'MS', 'Pharmacology', 'Fall ', '2014', '145', '159', '304', '3.5', 'None', 'Nirma Institute of Technology', 'Pharmacy', '9.16', '10', '0'), (1383, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '152', '314', '3', '97', 'Kurukshetra University', 'information technology', '71', '100', '0'), (1384, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '159', '150', '309', '4', '107', 'MSRIT', 'Electronics and Communication', '8.42', '10', '13'), (1385, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '165', '156', '321', '4', 'None', 'Kathmandu University', 'Electrical and Electronics', '3.61', '4', '0'), (1386, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall', 'None', '158', '156', '314', '3.5', '109', 'SAKEC University of Mumbai', 'Electronics Engineering', '60.22', '100', '0'), (1387, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '510', '1310', '4', '100', 'VIT Mumbai University', 'Computer Engg', '57.38', '100', '0'), (1388, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '770', '370', '1140', '3', '87', 'K J Somaiya College of Engiineering', 'Electronics', '60', '100', '0'), (1389, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '146', '307', '4', '103', 'University of Pune', 'Computer Engineering', '70.12', '100', '0'), (1390, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '490', '1260', '3', '101', 'MU', 'Computer Science', '63', '100', '0'), (1391, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '148', '309', '3', '96', 'Walchand College Of Engineering', 'IT', '7.66', '10', '29'), (1392, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '154', '318', '3', '102', 'thakur mumbai university', 'computer engg', '62.6', '100', '0'), (1393, 'Northeastern University', '1', 'Reject', 'MS', 'Manufacturing Engineering', 'Fall ', '2012', '165', '151', '316', '2.5', '95', 'UPTU', 'ME + MBA', '64.58', '100', '0'), (1394, 'Northeastern University', '1', 'Reject', 'MS', 'CS', 'Fall ', '2014', '164', '146', '310', '3', '91', 'VTU', 'CSE', '71.8', '100', '0'), (1395, 'Northeastern University', '1', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '690', '570', '1260', '2.5', '101', 'Pune University', 'Computer Science', '55', '100', '0'), (1396, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2103', '152', '144', '296', '3', '88', 'VTU', 'computer science', '78', '100', '0'), (1397, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '153', '148', '301', 'None', 'None', 'Pune University', 'Computer Science', '59', '100', '0'), (1398, 'Northeastern University', '1', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '650', '650', '1300', '3', '102', 'MU', 'Information Technology', '63', '100', '0'), (1399, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '157', '148', '305', '3', '101', 'Pune University', 'Electronics and communication', '65', '100', '0'), (1400, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '740', '560', '1300', '3', '100', 'YCCE', 'Electronics', '74', '100', '0'), (1401, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '167', '143', '310', '2.5', '84', 'NIT Allahabad', 'Information Technology', '6.89', '10', '0'), (1402, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '150', '312', '4.5', '112', 'Cochin University of Science and Technology', 'Computer Science', '66.35', '100', '34'), (1403, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2013', '710', '340', '1050', '3', '93', 'None', 'ECE', '63', '100', '0'), (1404, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '161', '152', '313', '4', '97', 'VIT University', 'ECE', '8.26', '10', '0'), (1405, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '168', '153', '321', '3.5', 'None', 'Mahrishi Dayanand University', 'Computer Science and Engineering', '69.42', '100', '0'), (1406, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '760', '550', '1310', '4', '110', 'Pune University', 'Computer Engineering', '63.39', '100', '0'), (1407, 'Northeastern University', '1', 'Reject', 'MS', 'software engineering', 'Fall ', '2014', '660', '350', '1010', '3', '92', 'University of Mumbai', 'Information Technology', '62.56', '100', '32'), (1408, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '165', '140', '305', '3', '83', 'GTU', 'ECE', '7.73', '10', '0'), (1409, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '152', '150', '302', '3', '90', 'MU', 'Information Technology', '63', '100', '11'), (1410, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '151', '312', '3', 'None', 'University of Pune', 'Computer Engg..', '60', '100', '0'), (1411, 'Northeastern University', '1', 'Reject', 'MS', 'Information technology management', 'Fall ', '2013', '161', '147', '308', '3', '93', 'R.G.P.V/Chamelidevi School Of Engineering', 'Electronics & Communication', '74.5', '100', '0'), (1412, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '152', '315', '3', '95', 'University of Pune', 'Computer Engineering', '67', '100', '18'), (1413, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical and computer engineering electrical engineering telecommunications engineering', 'Fall ', '2014', '161', '150', '311', '3', '95', 'MSRIT', 'Telecommunication', '75', '100', '0'), (1414, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science/ Electronics and Communication', 'Fall ', '2013', '162', '157', '319', 'None', '110', 'MU', 'Electronics', '55', '100', '0'), (1415, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '148', '309', '3.5', '105', 'VTU', 'Computer Science', '72', '100', '6'), (1416, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '770', '640', '1410', '4.5', '114', 'MU', 'Computer Engineering', '63', '100', '0'), (1417, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '780', '1570', '4.5', '107', 'University of Pune', 'Information technology', '58.5', '100', '0'), (1418, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '163', '148', '311', '3.5', '107', 'MU', 'Electronics and Telecommunications', '66.93', '100', '24'), (1419, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '305', '149', '454', '3', 'None', 'Pune University', 'Computer Engineering', '3.8', '100', '0'), (1420, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2013', '166', '159', '325', '4', '110', 'Medicaps Institute of Science & Technology Indore', 'EC', '73', '100', '0'), (1421, 'Northeastern University', '1', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '155', '147', '302', '3', '101', 'University of Mumbai', 'Computer Engineering', '65.73', '100', '0'), (1422, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '156', '323', '4', '116', 'University of Mumbai', 'Computer Engineering', '65.55', '100', '16'), (1423, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '790', '550', '1340', '3', '99', 'University of Pune', 'Computer Engg.', '58.46', '100', '0'), (1424, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '660', '380', '1040', '3', '91', 'Pune University', 'Computer and Information Technology', '64', '100', '0'), (1425, 'Northeastern University', '1', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '153', '152', '305', '2', '91', 'IIPS DAVV', 'Mtech(IT)', '82', '100', '0'), (1426, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2006', '790', '620', '1410', '4.5', '287', 'MU', 'Elec and Telecom', '67', '100', '0'), (1427, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '790', '570', '1360', '3.5', '100', 'University of Pune', 'Computer Engineering', '57', '100', '24'), (1428, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '159', '146', '305', '2.5', '92', 'Bangalore Institute of Technology', 'Computer Science', '81', '100', '0'), (1429, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '160', '151', '311', '3', 'None', 'VTU', 'Computer Science', '81.8', '100', '0'), (1430, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '152', '311', '4', '110', 'MU', 'Computer engg', '62', '100', '0'), (1431, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2016', '165', '152', '317', '3', '103', 'Madras Institute of Technology', 'Electronics & Communications Enginnering', '6.5', '10', '24'), (1432, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '149', '313', '2.5', 'None', 'SVCE', 'EEE', '75', '100', '0'), (1433, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '157', '320', '3.5', '115', 'D J Sanghvi', 'Information technology', '66', '100', '0'), (1434, 'Northeastern University', '1', 'Reject', 'MS', 'Mechanical Engineering', 'Spring ', '2011', '690', '620', '1310', '3', '96', 'University of Rajasthan', 'Mechanical Engineering', '70.5', '100', '0'), (1435, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical and Electronics', 'Fall ', '2011', '710', '590', '1300', '4.5', '111', 'Veer Narmad South Gujarat University', 'Instrumentation & Control', '64', '100', '0'), (1436, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '159', '150', '309', '3', '92', 'New Horizon College of Engineering', 'computer science', '79', '100', '48'), (1437, 'Northeastern University', '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '780', '640', '1420', '4', '105', 'Pune University', 'E-tc', '57', '100', '0'), (1438, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical and Electronics', 'Fall ', '2013', '161', '145', '306', '3', '102', 'Sri Manakula Vinayagar Engineering College', 'Electrical and Electronics Engineering', '8.53', '10', '0'), (1439, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '155', '144', '299', '3', '84', 'Anna University', 'Computer science and engineering', '76', '100', '0'), (1440, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '800', '580', '1380', '4', '115', 'MU', 'Computers', '53.95', '100', '0'), (1441, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '156', '150', '306', '2.5', '90', 'Pune University', 'Computerscience', '56', '100', '44'), (1442, 'Northeastern University', '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '160', '155', '315', '4', '94', 'DTU', 'ECE', '63', '100', '0'), (1443, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '149', '308', '3', '102', 'MU', 'computer engg', '66', '100', '0'), (1444, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '162', '158', '320', '4', '115', 'Amrita Vishwa Vidhyapeetham', 'CSE', '8.1', '10', '0'), (1445, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '710', '540', '1250', '3', '105', 'UPTU', 'Electronics & Communication', '65.2', '100', '0'), (1446, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '780', '530', '1310', '3', '93', 'PESIT', 'Information Science', '65', '100', '0'), (1447, 'Northeastern University', '1', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2013', '164', '147', '311', '4.5', '95', 'Jaypee Institute of Information Technology', 'Electronics and Communications', '5.6', '10', '0'), (1448, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '166', '152', '318', '3', '110', 'Sikkim Manipal Institute of Technology', 'Computer Science', '7.19', '10', '51'), (1449, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '166', '159', '325', '4.5', '113', 'University of Pune', 'Computer', '60.28', '100', '0'), (1450, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '760', '580', '1340', '3.5', '105', 'RMK Engineering College', 'B.E Computer Science', '74', '100', '0'), (1451, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '660', '1430', '4', '110', 'Sri Venkateswara College of Engineering', 'ECE', '76', '100', '0'), (1452, 'Northeastern University', '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '162', '145', '307', '3.5', '102', 'NIT Tirchy', 'Electronics And Communication', '6.61', '10', '0'), (1453, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2011', '800', '460', '1260', '4', '109', 'Sardar Patel College of Engineering', 'Electronics and Telecommunication', '71.33', '100', '0'), (1454, 'Northeastern University', '1', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2011', '660', '460', '1120', '3', '87', 'K J Somaiya College of Engiineering', 'Electronics Engineering', '55', '100', '0'), (1455, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '151', '312', '3.5', '102', 'RAIT', 'Computer Engg.', '68.2', '100', '0'), (1456, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '750', '510', '1260', '3', '104', 'VIIT', 'computer engineering', '55', '100', '0'), (1457, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '780', '430', '1210', '3.5', '103', 'Rajiv Gandhi Institute Of Technology', 'Information Technology', '55', '100', '0'), (1458, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '680', '430', '1110', '3.5', '102', 'VCET', 'Computer Science', '63', '100', '0'), (1459, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '460', '1260', '3.5', '103', 'GITAM', 'IT', '67', '100', '0'), (1460, 'Northeastern University', '1', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2011', '730', '470', '1200', '3', '100', 'University of Pune', 'Chemical Engineering', '60', '100', '0'), (1461, 'Northeastern University', '1', 'Reject', 'MS', 'Mechanical Engineering', 'Spring ', '2015', '160', '146', '306', '2.5', 'None', "St Joseph's College of Engineering", 'Mechanical', '8.32', '10', '8'), (1462, 'Northeastern University', '1', 'Reject', 'MS', 'CS', 'Fall ', '2015', '167', '145', '312', '3', 'None', 'University of Mumbai', 'Information Technology', '70.13', '100', '42'), (1463, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2015', '166', '149', '315', '3.5', '104', 'R.N.S.I.T / VTU', 'Electronics and communication', '68', '100', '15'), (1464, 'Northeastern University', '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '165', '156', '321', '4', '107', 'BVM Engineering College', '0', '7.96', '10', '0'), (1465, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '157', '155', '312', '4.5', '108', 'VIT University', 'CSE', '8.4', '10', '6'), (1466, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '160', '151', '311', '3.5', '87', 'Sarvajanik College of Engineering & Technology', 'Computer', '7.94', '10', '0'), (1467, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '158', '320', '4', '113', 'None', '0', '0', '0', '0'), (1468, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '165', '149', '314', '3.5', '103', 'Rajasthan Technical University', 'Computer Science and Engineering', '73', '100', '0'), (1469, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '160', '150', '310', '4', '100', 'Bangladesh University of Engineering & Technology', 'Computer Science', '3.91', '4', '0'), (1470, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '710', '440', '1150', '3', '94', 'VTU', 'Electronics and Communication', '60.69', '100', '0'), (1471, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2006', '770', '710', '1480', '4', '280', 'MU', 'Electronics and Telecommunication', '57', '100', '0'), (1472, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2015', '157', '147', '304', '3.5', '97', 'None', '0', '77.25', '100', '48'), (1473, 'Northeastern University', '1', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2011', '730', '310', '1040', '3', '89', 'Somaiya', 'IT', '61', '100', '0'), (1474, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '152', '315', '4', '104', 'Pune University', 'Computer Engineering', '61', '100', '0'), (1475, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '750', '560', '1310', '3', '100', 'St Francis Institute of Technology - Mumbai Unversity', 'Electronics and telecommunication', '61.7', '100', '0'), (1476, 'Northeastern University', '1', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '157', '161', '318', '4.5', '112', 'Pune University', 'Computer Engineering', '68.5', '100', '0'), (1477, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '760', '450', '1210', '3', '96', 'Pune University', 'Computer Science', '59', '100', '0'), (1478, 'Northeastern University', '1', 'Reject', 'MS', 'CS', 'Fall ', '2014', '150', '151', '301', '3', '102', 'MU', 'computer', '64', '100', '0'), (1479, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '760', '710', '1470', '3.5', '100', 'Pune University', 'I.T', '61.3', '100', '0'), (1480, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '159', '146', '305', '3', '92', 'SSN College of Engineering', 'Electrical and Electronics', '79', '100', '0'), (1481, 'Northeastern University', '1', 'Reject', 'MS', 'CS / SE / IT / MIS', 'Fall ', '2015', '161', '155', '316', '4', '101', 'University of Pune', 'IT', '63', '100', '13'), (1482, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '710', '330', '1040', '3', 'None', 'D Y Patil College of Engineering', 'Information Technology', '61.5', '100', '0'), (1483, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2013', '720', '310', '1030', '3', '84', 'BVM Engineering College', 'Electronics Engineering', '8.38', '10', '0'), (1484, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '166', '154', '320', '3.5', '111', 'University of Mumbai', 'Electrical Engineering', '70.6', '100', '0'), (1485, 'Northeastern University', '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '600', '1380', '3.5', '109', 'MU', 'Electronics', '73', '100', '0'), (1486, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '380', '1180', '4', '103', 'Shivajirao S. Jondhale College of Engineering', 'Computer Engineering', '60', '100', '0'), (1487, 'Northeastern University', '1', 'Reject', 'MS', 'CS/SE', 'Fall ', '2012', '800', '610', '1410', '4', '104', 'NMIMS', 'CE', '3.07', '4', '0'), (1488, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '167', '151', '318', '4', '111', 'GGSIPU', 'MCA(Software Engineering)', '71', '100', '32'), (1489, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '158', '145', '303', '3.5', 'None', 'University of Kerala', 'CSE', '79.8', '100', '0'), (1490, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '160', '323', '3.5', '108', 'MU', 'Computer Engineering', '58', '100', '33'), (1491, 'Northeastern University', '1', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '158', '144', '302', '3', '98', 'NMIMS', 'Electronics and telecomm', '3.06', '4', '0'), (1492, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engg/ comp engg', 'Spring ', '2013', '730', '320', '1050', '3.5', '94', 'MU', 'Electronics Engineering', '62.68', '100', '0'), (1493, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '730', '330', '1060', '3', '87', 'University of Mumbai', 'Electronics', '68', '100', '0'), (1494, 'Northeastern University', '1', 'Reject', 'MS', 'Biochemistry and Molecular biology', 'Fall ', '2011', '720', '590', '1310', '3', '101', 'Kurukshetra University', 'Biochemistry', '73', '100', '0'), (1495, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '161', '146', '307', '3', '106', 'Sathyabama University', 'Electronics and telecommunication', '8.4', '10', '0'), (1496, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '169', '153', '322', '4.5', '114', 'MDU', 'Applied Electronics and Instrumentation', '74.32', '100', '0'), (1497, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '780', '650', '1430', '3', '101', 'M.I.T.M(RGTU)', 'Computer Science', '70', '100', '0'), (1498, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '700', '350', '1050', '3', '105', 'MU', 'Computer Science', '54', '100', '0'), (1499, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '157', '315', '3.5', '101', 'Anna University', 'Information Technology', '8.18', '100', '21'), (1500, 'Northeastern University', '1', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '148', '143', '291', '4.5', '103', 'Pune University', 'IT', '67', '100', '0'), (1501, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2013', '161', '152', '313', '3', '104', 'Thapar University', 'Electronis and Instrumentation', '8.8', '10', '0'), (1502, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '158', '148', '306', '4', '98', 'K J Somaiya College of Engiineering', 'Computer Engineering', '58', '100', '0'), (1503, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '730', '500', '1230', '2.5', '87', 'St Francis Institute of Technology - Mumbai Unversity', 'Computers', '60', '100', '0'), (1504, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '159', '146', '305', '3.5', '99', 'RGIT', 'Comp', '53', '100', '0'), (1505, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '161', '151', '312', '3', '88', 'I.E.T D.A.V.V.', 'ELECTRONICS AND INSTRUMENTATION ENGINEERING', '66.45', '100', '0'), (1506, 'Northeastern University', '1', 'Reject', 'MS', 'Electronics and Communication', 'Spring ', '2014', '162', '153', '315', '3.5', '97', 'VTU', 'Electronics and Communications', '83', '100', '0'), (1507, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '165', '149', '314', '3', '95', 'Swami Vivekananda Institute Of Technology', 'Computer science', '73', '100', '0'), (1508, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '160', '151', '311', '3', '101', 'VIT University', 'CSE', '8.56', '10', '24'), (1509, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '155', '144', '299', '3.5', '96', 'VTU', 'Instrumentation Technology', '77', '100', '0'), (1510, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '740', '600', '1340', '4', '115', 'MU', 'Computer Science', '57', '100', '0'), (1511, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '159', '145', '304', '3', '112', 'Gujarat Technological University', 'Electronics and Telecomm.', '8.44', '10', '0'), (1512, 'Northeastern University', '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '560', '1350', '4', '106', 'Nagpur University', 'Electronics and Comm.', '75', '100', '0'), (1513, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '570', '1370', '3.5', '98', 'IT BHU', 'Electrical Engg', '7.48', '10', '0'), (1514, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '153', '315', '3.5', '108', 'VTU', 'Electronics & Communication', '71', '100', '36'), (1515, 'Northeastern University', '1', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '163', '162', '325', '4', '8', 'Chhattisgarh Swami Vivekanand Technical Unveirsity', 'Computer Science and Engineering', '8.19', '10', '0'), (1516, 'Northeastern University', '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '580', '1380', '3', '103', 'GITAM', 'ECE', '7.3', '10', '0'), (1517, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '153', '316', '4', '94', 'Medicaps Institute of Science & Technology Indore', 'Information Technology', '8.07', '10', '0'), (1518, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Spring ', '2013', '760', '630', '1390', '4', '114', 'NIT Tirchy', 'Electrical & Electronics', '6.83', '10', '0'), (1519, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '560', '1360', '4', '103', 'Ahmedabad Institute of Technology', 'Computer Engineering', '3.26', '4', '0'), (1520, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '163', '158', '321', '3.5', '107', 'SVNIT', 'Electronics Engineering', '6.56', '10', '0'), (1521, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '165', '158', '323', '3.5', 'None', 'MU', 'computer', '68', '100', '4'), (1522, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '166', '150', '316', '2.5', '98', 'BITS Pilani', 'Computer Science', '5.5', '10', '0'), (1523, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '158', '146', '304', '3', 'None', 'SNIST', '0', '68', '100', '54'), (1524, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '154', '154', '308', '3.5', '8', 'Anna University', 'Electronics and communication engineering', '68', '100', '0'), (1525, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '800', '710', '1510', '4', '116', 'D J Sanghvi', 'Electronics', '58.5', '100', '16'), (1526, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '160', '150', '310', '3', '88', 'MIT Pune', 'Computer science', '60.5', '100', '0'), (1527, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '167', '166', '333', '4.5', '118', 'None', 'Computer Science', '7.84', '10', '0'), (1528, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '660', '540', '1200', '3.5', '95', 'University of Rajasthan', 'ECE', '69', '100', '0'), (1529, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '490', '1270', '3.5', '98', 'NIT Allahabad', 'IT', '7.8', '10', '0'), (1530, 'Northeastern University', '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '160', '151', '311', '4', '102', 'SRM', 'ECE', '8.59', '10', '22'), (1531, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '540', '1330', '3', '102', 'University of Pune', 'Computer Engineering', '57.8', '100', '0'), (1532, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2016', '163', '163', '326', '4', '110', 'Goa University', 'Computer Engineering', '73.72', '100', '46'), (1533, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '730', '560', '1290', '4', '102', 'University of Mumbai', 'CE', '57.2', '100', '0'), (1534, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '149', '311', 'None', '93', 'Anna University', 'CSE', '8.2', '10', '0'), (1535, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '151', '309', '3', '93', 'Vishwakarma Institute of Technology', 'Computer Science', '7.1', '10', '0'), (1536, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '790', '550', '1340', '3.5', '106', 'MIT Pune Univ', 'Electronics & TeleCommunication Engg', '58', '100', '0'), (1537, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '710', '380', '1090', '2.5', '103', 'NMIMS', 'Electronics', '3.32', '4', '0'), (1538, 'Northeastern University', '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2007', '770', '570', '1340', '4.5', '107', 'None', 'Electronics and Telecommunication', '61', '100', '0'), (1539, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '650', '530', '1180', '3', '104', 'MU', 'Information technology', '53', '100', '0'), (1540, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '152', '160', '312', '4', '119', 'Shivaji University', 'Electronics & Telecommunication', '3.02', '4', '0'), (1541, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '149', '312', '3', '97', 'Pune University', 'Electronic and Telecommunication', '61', '100', '44'), (1542, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '750', '510', '1260', '3.5', '106', 'MU', 'Computers', '59.76', '100', '0'), (1543, 'Northeastern University', '1', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '42', '24', '66', '4', '96', 'MU', 'Computer science', '62.3', '100', '0'), (1544, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '610', '1400', '3.5', '99', 'mit pune', 'e-tc', '64.91', '100', '0'), (1545, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '145', '306', '3', '103', 'B V Bhoomaraddi College of Engg & Tech (Affiliated to VTU)', 'Information Science and Engineering', '7.39', '10', '26'), (1546, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '750', '510', '1260', '3.5', '104', 'Thadomal Shahani Engineering College', 'Computers', '61', '100', '0'), (1547, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2010', '770', '320', '1090', '3.5', '98', 'VTU', 'Electronics and Communication Engineering', '70', '100', '0'), (1548, 'Northeastern University', '1', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '160', '149', '309', '3', '101', 'D Y Patil College of Engineering', 'Electronics Engineering', '72', '100', '0'), (1549, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '740', '370', '1110', '3', '82', 'K J Somaiya College of Engiineering', 'INFORMATION TECHNOLOGY', '67', '100', '0'), (1550, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'Amrita School of Engineering', 'CSE', '7', '10', '0'), (1551, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '710', '460', '1170', '3', '100', 'University of Pune', 'Compurter Engineering', '60', '100', '0'), (1552, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '170', '161', '331', '4', '110', 'VTU', 'Computer Science', '68', '100', '36'), (1553, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '160', '150', '310', '3', '102', 'MU', 'IT', '65', '100', '0'), (1554, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '770', '570', '1340', '3.5', '110', 'Pune University', 'Electronics and Telecomm', '62', '100', '0'), (1555, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2013', '157', '136', '293', '3.5', '87', 'RTM Nagpur University', 'Electrical Engg', '65.03', '100', '0'), (1556, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '168', '149', '317', '3', '95', 'VNR VJIET', 'CSE', '67', '100', '0'), (1557, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '159', '149', '308', '3', '81', 'GTU', 'EC', '7.16', '100', '0'), (1558, 'Northeastern University', '1', 'Reject', 'MS', 'Information Technology', 'Fall ', '2012', '730', '530', '1260', '3.5', '99', 'St Francis Institute of Technology - Mumbai Unversity', 'IT', '55', '100', '0'), (1559, 'Northeastern University', '1', 'Reject', 'MS', 'software engineering', 'Fall ', '2012', '154', '144', '298', '3.5', '86', 'University of Pune', 'Information Technology', '63', '100', '0'), (1560, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '155', '317', 'None', '104', 'Amrita School of Engineering', 'Electrical and Electronics', '6.7', '10', '45'), (1561, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '150', '308', '3', '92', 'MU', 'IT', '57', '100', '0'), (1562, 'Northeastern University', '1', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2011', '740', '620', '1360', '3.5', '117', 'Atria Institute of Technology', 'telecommunication', '63', '100', '0'), (1563, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '164', '154', '318', '3', '113', 'Sapthagiri College of Engineering', 'Electronics and Communication', '69.14', '100', '0'), (1564, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '160', '152', '312', '3', 'None', 'Punjab Technical University', 'Computer Science Engineering', '71', '100', '0'), (1565, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '740', '570', '1310', '3', '102', 'Anna University', 'Electronics and Instrumentation Engg', '8.62', '10', '0'), (1566, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2006', '700', '320', '1020', '2.5', '237', "VIDYAVARDHINI'S COLLEGE VASAI WEST MUMBAI UNIVERSITY", 'Computer Engg', '56', '100', '0'), (1567, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2016', '157', '157', '314', '4.5', 'None', 'CEG', 'Computer Science and Engineering', '0', '0', '22'), (1568, 'Northeastern University', '1', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2013', '154', '154', '308', '3.5', '105', 'MU', 'IT', '63', '100', '0'), (1569, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '169', '146', '315', '3.5', '86', 'HUST', 'Information Technology', '7.82', '10', '0'), (1570, 'Northeastern University', '1', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2013', '760', '420', '1180', '3', '101', 'Pune University', 'E&Tc;', '59', '100', '0'), (1571, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '156', '147', '303', '3', '89', 'Atharva College', 'computer', '60', '100', '0'), (1572, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '155', '314', '3.5', '104', 'Pune University', 'Information Technology', '62.5', '100', '0'), (1573, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '160', '148', '308', '3', '98', 'Sree Vidyanikethan Engineering College', 'Electronics and Communication Engineering', '79', '100', '0'), (1574, 'Northeastern University', '1', 'Reject', 'MS', 'CS', 'Spring ', '2015', '161', '149', '310', '4', '105', 'UPTU', 'Computer Scinece', '82.04', '100', '30'), (1575, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2015', '161', '157', '318', '4.5', '114', 'NUST', 'Electrical and Power Engineering Department - Electronics Engineering', '3.13', '4', '3'), (1576, 'Northeastern University', '1', 'Reject', 'MS', 'Entertainment technology-Animations and graphics', 'Fall ', '2013', '710', '570', '1280', '4', '106', 'Yadavrao Tasgaonkar Institute of Engineerig and Technology', 'Electronics and Telecommunication', '64.76', '100', '0'), (1577, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering & Information Technology', 'Spring ', '2015', '164', '144', '308', '4', '97', 'INSTITUTE OF ENGINEERING AND TECHNOLOGY', 'ELECTRONICS AND TELECOMMUNICATION', '73.4', '100', '3'), (1578, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '580', '1360', '3', '110', 'K J Somaiya College of Engiineering', 'electronics', '63.45', '100', '0'), (1579, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '380', '1180', '3', '94', 'MDU', 'Computer Science', '61', '100', '0'), (1580, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '170', '168', '338', '4.5', '116', 'Pune University', 'B.E (Computer Science)', '57', '100', '15'), (1581, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science/ Electronics and Communication', 'Fall ', '2014', '163', '141', '304', '3', '94', 'NMIMS', 'Information Technology', '2.98', '4', '0'), (1582, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '161', '145', '306', '3', '104', 'University institute of engineering and technology panjab university chandigarh', 'electrical and electronics engineering', '62', '100', '0'), (1583, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '160', '148', '308', '3', 'None', 'BPUT', '0', '7.4', '10', '0'), (1584, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '149', '310', '2.5', '92', 'University of Pune', 'Electronics and Telecommunication', '8.57', '10', '0'), (1585, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '160', '153', '313', '3.5', '100', 'NMU', '0', '61', '100', '0'), (1586, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '650', '1450', '4.5', '110', 'Gujarat Technological University', 'Electrical and Electronics', '75.6', '100', '0'), (1587, 'Northeastern University', '1', 'Reject', 'MS', 'Engineering Management', 'Spring ', '2013', '145', '139', '284', '2', '82', 'None', '0', '0', '0', '0'), (1588, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2008', '800', '470', '1270', '4.5', '104', 'NIT (REC) Calicut India', 'Electronics and Communications Engineering', '61', '100', '0'), (1589, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '780', '630', '1410', '4.5', '109', 'MU', 'Electronics and Telecommunication', '68.03', '100', '0'), (1590, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '161', '162', '323', '4', '110', 'VTU', 'Electronics and Communication', '62.95', '100', '0'), (1591, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '148', '310', '3', '91', 'Govt Model Engineering College', 'Computer Science and Engineering', '72', '100', '0'), (1592, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '730', '620', '1350', '4', '111', 'Bangalore Institute of Technology', 'Electronics and Communication', '58.5', '100', '0'), (1593, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '680', '570', '1250', '3.5', '106', 'MU', 'Information Technology', '65', '100', '0'), (1594, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2006', '540', '620', '1160', '3.5', '273', 'MU', 'Computer Engg', '0', '0', '0'), (1595, 'Northeastern University', '1', 'Reject', 'MS', 'environmental engineering', 'Fall ', '2012', '154', '154', '308', '3', '97', 'Guru Nanak Dev University Amritsar', 'Civil Engineering', '77.4', '100', '0'), (1596, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '159', '141', '300', '3', '91', 'BVBCET', 'Computer and Information Science', '8.55', '10', '0'), (1597, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '530', '1320', '4.5', '107', 'DBIT', 'Comp Engg', '60', '100', '0'), (1598, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '168', '158', '326', '4', '110', 'University of Pune', 'Computer Engineering', '59', '100', '0'), (1599, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '165', '145', '310', '3', '95', 'Sardar Patel University', 'Electronics', '3.5', '4', '0'), (1600, 'Northeastern University', '1', 'Reject', 'MS', 'Information Management', 'Fall ', '2014', '163', '151', '314', '3', '100', 'Jaypee Institute of Information Technology', 'Information Technology', '69', '100', '36'), (1601, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '400', '1200', '2.5', '102', 'K J Somaiya College of Engiineering', 'Electronics', '62', '100', '0'), (1602, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '163', '156', '319', '3', '111', 'BITS Pilani', 'Information Systems', '6.55', '10', '60'), (1603, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science/ Mgmt', 'Spring ', '2014', '165', '155', '320', '4', '112', 'JNTU', 'Biotechnology', '71.14', '100', '0'), (1604, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '151', '314', '3', '110', 'JNTU', 'Computer Science and Engineering', '63', '100', '60'), (1605, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '163', '151', '314', '3', '90', 'D J Sanghvi', 'EXTC', '72.85', '100', '0'), (1606, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '145', '307', '3', '82', 'Government Engineering College Patan affilated with GTU', 'Computer Science & Engineering', '8.34', '10', '0'), (1607, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '165', '156', '321', '4.5', '112', 'MU', 'Computer Engineering', '71', '100', '30'), (1608, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '166', '140', '306', '3', '85', 'VTU', 'Computer Science', '72.4', '100', '36'), (1609, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '156', '150', '306', '4', '108', 'Sri Sairam Inst of Technology', 'Information Tech', '8.5', '10', '13'), (1610, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '159', '150', '309', '4', '6', 'Vignan Institute of Technology and Science', 'ECE', '77', '100', '0'), (1611, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '159', '154', '313', '4', '110', 'VIT', 'ECE', '8.34', '10', '0'), (1612, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '720', '550', '1270', '3.5', '108', 'Pune University', 'Computer Engineering', '56', '100', '0'), (1613, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '154', '145', '299', '3.5', '93', 'The Oxford college of engineering (VTU))', 'Information Science', '67.33', '100', '0'), (1614, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '550', '1350', '3.5', '106', 'MU', 'Electronics and Telecommunication', '74.5', '100', '0'), (1615, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2012', '780', '350', '1130', '3.5', '93', 'University of Mumbai', 'Instrumentation', '70', '100', '0'), (1616, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '151', '315', '3', '101', 'MU', 'Information Technology', '71', '100', '0'), (1617, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '750', '510', '1260', '3.5', '86', 'Anna University', 'Computer Science', '80.4', '100', '0'), (1618, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '560', '1360', '3.5', '108', 'RAIT', 'Computer', '58', '100', '0'), (1619, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '400', '1160', '3', '102', 'VCET', 'Computers', '65', '100', '0'), (1620, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '166', '165', '331', '4', '112', 'K.S. Institute of Technology', 'Computer Science and Engineering', '75.5', '100', '23'), (1621, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '157', '146', '303', '3.5', '91', 'Kurukshetra University', 'CSE', '67.6', '100', '0'), (1622, 'Northeastern University', '1', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2013', '161', '149', '310', '4', '105', 'University of Mumbai', 'Electronics', '0', '0', '0'), (1623, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '165', '159', '324', '5', '111', 'Amrita School of Engineering', 'Computer Science', '8.93', '10', '0'), (1624, 'Northeastern University', '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '550', '1340', '3.5', '100', 'Nirma Institute of Technology', 'Electronics & Communications', '8.47', '10', '0'), (1625, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '153', '157', '310', '4.5', '114', 'BMSCE', 'Information Science', '7.49', '10', '6'), (1626, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '155', '148', '303', 'None', '90', 'Gurunanak institute of tech', 'CSE', '79', '100', '13'), (1627, 'Northeastern University', '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '158', '155', '313', '4', '118', 'GGSIPU', 'ECE', '74.6', '100', '0'), (1628, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2011', '800', '420', '1220', '3', '99', 'JNTU', 'ECE', '71', '100', '0'), (1629, 'Northeastern University', '1', 'Reject', 'MS', 'software engineering', 'Spring ', '2014', '158', '142', '300', '3', '89', 'Pune University', 'Information Technology', '59', '100', '0'), (1630, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '168', '142', '310', '3', '90', 'IIT Bhubaneswar', 'Electrcial Engineering', '8.14', '10', '0'), (1631, 'Northeastern University', '1', 'Reject', 'MS', 'MIS', 'Fall ', '2011', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (1632, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '153', '314', '4', '113', 'MU', 'Computer Engineering', '60.28', '100', '0'), (1633, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '700', '320', '1020', '3.5', '90', 'SCOE Pune', 'Information Technology', '58', '100', '0'), (1634, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '160', '150', '310', '4.5', '108', 'Manipal Institue of Technology', 'Computer Science', '7.4', '10', '0'), (1635, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2007', '780', '370', '1150', '5', '270', 'College of Technology Pantnagar', 'Electronics and Communication Engineering', '7.922', '10', '0'), (1636, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '470', '1240', '3', '97', 'DAVV', 'IIPS', '7.27', '10', '0'), (1637, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '156', '147', '303', '2.5', 'None', 'University of Mumbai', 'Computer Engineering', '72.69', '100', '0'), (1638, 'Northeastern University', '1', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '157', '146', '303', '3', '96', 'Anna University', 'Mechanical Engineering', '7', '10', '0'), (1639, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2007', '740', '470', '1210', '3', '257', 'Anna University', 'ECE', '8.4', '10', '0'), (1640, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '148', '310', '2.5', '92', 'University of Pune', 'IT', '60', '100', '25'), (1641, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '149', '311', '3', '92', 'JNTU', 'computer science', '67.51', '100', '0'), (1642, 'Northeastern University', '1', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2013', '156', '142', '298', '3', '97', 'SIES Graduate School of Technology', 'EXTC', '0', '0', '0'), (1643, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '157', '145', '302', '3.5', '92', 'None', 'ECE', '8.35', '10', '90'), (1644, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '800', '640', '1440', '4.5', '114', 'BITS Dubai', 'Electronics and Instrumentation', '8.97', '10', '0'), (1645, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '770', '630', '1400', '3.5', '105', 'MU', 'Electronics and Telecom', '55', '100', '0'), (1646, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '380', '1160', '2.5', '91', 'Pondicherry University', 'CSE', '7.45', '10', '0'), (1647, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '141', '300', '3', '88', 'Gujarat Technological University', 'Computer Engineering', '8.8', '10', '0'), (1648, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '158', '143', '301', '3.5', '90', "BLDEA's CET", 'Information Science & Engineering', '72', '100', '0'), (1649, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '160', '148', '308', '3', '92', 'VTU', 'Information science & Engineering', '72', '100', '0'), (1650, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '167', '330', '4', '112', 'University of Mumbai', 'Computer Engineering', '54', '100', '0'), (1651, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '153', '318', '4', '104', 'CHARUSAT', 'Computer Engineering', '8.58', '10', '0'), (1652, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '155', '318', '3.5', '103', 'St.Francis Institute of Technology', 'Computer Engineering', '57.4', '100', '0'), (1653, 'Northeastern University', '1', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2012', '148', '151', '299', '3.5', '112', 'MU', 'BE Civil', '0', '0', '0'), (1654, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '760', '640', '1400', '4', '112', 'MU', 'EXTC', '59', '100', '0'), (1655, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '153', '145', '298', '4', '91', 'U.P.T.U', 'Electrical & Electronics', '71.16', '100', '0'), (1656, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '160', '147', '307', '3', '86', 'MDU', 'MCA', '74', '100', '45'), (1657, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '159', '153', '312', '4', 'None', 'K J Somaiya College of Engiineering', 'Computers', '62', '100', '65'), (1658, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '720', '510', '1230', '3', '106', 'MU', 'Computer Engineering', '69', '100', '0'), (1659, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '159', '154', '313', '4', '103', 'Pune University', 'Information technology', '57.58', '100', '44'), (1660, 'Northeastern University', '1', 'Reject', 'MS', 'CS', 'Fall ', '2013', '161', '147', '308', '3', '80', 'MU', 'IT', '56.2', '100', '0'), (1661, 'Northeastern University', '1', 'Reject', 'MS', 'Instrumentation and Control', 'Fall ', '2011', '800', '550', '1350', '3', '96', 'Thapar University', 'Electrical &Instrumenattion; Engineering', '6.44', '10', '0'), (1662, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '166', '149', '315', '4', '107', 'VIT', 'ECE', '8.75', '10', '0'), (1663, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '430', '1190', '3.5', '91', 'srknec', 'electonics', '63', '100', '0'), (1664, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '162', '145', '307', '3', '91', 'IIT BHU', 'Electrical Engineering', '6.54', '10', '0'), (1665, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2013', '800', '450', '1250', '3', '108', 'Sardar Vallabhbhai National Institute of Technology', 'Electronics and communication', '8.27', '10', '0'), (1666, 'Northeastern University', '1', 'Reject', 'MS', 'CS/SE', 'Fall ', '2011', '750', '310', '1060', '3', '82', 'Sakalchand Patel College of Engg', 'Information Technology', '3.83', '4', '0'), (1667, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '790', '670', '1460', '5', '112', 'MU', 'Computer', '61', '100', '0'), (1668, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '150', '311', '3.5', '94', 'NIT Paatna', 'ELECTRICAL ENGINEERING', '8.57', '10', '0'), (1669, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '167', '157', '324', '4', '102', 'SASTRA', 'CSE', '6.9', '10', '0'), (1670, 'Northeastern University', '1', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Spring ', '2014', '155', '145', '300', '3.5', '95', 'BVCOE', 'IT', '67', '100', '0'), (1671, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '158', '139', '297', '3', '87', 'RTU/Government Engineering College Ajmer', 'Computer Science', '80', '100', '6'), (1672, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '530', '1310', '3.5', '109', 'MU', 'Electronics', '70.5', '100', '0'), (1673, 'Northeastern University', '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '160', '144', '304', '3', '98', 'KLE College of Engineering and Technology Belgaum', 'Electronics and Communication', '66.26', '100', '0'), (1674, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '159', '149', '308', '3.5', '103', 'PESIT', 'Computer Engineering', '0', '0', '0'), (1675, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '530', '1320', '3', '100', 'University of Mumbai', 'EXTC', '70', '100', '0'), (1676, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2014', '168', '152', '320', '3.5', 'None', 'mharana pratap college of technology gwalior', 'Electrical', '74.8', '100', '0'), (1677, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '152', '152', '304', '3.5', '102', 'University of Pune', 'Computer Engineering', '62.73', '100', '0'), (1678, 'Northeastern University', '1', 'Reject', 'MS', 'Information Security', 'Fall ', '2011', '780', '540', '1320', '4', '117', 'BITS Pilani', 'Computer Science', '8.4', '10', '0'), (1679, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical and computer science', 'Fall ', '2011', '760', '550', '1310', '3', '112', 'MU', 'Electronics & Telecom', '71', '100', '0'), (1680, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '150', '312', '3', '105', 'Dharamsinh Desai University', 'Information Technology', '8.17', '10', '9'), (1681, 'Northeastern University', '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '680', '1480', '3', '106', 'SSN College of Engineering', 'ECE', '83.7', '100', '0'), (1682, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2013', '164', '153', '317', '4', '108', 'RGTU', 'Electronics & Communication Engineering', '75', '100', '0'), (1683, 'Northeastern University', '1', 'Reject', 'MS', 'MIS-management related courses', 'Fall ', '2013', '159', '150', '309', '3.5', '93', 'University of Pune', 'Computer Science', '56', '100', '0'), (1684, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2014', '162', '151', '313', '3', '101', 'Amrita Vishwa Vidhyapeetham', 'Electronics and Instrumentation Engineering', '7.48', '10', '43'), (1685, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '154', '315', '4.5', '106', 'MU', 'Information Technology', '67.23', '100', '24'), (1686, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '157', '319', '4', '112', 'PESIT', 'Computer science and Engineering', '8.21', '10', '25'), (1687, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2013', '162', '151', '313', '2.5', '106', 'K J Somaiya College of Engiineering', 'CSE', '7.1', '10', '0'), (1688, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '168', '152', '320', '3.5', 'None', 'MU', 'Computer Engineering', '59', '100', '0'), (1689, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '167', '158', '325', '4.5', '108', 'VTU', 'Electronics and communication', '74.6', '100', '0'), (1690, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '150', '311', '3', '91', 'VIT', 'Computer Science', '8.72', '10', '0'), (1691, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '151', '313', '3.5', '106', 'MU', 'Computer Engineering', '60.25', '100', '58'), (1692, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2011', '770', '520', '1290', '3.5', '114', 'KIIT', 'Electronics & Electrical Engg.', '9.32', '10', '0'), (1693, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '142', '301', '3.5', '94', 'MSRIT', 'Computer Science & Engineering', '7.14', '10', '0'), (1694, 'Northeastern University', '1', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '159', '144', '303', '3', '96', 'Symbiosis Institute of Technology', 'Mechanical', '2.984', '4', '0'), (1695, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2016', '164', '150', '314', '3.5', '101', 'TIT&Sc.;', 'Information Tech.', '71', '100', '0'), (1696, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '156', '138', '294', '3.5', '92', 'M.D.U.', 'Computer science', '66', '100', '0'), (1697, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '780', '380', '1160', '3', '106', 'MU', 'IT', '61', '100', '0'), (1698, 'Northeastern University', '1', 'Reject', 'MS', 'Mechatronics/Robotics', 'Fall ', '2014', '162', '150', '312', '3', 'None', 'Dharamsinh Desai University', 'Electronics and communication', '69', '100', '24'), (1699, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science/ Electronics and Communication', 'Fall ', '2012', '760', '460', '1220', '3', 'None', 'MU', 'Computer Engineering', '65', '100', '0'), (1700, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '160', '144', '304', '2.5', '93', 'MU', 'Computer Engineering', '53', '100', '42'), (1701, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '157', '157', '314', '4', '113', 'PICT', 'I.T.', '60', '100', '0'), (1702, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '500', '1260', '4', '98', 'Xavier Institute of Engineering University of Mumbai', 'Computer Engineering', '60.084', '100', '0'), (1703, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '510', '1300', '3', '91', 'K J Somaiya College of Engiineering', 'Electronics & Telecom', '61', '100', '0'), (1704, 'Northeastern University', '1', 'Reject', 'MS', 'Information Systems', 'Spring ', '2013', '138', '152', '290', '2', 'None', 'JNTU', 'cse', '71', '100', '0'), (1705, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '150', '314', 'None', '107', 'MU', 'Information Technology', '54', '100', '0'), (1706, 'Northeastern University', '1', 'Reject', 'MS', 'MIS/ GAme Dev/ Digital Media', 'Fall ', '2014', '161', '145', '306', '3', '102', 'Pune University', 'Computer', '64', '100', '23'), (1707, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '168', '154', '322', '3', '96', 'L D College Of Engineering', 'COMPUTER', '7.24', '10', '12'), (1708, 'Northeastern University', '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '770', '450', '1220', '3', '88', 'Sir MVIT', 'EC', '8.2', '100', '0'), (1709, 'Northeastern University', '1', 'Reject', 'MS', 'CS', 'Fall ', '2015', '700', '420', '1120', '3', 'None', 'MU', 'Computers', '69.18', '100', '24'), (1710, 'Northeastern University', '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '770', '540', '1310', '4.5', '110', 'Sri Jayachamarajendra College of Engineering', 'Electronics and Communication', '9.17', '10', '0'), (1711, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '144', '302', '2.5', '92', 'Gujarat Technological University', 'computer', '7.39', '10', '0'), (1712, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '163', '155', '318', '4', '116', 'Jaypee Institute of Information Technology', 'Computer Science', '7.6', '10', '0'), (1713, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '153', '314', '3.5', '108', 'Guru Gobind Singh Indraprashta University', 'Computer Science', '71', '100', '6'), (1714, 'Northeastern University', '1', 'Reject', 'MS', 'CS MIS', 'Fall ', '2013', '161', '152', '313', '3.5', '97', 'MU', 'Electrical & Electronics', '64', '100', '0'), (1715, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '157', '150', '307', '3', '95', 'Amity University', 'CSE', '8.35', '10', '0'), (1716, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '730', '310', '1040', '2.5', '91', 'Sri Ramakrishna Engineering College', 'Electronics and Communications Engineering', '8.61', '10', '0'), (1717, 'Northeastern University', '1', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Spring ', '2015', '159', '149', '308', '3', '95', 'Vaish College of Engineering', 'IT', '73.1', '100', '30'), (1718, 'Northeastern University', '1', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '159', '157', '316', '4.5', '110', 'Pune University', 'Mechanical Engineering', '57', '100', '0'), (1719, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '156', '158', '314', '4.5', '115', 'BITS Pilani', 'Computer Science', '7.58', '10', '0'), (1720, 'Northeastern University', '1', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '155', '152', '307', '3', '103', 'RGTU', 'EC', '70.02', '100', '0'), (1721, 'Northeastern University', '1', 'Reject', 'MS', 'CS/SE', 'Fall ', '2013', '154', '153', '307', '3.5', '101', 'VTU', 'Electronics & Communication', '64.7', '100', '0'), (1722, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '700', '570', '1270', '3.5', '107', 'PICT', 'Computer Engineering', '58', '100', '0'), (1723, 'Northeastern University', '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '157', '143', '300', '3.5', '102', 'VTU', 'Electronics and Communication', '8.74', '10', '0'), (1724, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '148', '311', '3.5', '93', "Siksha 'O' Anusandhan University", 'Electrical and Electronics Engineering', '8.32', '10', '30'), (1725, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '160', '149', '309', '3.5', '97', 'NIT ALLAHABAD', 'Computer Science & Engg', '7.1', '10', '0'), (1726, 'Northeastern University', '1', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '156', '153', '309', '3', '104', 'Babu Banarasi Das NIT and Management Lucknow. UPTU', 'Mechanical Engineering', '73.22', '100', '0'), (1727, 'Northeastern University', '1', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '610', '580', '1190', '3', '102', 'None', 'CSE', '8.3', '10', '0'), (1728, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '168', '144', '312', '3', '93', 'Punjabi University', 'Mechanical Engineering', '8.13', '10', '28'), (1729, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical and Electronics', 'Fall ', '2012', '159', '155', '314', '3.5', '102', 'Sardar Patel University', 'Electronics & Communication', '3.45', '4', '0'), (1730, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '157', '152', '309', '3', '105', 'PICT', 'Information Technology', '73.53', '100', '0'), (1731, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '800', '350', '1150', '2.5', '89', 'Gujarat Technological University', 'Computer Engineering', '70', '100', '0'), (1732, 'Northeastern University', '1', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '155', '137', '292', '3', '101', 'PICT', 'Information Technology', '61.33', '100', '0'), (1733, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '152', '156', '308', '4.5', '113', 'Anna University', 'CS', '72', '100', '48'), (1734, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '630', '470', '1100', '3', '94', 'Pune University', 'Information Technology', '0', '0', '0'), (1735, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '157', '319', '5', '115', 'NIT', 'Computer Engineering', '7.5', '10', '0'), (1736, 'Northeastern University', '1', 'Reject', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (1737, 'Northeastern University', '1', 'Reject', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (1738, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical and computer science', 'Fall ', '2006', '800', '550', '1350', 'None', '290', 'Ramrao Adik Institute of Technology', 'EE', '0', '0', '0'), (1739, 'Northeastern University', '1', 'Reject', 'MS', 'MIS', 'Fall ', '2011', '660', '400', '1060', '3', '95', 'MU', 'IT', '66', '100', '0'), (1740, 'Northeastern University', '1', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '151', '144', '295', '3', '102', 'MU', 'CS', '63.11', '100', '0'), (1741, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '165', '148', '313', '3.5', '102', 'Amrita School of Engineering', 'Computer Science', '6.17', '10', '0'), (1742, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '770', '550', '1320', '3.5', '94', 'Madhav Institue of Technology and Science R.G.P.V. Bhopal', 'Electrical Engineering', '73.43', '100', '0'), (1743, 'Northeastern University', '1', 'Reject', 'MS', 'CS', 'Fall ', '2013', '159', '146', '305', '3', '91', 'University of Pune', 'Computer Science', '63', '100', '0'), (1744, 'Northeastern University', '1', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '740', '440', '1180', '2.5', '104', 'MU', 'Electronics and Telecommunication', '54', '100', '0'), (1745, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '167', '150', '317', '3.5', '93', 'ISM Dhanbad', 'Electronics Engg.', '7.88', '10', '0'), (1746, 'Northeastern University', '1', 'Reject', 'MS', 'Engineering Management', 'Spring ', '2012', '760', '320', '1080', '4.5', '96', 'JNTU', 'Computer Science', '62', '100', '0'), (1747, 'Northeastern University', '1', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '155', '145', '300', '3', '90', 'None', 'Mechanical Engineering', '70', '100', '0'), (1748, 'Northeastern University', '1', 'Reject', 'MS', 'Bioinformatics', 'Fall ', '2012', '155', '149', '304', '3.5', '89', 'VTU', 'Biotechnology', '71', '100', '0'), (1749, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '410', '1210', '3.5', '91', 'Rajiv Gandhi Institute Of Technology', 'COMPUTER SCIENCE', '63', '100', '0'), (1750, 'Northeastern University', '1', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2015', '161', '150', '311', '4', '116', 'University of Mumbai', 'Electronics and Telecommunication', '60.51', '100', '0'), (1751, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '710', '430', '1140', '3', '95', "St Joseph's College of Engineering", 'cse', '70', '100', '0'), (1752, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2012', '740', '440', '1180', '3', '106', 'MU', 'Computer Engineering', '56.05', '100', '0'), (1753, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '156', '147', '303', '3', '85', 'UPTU', 'Computer Science', '71.44', '100', '0'), (1754, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '151', '312', '3.5', '102', 'Ajay Kumar Garg Engineering College', 'Computer Science & Engineering', '62.1', '100', '0'), (1755, 'Northeastern University', '1', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2015', '159', '152', '311', '3.5', '100', 'None', 'Civil Engineering', '71.9', '100', '8'), (1756, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '760', '410', '1170', '3', '104', 'None', '0', '70.5', '100', '0'), (1757, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2011', '760', '540', '1300', '3', '92', 'MDU', '0', '65', '100', '0'), (1758, 'Northeastern University', '1', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '157', '156', '313', '3', '109', 'MU', 'Computer', '56', '100', '48'), (1759, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2016', '158', '151', '309', '3', '93', 'Mody University', 'MCA', '9.2', '10', '0'), (1760, 'Northeastern University', '1', 'Reject', 'MS', 'Information Systems', 'Fall ', '2013', '750', '600', '1350', '3', '104', 'Lokmanya Tilak College of Engineering', 'Computer', '3.57', '4', '0'), (1761, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '160', '149', '309', '2.5', '98', 'JNTU', 'CS', '70.79', '100', '55'), (1762, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '770', '310', '1080', '2.5', '93', 'Amity University', 'Computer Science and Engineering', '7.5', '10', '0'), (1763, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '800', '510', '1310', '3.5', '108', 'GITAM', 'ECE', '7.83', '10', '0'), (1764, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '147', '310', '3', '107', 'None', '0', '0', '0', '0'), (1765, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '710', '480', '1190', '4', '109', 'MU', 'Electronics and Telecommunication', '60.21', '100', '0'), (1766, 'Northeastern University', '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '166', '150', '316', '4', '98', 'Nirma Institute of Technology', 'Electronics & Communication Section Electrical Department', '7.75', '10', '0'), (1767, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '740', '510', '1250', '3', '91', 'Kurukshetra University', 'IT', '77.1', '100', '0'), (1768, 'Northeastern University', '1', 'Reject', 'MS', 'MIS', 'Spring ', '2013', '157', '153', '310', '4', '105', 'RNSIT', 'Comp. Sci.', '70', '100', '0'), (1769, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '170', '161', '331', '5', '113', 'Manipal Institue of Technology', 'CSE', '7.73', '10', '31'), (1770, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '520', '1280', '3.5', '91', 'GHRCE Nagpur', 'Electronics and Telecommunication', '73', '100', '0'), (1771, 'Northeastern University', '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '770', '460', '1230', '3', '104', 'VTU', 'Electronics and Communication', '80', '100', '0'), (1772, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '165', '150', '315', '3.5', '105', 'R V College of Engineering', 'Information science', '8.12', '10', '19'), (1773, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '770', '400', '1170', '3', '96', 'University of Mumbai', 'CMPN', '64', '100', '0'), (1774, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '155', '317', '3.5', '103', 'Manipal Institue of Technology', 'Computer Science', '8.54', '10', '16'), (1775, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '163', '154', '317', '4', '111', 'DBIT', 'Mechanical Engineering', '56', '100', '0'), (1776, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2006', '740', '410', '1150', '2.5', '273', 'MGM College of Engineering & Technology', 'Computer', '58', '100', '0'), (1777, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '590', '1390', '3', '100', 'Rajiv Gandhi Institute Of Technology', 'Computer Engineering', '62.88', '100', '0'), (1778, 'Northeastern University', '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '161', '148', '309', '3.5', '111', 'Manipal Institue of Technology', 'Electrical ad Electronics', '7.4', '10', '0'), (1779, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '155', '318', '3.5', '103', 'MU', 'CE', '57.4', '100', '0'), (1780, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', 'None', 'None', '0', 'None', '111', 'Ramrao Adik Institute of Technology', 'Computers', '70', '100', '14'), (1781, 'Northeastern University', '1', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2012', '650', '560', '1210', '4', '104', 'University of Mumbai', 'Electronics & Telecommunications', '58', '100', '0'), (1782, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '150', '312', '3', '86', 'Amity University', 'Computer Science & Engineering', '7.81', '10', '0'), (1783, 'Northeastern University', '1', 'Reject', 'MS', 'MIS', 'Fall ', '2011', '720', '540', '1260', '3.5', '107', 'Fr.CRCE Bandra', 'CS', '0', '0', '0'), (1784, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '157', '146', '303', '4', '98', 'K J Somaiya College of Engiineering', 'Electronics and Telecommunication', '65', '100', '0'), (1785, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '680', '490', '1170', '3', '93', 'SRM', 'CS', '8.69', '10', '0'), (1786, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '159', '150', '309', '3.5', '90', 'Jaypee Institute of Information Technology', 'Information Technology', '6.7', '10', '0'), (1787, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '156', '317', '3', '94', 'Rajiv Gandhi Prodyogiki Vishwavidyalaya', 'computer science', '8.32', '10', '0'), (1788, 'Northeastern University', '1', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '156', '153', '309', '3.5', '87', 'GITAM', 'Mechanical Engineering', '7.12', '10', '32'), (1789, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '159', '139', '298', '2', 'None', 'None', 'Computer Science', '8.37', '10', '0'), (1790, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '160', '146', '306', '2.5', '92', 'SGGSIE&T; Nanded', 'Information Technology', '7.8', '10', '0'), (1791, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '740', '490', '1230', '3', '98', 'SIES Graduate School of Technology', 'computer', '60', '100', '0'), (1792, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '161', '146', '307', '3', '94', 'BITS Pilani', 'Msc Tech. Information Systems', '6.12', '10', '0'), (1793, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '790', '510', '1300', 'None', 'None', 'MU', 'Computer', '63', '100', '0'), (1794, 'Northeastern University', '1', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2014', '164', '161', '325', '4', '116', 'K J Somaiya College of Engiineering', 'Electronics and Telecommunication', '65.48', '100', '0'), (1795, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '550', '1340', '2.5', '90', 'COEP', 'Electronics and Telecommunications', '7.3', '10', '0'), (1796, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '147', '308', '3.5', '89', 'Army Institute of Technology', 'Computer Science', '65', '100', '0'), (1797, 'Northeastern University', '1', 'Reject', 'MS', 'Information Security', 'Fall ', '2014', '163', '151', '314', 'None', '90', 'RVR & JC College of Engineering', 'ELECTRONICS&COMMUNICATION;', '83', '100', '0'), (1798, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '710', '590', '1300', '3', '90', 'Sir MVIT', 'ece', '84', '100', '0'), (1799, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '149', '311', '3', '95', 'MU', 'computer engg', '62', '100', '0'), (1800, 'Northeastern University', '1', 'Reject', 'MS', 'Information Security', 'Spring ', '2016', '160', '145', '305', '2.5', '98', 'SVCE', 'CSE', '6.67', '10', '0'), (1801, 'Northeastern University', '1', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '156', '151', '307', '3', '103', 'University of Mumbai', 'Computer Engg', '60.11', '100', '0'), (1802, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '159', '321', '4.5', '113', 'NIT Durgapur', 'Information Technology', '7.81', '10', '0'), (1803, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '168', '151', '319', '3', 'None', 'IIT Guwahati', 'EEE', '7.4', '100', '0'), (1804, 'Northeastern University', '1', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '157', '146', '303', '3.5', '104', 'University of Mumbai', 'I.T', '65', '100', '0'), (1805, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '650', '1440', '3', '106', 'Bharati Vidyapeeth', 'extc', '58', '100', '0'), (1806, 'Northeastern University', '1', 'Reject', 'MS', 'MIS', 'Fall ', '2015', '154', '144', '298', 'None', 'None', 'University of Mumbai', 'Computer Engineering', '59', '100', '24'), (1807, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '510', '1300', '3.5', '109', 'SVNIT Surat', 'Electronics Department', '9.53', '10', '0'), (1808, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science and Engineering', 'Fall ', '2015', '162', '157', '319', '3', '114', 'JSS Noida', 'ECE', '61.1', '100', '24'), (1809, 'Northeastern University', '1', 'Reject', 'MS', 'MIS', 'Spring ', '2015', '159', '157', '316', '4', '116', 'UPTU', 'CSE', '70.24', '100', '24'), (1810, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '770', '460', '1230', '3', 'None', 'WBUT', 'electrical', '8.25', '10', '0'), (1811, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '780', '490', '1270', '3', '96', 'YCCE', 'Electronics Engg', '63.5', '100', '0'), (1812, 'Northeastern University', '1', 'Reject', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '155', '145', '300', '3', '101', 'MU', 'Computer Science', '61', '100', '0'), (1813, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering/Comp Science', 'Fall ', '2014', '160', '153', '313', '3', '112', 'MU', 'COMPUTER', '67', '100', '0'), (1814, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '590', '1390', '5', '101', 'MU', 'Computer Engineering', '60', '100', '0'), (1815, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '152', '317', '4', '106', 'MU', 'Computer Engineering', '62', '100', '0'), (1816, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '155', '316', '4', '108', 'Rajiv Gandhi Technical University', 'Information Technology', '72.06', '100', '50'), (1817, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '149', '313', '3', '103', 'Amrita School of Engineering', 'CSE', '7.2', '10', '0'), (1818, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '157', '149', '306', '3.5', '94', 'BVBCET', 'Computer Science', '7.26', '10', '0'), (1819, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '164', '152', '316', '3.5', '110', 'K J Somaiya College of Engiineering', 'ELECTRONICS', '75', '100', '0'), (1820, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '157', '147', '304', '3', '7', 'Pune University', 'computer', '54.5', '100', '0'), (1821, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '600', '1390', '4', '113', 'MU', 'Computer Engineering', '60', '100', '0'), (1822, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '168', '147', '315', '3', '91', 'Gujarat Technological University', 'Computer Engineering', '7.96', '10', '29'), (1823, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '480', '1250', '3', '90', 'SJCE', 'Information science', '8.23', '10', '0'), (1824, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '510', '1310', '3', '107', 'SCOE Pune', 'Computer Science', '63', '100', '0'), (1825, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical and computer engineering electrical engineering telecommunications engineering', 'Fall ', '2014', '163', '146', '309', '2.5', '88', 'NIT Raipur', 'Electronics and Telecommunication', '7.65', '10', '0'), (1826, 'Northeastern University', '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '790', '360', '1150', '3', '89', 'YCCE', 'electronics engineering', '64', '100', '0'), (1827, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '750', '480', '1230', '3', '97', 'VTU', 'ECE', '71', '100', '0'), (1828, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '151', '314', '3.5', '107', 'JNTU', 'CSE', '71', '100', '0'), (1829, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science/ Electronics and Communication', 'Fall ', '2013', '800', '590', '1390', '3.5', '110', 'Anna University', 'Computer Science and Engineering', '73', '100', '0'), (1830, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '159', '155', '314', '4', '108', 'University of Pune', 'Computer Engineering', '61', '100', '0'), (1831, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '149', '312', '3.5', '99', 'IET DAVV', 'IT', '75.62', '100', '0'), (1832, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2006', '770', '530', '1300', '5', '280', 'MU', 'Computer Engineering', '55', '100', '0'), (1833, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '161', '148', '309', '3', '93', 'Anna University', 'EE', '8.99', '10', '0'), (1834, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2012', '750', '500', '1250', '2.5', '98', 'VIT University', 'I.T', '8.2', '10', '0'), (1835, 'Northeastern University', '1', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Spring ', '2016', '158', '147', '305', '3', '87', 'Osmania University', 'computer science', '84', '100', '24'), (1836, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '740', '290', '1030', '3', '86', 'Pune University', 'Computer Engg', '68.6', '100', '0'), (1837, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '530', '1310', '3', '93', 'K J Somaiya College of Engiineering', 'Electronics', '56', '100', '0'), (1838, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2014', '163', '148', '311', 'None', '83', 'indus institute', 'computer engineering', '8.62', '10', '0'), (1839, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '170', '154', '324', '3', 'None', 'Jaypee Institute of Information Technology', 'computer science', '6.4', '100', '36'), (1840, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '157', '320', '3', '106', 'Jaypee Institute of Information Technology', 'CS', '7.4', '10', '0'), (1841, 'Northeastern University', '1', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '150', '142', '292', '3', '87', 'JNTU', 'ECE', '69', '100', '0'), (1842, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '159', '321', '3', '105', 'MU', 'Electronics and telecommunications', '54', '100', '0'), (1843, 'Northeastern University', '1', 'Reject', 'MS', 'MIS', 'Fall ', '2011', '630', '490', '1120', '3', '86', 'PICT', 'CS', '0', '0', '0'), (1844, 'Northeastern University', '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '730', '420', '1150', '3.5', '105', 'College of Engineering and Technology', 'Electronics and telecommunications', '0', '0', '0'), (1845, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '167', '152', '319', '4', '113', 'Manipal Institue of Technology', 'ECE', '8.87', '10', '0'), (1846, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '161', '146', '307', '3', 'None', 'Ganpat University', 'Computer', '72.51', '100', '42'), (1847, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', 'None', 'None', '0', '3', '84', 'None', 'Electronics and Communication', '70', '100', '0'), (1848, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '780', '610', '1390', '4', '106', 'MU', 'Information Technology', '55', '100', '0'), (1849, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2011', '780', '480', '1260', '3.5', '103', 'MU', 'EXTC', '55', '100', '0'), (1850, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '161', '146', '307', '3', '92', 'Sreenidhi Institute of Science & Technology', 'Computer Science', '69', '100', '0'), (1851, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '145', '306', '3', '91', 'SVITS', 'Computer Science & Engineering', '67', '100', '0'), (1852, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '151', '318', '4', '99', 'Amrita Vishwa Vidhyapeetham', 'Computer Science', '8.6', '10', '12'), (1853, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2008', '770', '370', '1140', '3.5', '99', 'Anna University', 'EIE', '74', '100', '0'), (1854, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '139', '301', '3', '90', 'D J Sanghvi', 'IT', '63', '100', '0'), (1855, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '780', '610', '1390', '4', '108', 'MU', 'Computer Engnineering', '61', '100', '0'), (1856, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '680', '1480', '3.5', '111', 'MU', 'Computer', '7', '100', '0'), (1857, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '770', '550', '1320', '3.5', '94', 'Madhav Institute of Technology & Science Gwalior', 'Electrical Engineering', '73.43', '100', '0'), (1858, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '156', '154', '310', 'None', '101', 'Pune University', 'Information Technology', '0', '0', '0'), (1859, 'Northeastern University', '1', 'Reject', 'MS', 'Electronics and Communication', 'Spring', 'None', '161', '148', '309', '3', 'None', 'Anna University', 'Electronics and communication engineering', '77', '100', '0'), (1860, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '164', '149', '313', '3', '92', 'Lovely Professional Univesity', 'Computer Science', '74.6', '100', '39'), (1861, 'Northeastern University', '1', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '152', '148', '300', '3.5', '104', 'Anna University', 'ECE', '70', '100', '0'), (1862, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '159', '318', '4', '115', 'JNTU', 'Computer Science and Enigneering', '77.43', '100', '0'), (1863, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '800', '560', '1360', '3', '90', 'IIIT Hyderabad', 'Computer Science', '6.46', '10', '0'), (1864, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '165', '161', '326', '3.5', '111', 'University of Pune', 'Computer Engineering', '62', '100', '24'), (1865, 'Northeastern University', '1', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '161', '150', '311', '3', '92', 'MU', 'Marine Engineering', '68.8', '100', '27'), (1866, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '167', '161', '328', '4', '117', 'MU', 'B.E.I.T', '61.1', '100', '0'), (1867, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '760', '640', '1400', '4', '110', 'Pune University', 'electronics', '54', '100', '0'), (1868, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '770', '380', '1150', '3', '90', 'K J Somaiya College of Engiineering', 'I.T.', '66', '100', '0'), (1869, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '340', '1110', '3.5', '93', 'Sinhgad College of Engineering', 'Information Technology', '64', '100', '0'), (1870, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '500', '1280', '2.5', '96', 'University of Mumbai', 'Information Technology', '60.49', '100', '0'), (1871, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '155', '318', '4.5', '111', 'Pune University', 'Computer Science', '67', '100', '14'), (1872, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '155', '316', '3.5', '111', 'MU', 'IT', '65.6', '100', '37'), (1873, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '700', '480', '1180', '3', '89', 'Anna University', 'Computer Science', '72', '100', '0'), (1874, 'Northeastern University', '1', 'Reject', 'MS', 'MIS-management related courses', 'Fall ', '2012', '640', '620', '1260', '3.5', '105', 'None', '0', '0', '0', '0'), (1875, 'Northeastern University', '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '157', '154', '311', '3', '101', 'VTU', 'ECE', '69', '100', '0'), (1876, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '158', '324', '3.5', '108', 'MU', 'Computer Science', '59.6', '100', '0'), (1877, 'Northeastern University', '1', 'Reject', 'MS', 'CS', 'Fall ', '2015', '162', '144', '306', '4', '104', 'D J Sanghvi', 'Computers', '78.58', '100', '0'), (1878, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '340', '1100', '3', '80', 'Faculty of technology & Engg. MSU', 'Computer Science & Enggineering', '3.55', '4', '0'), (1879, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '600', '1380', '3.5', '91', 'VTU', 'ECE', '67', '100', '0'), (1880, 'Northeastern University', '1', 'Reject', 'MS', 'Electronics & Communication', 'Fall ', '14', '156', '146', '302', '3', '106', 'U.I.T. rgpv', 'electronics and communication', '67.3', '100', '10'), (1881, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '149', '312', '3.5', '111', 'JNTU', 'CSE', '78.3', '100', '12'), (1882, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '157', '150', '307', '3', '95', 'Fr. Conceicao Rodrigues College of Engineering', 'Information Technology', '65.32', '100', '0'), (1883, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2007', '550', '790', '1340', '4', '267', 'MU', 'Electronics', '59', '100', '0'), (1884, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '160', '156', '316', '3', '98', 'MU', 'Elecronics and Telecommunication', '64', '100', '0'), (1885, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '157', '147', '304', '3', '89', 'VTU', 'Electronics and Communication', '65', '100', '0'), (1886, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '143', '304', '3', '106', 'Notre Dame University Louaize', 'ECE', '3.62', '4', '0'), (1887, 'Northeastern University', '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '300', '1080', '3', '90', 'Sir MVIT', 'Electronics and communication', '72', '100', '0'), (1888, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '152', '313', 'None', '102', 'DIT Dehradun', 'CSE', '70', '100', '0'), (1889, 'Northeastern University', '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '720', '590', '1310', '4', '99', 'Shri Ramdeobaba Engineering College', 'Electronics and Communication', '72', '100', '0'), (1890, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '150', '311', '3', '91', 'P.V.P.I.T', 'E&TC;', '0', '0', '0'), (1891, 'Northeastern University', '1', 'Reject', 'MS', 'software engineering', 'Fall ', '2013', '157', '152', '309', '3.5', 'None', 'SRM', 'Electronics and Communications', '7.7', '10', '0'), (1892, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '670', '600', '1270', '3', '93', 'VTU', 'CSE', '67', '100', '0'), (1893, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '150', '313', '3', '100', 'Jaypee Institute of Information Technology', 'Computer Science', '5.6', '10', '43'), (1894, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '740', '530', '1270', '4', '110', 'VTU', 'Computer Science', '59.5', '100', '0'), (1895, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '148', '307', '3.5', '105', 'SIES Graduate School of Technology', 'BE-Computer Engineering', '73.48', '100', '0'), (1896, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '780', '550', '1330', '3', '98', 'RGTU', 'EC', '73', '100', '0'), (1897, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '730', '480', '1210', '4', '114', 'MU', 'Electronics and Telecommunication', '64.87', '100', '0'), (1898, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '146', '307', '3.5', '103', 'RGPV', 'Electronics', '75', '100', '0'), (1899, 'Northeastern University', '1', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '162', '145', '307', '3', '89', 'MU', 'Computer', '61', '100', '0'), (1900, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '168', '154', '322', '3.5', 'None', 'JNTU', 'CSE', '63', '100', '0'), (1901, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2006', '760', '510', '1270', '4', '287', 'VIT', 'E.C.E', '9.07', '10', '0'), (1902, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '720', '450', '1170', '4', '108', 'Anna University', 'Computer Science and Engg.', '7.04', '10', '0'), (1903, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2014', '160', '155', '315', '3.5', '105', 'JNTU', 'ECE', '71', '100', '0'), (1904, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '730', '360', '1090', '3', '85', 'Harcourt Butler Technological Institute', 'Computer Science', '65.44', '100', '0'), (1905, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '166', '152', '318', '3', '112', 'MU', 'EXTC', '63', '100', '42'), (1906, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering/Comp Science', 'Fall ', '2015', '156', '151', '307', '3', '90', 'DMI College of Engineering', 'I.T', '6.53', '10', '22'), (1907, 'Northeastern University', '1', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '154', '148', '302', '3', '85', 'SIT', 'Computer Sc. & Engg.', '60', '100', '0'), (1908, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2016', '168', '151', '319', '4', '104', 'BITS Goa', 'Computer Science', '6.53', '10', '24'), (1909, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '158', '147', '305', '3.5', '101', 'Sinhgad College of Engineering', 'Computer', '57.28', '100', '0'), (1910, 'Northeastern University', '1', 'Reject', 'MS', 'Applied Mathematics', 'Fall ', '2014', '167', '151', '318', '3.5', '108', "St. Xavier's college Kolkata", 'Mathematics', '57.5', '100', '0'), (1911, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '560', '1310', '4', '105', 'MU', 'Information Technology(B.E. I.T)', '58.8', '100', '0'), (1912, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '720', '530', '1250', '3', '91', 'University of Pune', 'information technology', '65', '100', '0'), (1913, 'Northeastern University', '1', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2012', '690', '540', '1230', '4', '109', 'Anna University', 'ECE', '6.136', '10', '0'), (1914, 'Northeastern University', '1', 'Reject', 'MS', 'Chemical/Environmental Engg.', 'Fall ', '2011', '760', '420', '1180', '3', '101', 'Institute of Technology Nirma University', 'Chemical Engineering', '6.84', '10', '0'), (1915, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '159', '151', '310', '4.5', '110', 'Ramrao Adik Institute of Technology', 'Computer engineering', '69.96', '100', '17'), (1916, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '159', '322', '3.5', '111', 'Dhirubhai Ambani Institute of Information & Communication Technology', 'ICT', '6.1', '10', '0'), (1917, 'Northeastern University', '1', 'Reject', 'MS', 'software engineering', 'Fall ', '2015', '163', '147', '310', '3.5', '97', 'GITAM', 'CSE', '8.01', '10', '0'), (1918, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '530', '1290', '3', '80', 'MU', 'Electronics', '55', '100', '0'), (1919, 'Northeastern University', '1', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '165', '156', '321', '4', '112', 'MU', 'Electronics and Telecommunication Engineering', '59.9', '100', '0'), (1920, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '800', '530', '1330', '3', '96', 'Pune University', 'Information technology', '65', '100', '0'), (1921, 'Northeastern University', '1', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2011', '720', '450', '1170', '3', '85', 'MU', 'Electronics', '59.7', '100', '0'), (1922, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '144', '302', '3.5', '103', 'JNTU', 'Electronics and Instrumentation', '78.87', '100', '0'), (1923, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '160', '150', '310', '3', '100', 'PICT', 'Computer Science', '3.2', '4', '0'), (1924, 'Northeastern University', '1', 'Reject', 'MS', 'Biomedical Engineering', 'Fall ', '2006', '780', '550', '1330', '3.5', '273', 'Sathyabama University', 'Electronics & Communication', '85', '100', '0'), (1925, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '154', '152', '306', '4.5', '115', 'MJCET', 'Computer Science', '74.6', '100', '0'), (1926, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '159', '153', '312', '3', '105', 'BNMIT', 'Information Science and Engineering', '74', '100', '0'), (1927, 'Northeastern University', '1', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '151', '151', '302', '3.5', '105', 'West Bengal University Of Technology', 'Information Technology', '8.3', '10', '0'), (1928, 'Northeastern University', '1', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2013', '159', '145', '304', '3', '82', 'MU', 'Instrumentation Engineering', '53', '100', '0'), (1929, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '550', '1350', '4', '107', 'DA-IICT', 'ICT (Information and Communication Technology)', '7.09', '10', '0'), (1930, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '740', '510', '1250', '4', '104', 'SIES Graduate School of Technology', 'Computer engg', '55', '100', '0'), (1931, 'Northeastern University', '1', 'Reject', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (1932, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '750', '580', '1330', '3.5', '101', 'None', '0', '0', '0', '0'), (1933, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '153', '314', '4', '111', 'Govt. Engineering College Barton Hill', 'Electronics and Communication', '6.8', '10', '69'), (1934, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '155', '319', '3.5', 'None', 'University of Pune', 'Production Engineering', '8.8', '10', '0'), (1935, 'Northeastern University', '1', 'Reject', 'MS', 'CS', 'Fall ', '2014', '152', '141', '293', '3', 'None', 'Pune University', 'Information Technology', '60', '100', '0'), (1936, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2011', '700', '320', '1020', '3.5', '91', 'Pune University', 'Computer Engineering', '62', '100', '0'), (1937, 'Northeastern University', '1', 'Reject', 'MS', 'Embedded systems', 'Fall ', '2012', '780', '600', '1380', '3', '106', 'VIT Mumbai University', 'Electronics', '62', '100', '0'), (1938, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '156', '146', '302', 'None', '86', 'Pune University', 'Information technology', '63', '100', '0'), (1939, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '156', '145', '301', '4', '90', 'University of Mumbai', 'Electrical Engineering', '62', '100', '0'), (1940, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '168', '149', '317', '3.5', '106', 'SASTRA', 'ECE', '7.4', '10', '0'), (1941, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '700', '600', '1300', '3.5', '110', 'MU', 'Computer Engineering', '62', '100', '0'), (1942, 'Northeastern University', '1', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '148', '141', '289', 'None', '90', 'None', '0', '0', '0', '0'), (1943, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering/Comp Science', 'Fall ', '2014', '162', '157', '319', '3.5', '112', 'Sardar Patel College of Engineering', 'Electronics', '63', '100', '20'), (1944, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2016', '167', '150', '317', '3', '92', 'VIT', 'ECE', '7.66', '10', '0'), (1945, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '710', '470', '1180', '3', '92', 'University of Pune', 'Information Technology', '65', '100', '0'), (1946, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '151', '312', '3', '95', 'Amrita School of Engineering', 'IT', '7.05', '10', '46'), (1947, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical and computer science', 'Fall ', '2012', '162', '150', '312', 'None', '104', 'JNTU', 'Electronics and communication', '81.5', '100', '0'), (1948, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2011', '720', '560', '1280', '4', '110', 'Imperial college of Engineering and research Pune', 'E&TC;', '67', '100', '0'), (1949, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '157', '318', '4', '114', 'Xaviers', 'Computer Engg', '67', '100', '34'), (1950, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '162', '138', '300', '3', '87', 'Gujarat Technological University', 'Electronics and Communication', '8.05', '10', '0'), (1951, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '152', '313', '3.5', '107', 'FRCRCE', 'computers', '65', '100', '0'), (1952, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '550', '1350', '4', '102', 'MU', 'Computer Science', '63', '100', '0'), (1953, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '720', '440', '1160', '3', '92', 'SCSVMV University', 'ECE', '7.09', '10', '0'), (1954, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '157', '323', '4.5', '118', 'MU', 'Computer Engineering', '64.24', '100', '0'), (1955, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '158', '322', '3.5', '115', 'Anna University', 'Information technology', '74', '100', '0'), (1956, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '162', '157', '319', '3', '104', 'MU', 'Information Technology', '58', '100', '15'), (1957, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Spring ', '2014', '160', '160', '320', '3.5', '113', 'Fr. Conceicao Rodrigues College of Engineering', 'Electronics Engineering', '67.83', '100', '0'), (1958, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2011', '790', '530', '1320', '4', '113', 'Padre Conceicao College Of Engineering', 'Computer Engineering', '74.55', '100', '0'), (1959, 'Northeastern University', '1', 'Reject', 'MS', 'CS / SE / IT / MIS', 'Fall ', '2014', '157', '147', '304', '3', '97', 'Pune University', 'Computer Engg', '57.4', '100', '57'), (1960, 'Northeastern University', '1', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Spring ', '2013', '163', '155', '318', '3.5', '115', 'Shivaji University', 'Information Technology', '65', '100', '0'), (1961, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '157', '150', '307', '4', '109', 'K J Somaiya College of Engiineering', 'Electronics', '55.4', '100', '30'), (1962, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '170', '149', '319', '3', '95', 'VJTI', 'Electronics', '8.22', '10', '12'), (1963, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '153', '315', '3.5', '106', 'RGPV', 'I.T', '67', '100', '0'), (1964, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '144', '303', '3.5', '93', 'Fr.C. Rodrigues Institute of Technology Vashi Navi Mumbai', 'Computer Science', '64.33', '100', '0'), (1965, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '161', '325', '4', '114', 'Pune University', 'CS', '59', '100', '0'), (1966, 'Northeastern University', '1', 'Reject', 'MS', 'MIS', 'Spring ', '2014', '157', '147', '304', 'None', '91', 'MU', 'Information Technology', '54', '100', '0'), (1967, 'Northeastern University', '1', 'Reject', 'MS', 'CS/SE', 'Fall', 'None', '790', '490', '1280', '3', '91', 'Anna University', 'Computer Science', '81', '100', '0'), (1968, 'Northeastern University', '1', 'Reject', 'MS', 'CS', 'Fall ', '2015', '170', '152', '322', '3', '112', 'Rajasthan Technical University', 'Computer Science', '75.7', '100', '48'), (1969, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '760', '320', '1080', '3', '89', 'Amrita School of Engineering', 'Computer Science', '7.03', '10', '0'), (1970, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '149', '310', '3', '96', 'Medicaps Institute of Science & Technology Indore', 'Computer Science', '7.48', '10', '0'), (1971, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '150', '313', '3', '92', 'VTU', 'ISE', '75', '100', '0'), (1972, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '156', '141', '297', '3.5', '90', 'Cummins College of Engineering Pune', 'computer science', '64', '100', '0'), (1973, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '152', '314', '3.5', '107', 'VTU', 'Information Science', '64', '100', '0'), (1974, 'Northeastern University', '1', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2012', '162', '161', '323', '4', 'None', 'Atharva College', 'Electronics and Telecommunications', '58.81', '100', '0'), (1975, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '560', '1360', '3.5', '105', 'RAIT', 'Instrumentation', '60', '100', '0'), (1976, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '163', '149', '312', '3', 'None', 'Amrita School of Engineering', 'EEE', '7.43', '10', '27'), (1977, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '550', '1330', '3.5', '101', 'JNTU', 'ECE', '70', '100', '0'), (1978, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '780', '530', '1310', '3', '94', 'College Of Engineering Roorkee', 'CS', '72', '100', '0'), (1979, 'Northeastern University', '1', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '149', '153', '302', '3', '105', 'SASTRA', 'ELECTRICAL AND ELECTRONICS ENGINEERING', '7.7', '10', '49'), (1980, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '163', '154', '317', '3.5', '109', 'Amrita School of Engineering', 'Information Technology', '7.81', '10', '60'), (1981, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '161', '148', '309', '4', '95', 'Amrita School of Engineering', 'Information Technology', '7.89', '10', '0'), (1982, 'Northeastern University', '1', 'Reject', 'MS', 'Supply chain management', 'Fall ', '2012', '159', '140', '299', '3', '97', 'MU', 'Electronics', '59', '100', '0'), (1983, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '710', '500', '1210', '3.5', '96', 'MU', 'Computer Engg.', '57.85', '100', '0'), (1984, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '147', '308', '3', '91', 'Anna University', 'CSE', '79', '100', '29'), (1985, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '740', '550', '1290', '4', '115', 'Anna University', 'ECE', '79', '100', '0'), (1986, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '159', '152', '311', '3', '102', 'University of Pune', 'information technology', '63', '100', '27'), (1987, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '158', '150', '308', '3', '97', 'Sri Sairam Engineering College', 'EEE', '82', '100', '0'), (1988, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '161', '149', '310', '2.5', '87', 'MSU FTE', 'CS', '3.94', '4', '0'), (1989, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '152', '315', '3', '114', 'SSN College of Engineering', 'Computer Science Engg', '73', '100', '0'), (1990, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2014', '154', '151', '305', '3', '99', 'Anna University', 'Computer Science and Engineering', '7.36', '10', '31'), (1991, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '161', '146', '307', '3.5', '105', 'Sri Venkateswara College of Engineering', 'ECE', '7.26', '10', '0'), (1992, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '155', '317', '4', '110', 'Biju Patnaik University of Technology', 'EEE', '7.2', '10', '36'), (1993, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '660', '430', '1090', '3', '106', 'MU', 'Information Technology', '57', '100', '0'), (1994, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '157', '149', '306', '3.5', '103', 'VTU', 'Electronics and Communication', '72.75', '100', '0'), (1995, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '340', '1100', '3', '97', 'MU', 'Electronics', '63', '100', '0'), (1996, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '156', '147', '303', '3', '93', 'VTU', 'Electronics and Communication', '0', '0', '0'), (1997, 'Northeastern University', '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '154', '152', '306', '4', '106', 'VTU', 'Electronics & Communication', '65', '100', '0'), (1998, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '153', '314', '3', '101', 'University of Pune', 'Computer', '60', '100', '0'), (1999, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '157', '150', '307', '3', '94', 'GITAM', 'Computer Science', '8.23', '10', '0'), (2000, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '149', '313', '3.5', '104', 'D j Sanghvi', 'IT', '62', '100', '0'), (2001, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '160', '144', '304', '3', '87', 'RGPV', 'ECE', '75.37', '100', '0'), (2002, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '770', '640', '1410', '4', '117', 'Watumull Institute University of Mumbai', 'Computer Science', '53', '100', '0'), (2003, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '153', '314', '3.5', '102', 'UPTU', 'Computer Science', '69.84', '100', '20'), (2004, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '163', '151', '314', '3.5', '104', 'VESIT', 'IT', '62', '100', '0'), (2005, 'Northeastern University', '1', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '159', '145', '304', '2.5', 'None', 'Anna University', 'Mechanical', '0', '0', '24'), (2006, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '157', '143', '300', '3', '78', 'VTU', 'computer science', '59.1', '100', '0'), (2007, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '151', '317', '3.5', '101', 'CEG', 'Information Technology', '7.1', '10', '30'), (2008, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '690', '460', '1150', '4.5', '109', 'Datta Meghe College of Engineering', 'Computer Engineering', '57.2', '100', '0'), (2009, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '740', '590', '1330', '3.5', '103', 'MU', 'information technology', '61.45', '100', '0'), (2010, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '153', '144', '297', 'None', '86', 'Don Bosco Institute of Technology', 'Computers', '58', '100', '0'), (2011, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '560', '1320', '3', '105', 'YCCE', 'Electronics', '78.8', '100', '0'), (2012, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '167', '156', '323', '2.5', '88', 'Northeast Dianli Univ.', 'Electrical Engineering', '78', '100', '0'), (2013, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '161', '150', '311', '3', '92', 'CEG', 'Computer science', '7.3', '10', '0'), (2014, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '530', '1290', '3', '89', 'Govt College of Engineering', 'Computer Science & Engineering', '71.125', '100', '0'), (2015, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2006', '790', '690', '1480', '5', '300', 'Vidylankar Institute of Technology', 'Computer Engineering', '57', '100', '0'), (2016, 'Northeastern University', '1', 'Reject', 'MS', 'Civil Engineering', 'Spring ', '2011', '610', '340', '950', '3', '98', 'SASTRA', 'Civil Engineering', '6.55', '10', '0'), (2017, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '158', '148', '306', '3.5', '103', 'None', 'ECE', '8.18', '10', '0'), (2018, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '162', '154', '316', '3', '99', 'Amrita School of Engineering', 'Computer Science', '6.94', '10', '0'), (2019, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '165', '159', '324', '3', '101', 'BITS Pilani', 'Electronics', '4.93', '10', '0'), (2020, 'Northeastern University', '1', 'Reject', 'MS', 'Data Science', 'Fall', '2018', '165', '151', '316', '3', '105', 'NIT Surat', 'Computer Science', '7.35', '10', '2'), (2021, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall', '2017', '166', '152', '318', '3.5', '106', 'Indus university', 'Mechanical Engineering', '8.9', '10', '0'), (2022, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall', '2017', '155', '145', '300', '3', '94', 'Rayat and Bahra Institute of Engg and Tech', 'Computer Science', '81', '100', '0'), (2023, 'Northeastern University', '1', 'Reject', 'MS', 'Engineering Management', 'Fall', '2019', '160', '140', '300', '3', '-1', 'FR CONCEICAO RODRIGUES College of Engineering', 'Production Engineering', '5.97', '10', '0'), (2024, 'Northeastern University', '1', 'Reject', 'MS', 'Electronics & Communication', 'Fall', '2013', '161', '148', '309', '3.5', '111', 'Manipal Institute of Tech', 'EEE', '7.4', '10', '0'), (2025, 'Syracuse University', '4', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2016', 'None', 'None', '0', 'None', 'None', 'University of Petroleum and Energy Studies', 'Computer Science', '3.24', '4', '0'), (2026, 'Syracuse University', '4', 'Admit', 'MS', 'Information Systems', 'Fall', 'None', '710', '510', '1220', '3', '94', 'FJU', 'information management', '73', '100', '0'), (2027, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '155', '317', '4', 'None', 'RNSIT', 'CS', '72', '100', '0'), (2028, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '390', '1190', '4', '104', 'MU', 'Electronics and Telecommunications (EXTC)', '75', '100', '0'), (2029, 'Syracuse University', '4', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '680', '1460', '4.5', '110', 'MIT University of Pune', 'Electronics and Telecommunication', '65', '100', '0'), (2030, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '760', '680', '1440', '4', '111', 'Fr CRIT Mumbai University', 'Mechanical Engineering', '54.6', '100', '0'), (2031, 'Syracuse University', '4', 'Admit', 'MS', 'economics', 'Fall ', '2015', 'None', 'None', '0', 'None', 'None', 'University of Delhi', 'Economics', '71', '100', '0'), (2032, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '160', '152', '312', '3.5', '100', 'CSVTU', 'Computer Science', '73', '100', '0'), (2033, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '720', '590', '1310', '3', '0', 'UPTU', 'CS', '70.44', '100', '0'), (2034, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '45', '29', '74', '4.5', 'None', 'Vasavi College of Engineering', 'electrical and electronics engg', '69', '100', '0'), (2035, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '800', '500', '1300', '3', '97', 'Panjab University', 'BE(CS)', '67.4', '100', '0'), (2036, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering / Electrical Computer Engineering', 'Fall ', '2015', '162', '152', '314', '3', '104', 'MU', '0', '62', '100', '0'), (2037, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '165', '159', '324', '3.5', '107', 'Bangalore University', 'Mechanical', '69', '100', '0'), (2038, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '150', '315', '4', '101', 'VTU', 'ECE', '77', '100', '0'), (2039, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '790', '660', '1450', '3.5', '108', 'Harcourt Butler Technological Institute', 'CSE', '72.2', '100', '0'), (2040, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '159', '149', '308', 'None', '97', 'VTU', 'Electrical and Electronics', '68', '100', '0'), (2041, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2006', '1010', '410', '1420', '600', '273', 'Thadomal Shahani Engineering College', 'CE', '52', '100', '0'), (2042, 'Syracuse University', '4', 'Admit', 'MS', 'MIS/CS', 'Fall ', '2013', '161', '154', '315', '4', '114', 'MU', 'Information Technology', '61', '100', '0'), (2043, 'Syracuse University', '4', 'Admit', 'MS', 'Engineering Management / Industrial Engineering / IMSE', 'Fall ', '2015', '164', '154', '318', '3', '100', 'Manipal Institue of Technology', 'Civil Engineering', '7.71', '10', '0'), (2044, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '160', '159', '319', '4', '114', 'University of Manchester', 'EEE', '3.4', '4', '0'), (2045, 'Syracuse University', '4', 'Admit', 'MS', 'computer science / MIS', 'Fall ', '2015', '170', '157', '327', '5', '112', 'VIT Mumbai University', 'Electronics & Telecommunication', '72.67', '100', '41'), (2046, 'Syracuse University', '4', 'Admit', 'MS', 'MS Analytics/ MIS', 'Fall ', '2013', '165', '160', '325', '4.5', '113', 'University of Mumbai', 'Computer Engineering', '66.97', '100', '0'), (2047, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '800', '540', '1340', '4', '119', 'Anna University', 'IT', '74', '100', '0'), (2048, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '161', '149', '310', '3', '99', 'VIT Pune', 'Electronics Engg', '66', '100', '36'), (2049, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '157', '156', '313', '3.5', '107', 'VNR VJIET', 'ece', '67', '100', '0'), (2050, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '720', '530', '1250', '4', '107', 'Pune University', 'Computer', '0', '0', '0'), (2051, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '165', '161', '326', '5', '112', 'Rajiv Gandhi Prodyogiki Vishwavidyalaya', '0', '7.4', '10', '0'), (2052, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '600', '1400', '4', '103', 'University of Mumbai', 'Information Technology', '68', '100', '0'), (2053, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '160', '154', '314', '3', '99', 'Fr. Conceicao Rodrigues College of Engineering', 'IT', '53', '100', '0'), (2054, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '156', '157', '313', '3', '116', 'CMRIT', 'CSE', '62.4', '100', '0'), (2055, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '750', '590', '1340', '3', '107', 'JNTU', 'Electronics and Communication', '74', '100', '18'), (2056, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '770', '410', '1180', '3.5', '111', 'Pune University', 'Computer Engineering', '64', '100', '0'), (2057, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '680', '640', '1320', '4.5', '114', 'University of Pune', 'Computer Engineering', '65.44', '100', '0'), (2058, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '157', '151', '308', '4', '109', 'SFIT', 'IT', '54.56', '100', '0'), (2059, 'Syracuse University', '4', 'Admit', 'MS', 'Chemical Engineering', 'Fall ', '2012', '161', '153', '314', '3.5', 'None', 'Sinhgad College of Engineering', 'Chemical Engineering', '58', '100', '0'), (2060, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '730', '590', '1320', '3.5', '106', 'University of Mumbai', 'Computer Engineering', '65', '100', '0'), (2061, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '720', '380', '1100', '3', '88', 'Anna University', 'COMPUTER SCIENCE', '82.5', '100', '0'), (2062, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '780', '670', '1450', '4', '111', 'RAIT', 'extc', '57', '100', '0'), (2063, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '146', '308', '3', '102', 'University of Pune', 'Information Tech.', '72.23', '100', '36'), (2064, 'Syracuse University', '4', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '650', '1430', '4.5', '112', 'Dr Ambedkar Institute of Technology', 'Electronics and Communications Engineering', '76', '100', '0'), (2065, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '168', '157', '325', '4', '108', 'MU', 'Computer Engineering', '63', '100', '0'), (2066, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '720', '500', '1220', '3.5', '117', 'VIT Pune', 'Electronics', '7', '10', '0'), (2067, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Spring ', '2014', '158', '157', '315', '3.5', '105', 'JNTU', 'ECE', '73', '100', '0'), (2068, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '790', '520', '1310', '3.5', '273', 'Cochin University of Science and Technology', 'Computer Science', '74.5', '100', '0'), (2069, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '161', '148', '309', '3', '104', 'C.R State College of Engineering Murthal', 'Bio-Medical', '70', '100', '37'), (2070, 'Syracuse University', '4', 'Admit', 'MS', 'MIS-management related courses', 'Fall ', '2012', '160', '148', '308', '3', '106', 'Jaypee Institute of Information Technology', 'Information Technology', '6.1', '10', '0'), (2071, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2016', '161', '149', '310', '3', '99', 'None', '0', '0', '0', '0'), (2072, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '800', '710', '1510', '3', '280', 'University of Mumbai', 'Computer Engineering', '72', '100', '0'), (2073, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '750', '580', '1330', '4.5', '287', 'K J Somaiya College of Engiineering', 'Comp Engg', '69', '100', '0'), (2074, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '162', '154', '316', '3.5', '103', 'GGSIPU', 'Instrumentation and Control', '3.86', '100', '0'), (2075, 'Syracuse University', '4', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '164', '151', '315', '2.5', '104', 'MU', 'Computer Engineering', '68', '100', '9'), (2076, 'Syracuse University', '4', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2011', '730', '570', '1300', '3.5', '98', 'None', 'mechanical engg', '65', '100', '0'), (2077, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '161', '153', '314', '4', 'None', 'Thapar University', 'Biotechnology and environmental Sciences', '7.36', '10', '0'), (2078, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '159', '152', '311', '4', '105', 'Sardar Patel College of Engineering', 'Information Technology', '63', '100', '0'), (2079, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '161', '149', '310', '3.5', '110', 'PESIT', 'ECE', '8.64', '100', '0'), (2080, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '430', '680', '1110', '3', '96', 'Anna University', 'ECE', '76', '100', '0'), (2081, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '165', '156', '321', '4', 'None', 'Kathmandu University', 'Electrical and Electronics', '3.61', '4', '0'), (2082, 'Syracuse University', '4', 'Admit', 'MS', 'Information Technology', 'Fall ', '2012', '50', '35', '85', '4.5', '114', 'SKNCOE', 'Computer', '62', '100', '0'), (2083, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '159', '154', '313', '4.5', '117', 'MU', 'Electronics and Telecommunications', '65', '100', '0'), (2084, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '148', '309', '4', '107', 'Charotar University of Science and Technology', 'Information Technology', '8.3', '10', '0'), (2085, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '160', '149', '309', '4', '109', 'Nagpur University', 'IT', '68', '100', '0'), (2086, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '560', '1360', '3.5', '107', 'IIT BHU', 'Electrical Engineering', '7.3', '10', '0'), (2087, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '670', '1440', '3', '114', 'Thakur College of Engineering and Technology', 'COMP SCI', '66.3', '100', '0'), (2088, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '400', '750', '1150', '3', '101', 'Sardar Patel College of Engineering', 'electrical', '65', '100', '0'), (2089, 'Syracuse University', '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '780', '670', '1450', '3', '93', 'Harcourt Butler Technological Institute', 'Biochemical Engineering', '73', '100', '0'), (2090, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '370', '1170', '3', '102', 'PICT', 'IT', '65', '100', '0'), (2091, 'Syracuse University', '4', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '163', '153', '316', '4', '111', 'RNSIT', 'Computer Science', '84.17', '100', '0'), (2092, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', 'None', 'None', '0', 'None', 'None', 'Pondicherry University', 'ELECTRONICS & COMMUNICATION', '7.8', '10', '0'), (2093, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '149', '313', '3', '111', 'Sardar Patel College of Engineering', 'Computer Engineering', '64.28', '100', '0'), (2094, 'Syracuse University', '4', 'Admit', 'MS', 'Information Technology', 'Fall ', '2011', '780', '570', '1350', '3', '97', 'University Institute of Technology', 'Mechanical', '71', '100', '0'), (2095, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2006', '800', '650', '1450', '4', '283', 'CEG', 'ECE', '8.6', '10', '0'), (2096, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2008', '690', '450', '1140', '4', '106', 'Valliammai Engineering College', 'CSE', '84.5', '100', '0'), (2097, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '550', '1320', '3.5', '103', 'VTU', 'IS&E;', '65', '100', '0'), (2098, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '620', '1400', '4.5', '112', 'Bharathiar University', 'Electronics and Communication', '78', '100', '0'), (2099, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '164', '159', '323', '3', '108', 'Pune University', 'Information Technology', '57', '100', '0'), (2100, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', 'None', '670', '670', 'None', '110', 'None', '0', '0', '0', '0'), (2101, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '650', '650', '1300', '3', '102', 'MU', 'Information Technology', '63', '100', '0'), (2102, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', 'None', 'None', '0', '4', 'None', 'VTU', 'Information Science', '85', '100', '0'), (2103, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '150', '311', '4', '105', 'VTU', 'Computer Sciece', '71.3', '100', '42'), (2104, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '142', '304', '3', '98', 'VIT', 'Computer Science and Engineering', '8.35', '10', '0'), (2105, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '570', '1350', '3', '98', 'WBUT', 'CSE', '8.46', '10', '0'), (2106, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '157', '315', '3.5', '103', 'West Bengal University Of Technology', 'CSE', '8.04', '10', '34'), (2107, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '149', '312', '3', '86', 'CBIT', 'CSE', '80.8', '100', '0'), (2108, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '168', '153', '321', '3.5', 'None', 'Mahrishi Dayanand University', 'Computer Science and Engineering', '69.42', '100', '0'), (2109, 'Syracuse University', '4', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (2110, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall', 'None', '170', '150', '320', 'None', '106', 'Rajasthan Technical University', 'CSE', '70.125', '100', '0'), (2111, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '530', '1280', '3.5', '109', 'RGTU', 'CS', '80', '100', '0'), (2112, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '740', '550', '1290', '3.5', '104', 'MU', 'computer', '67.23', '100', '0'), (2113, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '166', '145', '311', '3.5', '101', 'MU', 'CS', '72', '100', '0'), (2114, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '790', '320', '1110', '3.5', '101', 'GGSIPU', 'Information Technology', '6.3', '100', '0'), (2115, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '800', '590', '1390', '3', 'None', 'Umiversity of mumbai', '0', '61', '100', '0'), (2116, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '165', '158', '323', '3.5', '111', 'MU', 'Computer Science', '66.12', '100', '0'), (2117, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '650', '1430', '4', '103', 'VTU', 'CS', '77', '100', '0'), (2118, 'Syracuse University', '4', 'Admit', 'MS', 'CS / MIS', 'Fall ', '2014', '152', '155', '307', '3.5', '110', 'Sathyabama University', 'ECE', '65', '100', '0'), (2119, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '45', '37', '82', '4.5', '111', 'VIT University', 'Computer Sceince', '8.39', '10', '0'), (2120, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2011', '750', '530', '1280', '4', '115', 'PESIT', 'Telecommunication Engineering', '71.6', '100', '0'), (2121, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '154', '145', '299', '3.5', '105', 'BMSIT', 'Electrical & Electronics', '73', '100', '0'), (2122, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall', 'None', '161', '148', '309', '3.5', '105', 'Jaypee Institute of Information Technology', 'Information technology', '7.7', '10', '5'), (2123, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '780', '340', '1120', '3', '93', 'ITM Gurgaon', 'CSE', '72', '100', '0'), (2124, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '162', '154', '316', '3', '113', 'Heritage University of Technology', 'Computer Science', '7.63', '10', '0'), (2125, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '158', '150', '308', '3.5', '110', 'Jaypee Institute of Information Technology', 'Biotechnology', '6.8', '10', '0'), (2126, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '790', '570', '1360', '3.5', '100', 'University of Pune', 'Computer Engineering', '57', '100', '24'), (2127, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '156', '316', '3.5', '100', 'VTU', '0', '79', '100', '0'), (2128, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '660', '600', '1260', '4', '102', 'Nagpur University', 'Information Technology', '67.52', '100', '0'), (2129, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '760', '590', '1350', '3', '111', 'UPTU', 'comp Science', '66.66', '100', '0'), (2130, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '740', '500', '1240', '3.5', '112', 'Pune University', 'Computer', '63', '100', '0'), (2131, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '156', '156', '312', '3.5', '103', 'K J Somaiya College of Engiineering', 'IT', '66', '100', '30'), (2132, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2009', '750', '390', '1140', '3.5', '101', 'R N S Institute of Technology', 'Electronics and Communication', '73.4', '100', '0'), (2133, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '149', '313', '2.5', 'None', 'SVCE', 'EEE', '75', '100', '0'), (2134, 'Syracuse University', '4', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '750', '670', '1420', '4', '110', 'Rajiv Gandhi Institute Of Technology', 'Mechanical Engineering', '61.53', '100', '0'), (2135, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '800', '590', '1390', '4.5', '270', 'SPCE', 'IT', '63', '100', '0'), (2136, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '151', '309', 'None', '103', 'NIE', 'CS', '8.23', '10', '0'), (2137, 'Syracuse University', '4', 'Admit', 'MS', 'Chemical Engineering', 'Fall ', '2011', '740', '640', '1380', '4.5', '114', 'MSRIT', 'Chemical Engineering', '8.1', '10', '0'), (2138, 'Syracuse University', '4', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2015', '305', '142', '447', '163', '90', 'Rajarambapu Institute of Technology', 'Civil Engineering', '7.48', '10', '0'), (2139, 'Syracuse University', '4', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '161', '154', '315', '3', '103', 'PESIT', 'Telecommunicaiton', '7.95', '10', '0'), (2140, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '690', '490', '1180', '4', 'None', 'SSN College of Engineering', 'Information Technology', '80', '100', '0'), (2141, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '530', '1290', '3.5', '101', 'Anna University', 'Electrical & Electronics Engineering', '77', '100', '0'), (2142, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '166', '334', '3.5', '107', 'University School of Technology IP Univ Delhi', 'Information Technology', '74', '100', '0'), (2143, 'Syracuse University', '4', 'Admit', 'MS', 'Engineering Management', 'Spring ', '2013', '730', '480', '1210', '3', '108', 'JNTU', 'Biotechnology', '74', '100', '0'), (2144, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '164', '156', '320', '3.5', '113', 'University of Pune', 'Electronics & Telecommunication', '71', '100', '0'), (2145, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '780', '510', '1290', '4', '273', 'Osmania University', 'CS', '85', '100', '0'), (2146, 'Syracuse University', '4', 'Admit', 'MS', 'Engineering Management', 'Spring ', '2015', 'None', 'None', '0', 'None', 'None', 'KIIT', 'Mechanical Engineering', '8.89', '10', '0'), (2147, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '147', '308', '3.5', '91', 'Manipal Institue of Technology', 'Computer Science', '8.54', '10', '0'), (2148, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '480', '1270', '4.5', '113', 'MU', 'Computer Engineering', '67', '100', '0'), (2149, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall', 'None', '161', '149', '310', '3', '91', 'MU', 'Electronics and telecommunication', '64.84', '100', '0'), (2150, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '750', '560', '1310', '3.5', 'None', 'SMIT', 'EEE', '83', '100', '0'), (2151, 'Syracuse University', '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '710', '540', '1250', '4', '103', 'Pune University', '0', '0', '0', '0'), (2152, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '166', '159', '325', '4.5', '113', 'University of Pune', 'Computer', '60.28', '100', '0'), (2153, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '800', '700', '1500', 'None', '290', 'Pune University', 'Information Technology', '3.36', '4', '0'), (2154, 'Syracuse University', '4', 'Admit', 'MS', 'International Affairs.', 'Fall ', '2013', '740', '600', '1340', '4', '116', 'University of Mumbai', 'Engineering(Information Technology)', '58', '100', '0'), (2155, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '160', '156', '316', '4', '107', 'M.I.T Aurangabad', 'Electronics & Comminication', '71', '100', '0'), (2156, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '168', '153', '321', '4', 'None', 'Institute of Engineering and Technology', 'Computer Science', '70', '100', '64'), (2157, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2011', '760', '480', '1240', '4', '104', 'Vishwakarma Institute of Technology', 'Electronics and Telecommunication', '8.27', '10', '0'), (2158, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '169', '153', '322', '4', '109', 'GGSIPU', 'Information Technology', '70.16', '100', '24'), (2159, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '163', '148', '311', '4.5', '105', 'University of Mumbai', 'Computer Science', '59.8', '100', '0'), (2160, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2009', '800', '580', '1380', '4', '111', 'PICT', 'Information Technology', '3.273', '4', '0'), (2161, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '139', '300', '3', '95', 'GGSIPU', 'IT', '75.28', '100', '0'), (2162, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2010', '770', '560', '1330', '3.5', '100', 'West Bengal University Of Technology', 'Computer Science & Engineering', '8.1', '10', '0'), (2163, 'Syracuse University', '4', 'Admit', 'MS', 'MIS-management related courses', 'Fall ', '2012', '720', '590', '1310', '3', '94', 'FCRIT NAVIM MUBAI', 'COMPUTER', '63.24', '100', '0'), (2164, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '730', '550', '1280', 'None', '233', 'Vidyalankar Institute of Technology', 'computers', '64', '100', '0'), (2165, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '157', '157', '314', '4', '112', 'Sona College', 'Information Technology', '9.64', '10', '0'), (2166, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '164', '150', '314', '3.5', '95', 'Integral University', 'Information Technology', '72.18', '100', '60'), (2167, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '161', '153', '314', '3.5', 'None', 'Sinhgad College of Engineering', 'Computer Engineering', '63', '100', '0'), (2168, 'Syracuse University', '4', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2014', '166', '144', '310', '3', '90', 'Manipal Institue of Technology', 'CIVIL', '6.6', '10', '6'), (2169, 'Syracuse University', '4', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Summer ', '2015', '162', '152', '314', '3.5', 'None', 'SJCE', 'CS', '74', '100', '69'), (2170, 'Syracuse University', '4', 'Admit', 'MS', 'MSIM', 'Fall ', '2013', '161', '164', '325', '4', '113', 'K J Somaiya College of Engiineering', 'Electronics & Telecom', '70', '100', '0'), (2171, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '750', '490', '1240', '2.5', '99', 'GRIET', 'ECE', '63', '100', '0'), (2172, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '800', '630', '1430', '660', '293', 'Nirma Institute of Technology', 'Information Technology', '79.38', '100', '0'), (2173, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '750', '490', '1240', '3', '104', 'MU', 'Information Technology', '62', '100', '0'), (2174, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '164', '145', '309', '3', '97', 'PESIT', 'ECE', '8.72', '10', '0'), (2175, 'Syracuse University', '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '760', '490', '1250', '3', '101', 'Kurukshetra University', 'Computer Science', '71.1', '100', '0'), (2176, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '159', '150', '309', '4', '105', 'GITAM', 'ECE', '84', '100', '87'), (2177, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '160', '160', '320', '4.5', '113', 'VTU', 'ECE', '78', '100', '43'), (2178, 'Syracuse University', '4', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2014', '167', '152', '319', '3', '108', 'BIT Mesra', 'Electronics and Communication', '7.2', '10', '0'), (2179, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Networking', 'Fall ', '2013', '152', '144', '296', '3.5', '106', 'NMAMIT Nitte', 'Electronics and Communication', '72', '100', '0'), (2180, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2015', '157', '147', '304', '3.5', '97', 'None', '0', '77.25', '100', '48'), (2181, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '158', '153', '311', '3', 'None', 'SASTRA', 'CSE', '8.25', '10', '0'), (2182, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '152', '315', '4', '104', 'Pune University', 'Computer Engineering', '61', '100', '0'), (2183, 'Syracuse University', '4', 'Admit', 'MS', 'Information Technology', 'Fall ', '2011', '800', '580', '1380', '5', '109', 'Shanghai Institute of Foreign Trade', 'Electronic commerce', '3.3', '4', '0'), (2184, 'Syracuse University', '4', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2013', '164', '149', '313', '3', '103', 'CBIT', 'Bio Tech', '79', '100', '0'), (2185, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '165', '149', '314', '3', '104', 'NITJ', 'ICE', '7.75', '10', '58'), (2186, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '770', '550', '1320', '3', '112', 'PESIT', 'Computer Science', '76', '100', '0'), (2187, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '161', '151', '312', '3.5', '102', 'University of Pune', 'Electronics & Telecomm', '60', '100', '0'), (2188, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '163', '146', '309', '3', '99', 'Devi Ahilya University Indore', 'MBA', '7.7', '10', '0'), (2189, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '770', '540', '1310', '3.5', '233', 'PESIT', 'ISE', '81', '100', '0'), (2190, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2013', '720', '310', '1030', '3', '84', 'BVM Engineering College', 'Electronics Engineering', '8.38', '10', '0'), (2191, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '164', '154', '318', '4', '111', 'Gujarat Technological University', 'ECE', '76.82', '100', '0'), (2192, 'Syracuse University', '4', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2014', '162', '146', '308', '3', '100', 'K.L.E College of Engg and Technology', 'Electronics and Communication', '57.23', '100', '0'), (2193, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '162', '154', '316', '3.5', 'None', 'MU', 'Information Technology', '57', '100', '0'), (2194, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '163', '145', '308', '3', '101', 'Nagarjuna University', 'Electronics and Computers', '8.66', '10', '0'), (2195, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical and computer science', 'Fall ', '2007', '760', '460', '1220', '4', '273', 'RMK Engineering College', 'EEE', '80', '100', '0'), (2196, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '160', '148', '308', '2.5', '95', 'GITAM', 'IT', '8.85', '10', '0'), (2197, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '760', '590', '1350', '3', '95', 'Vidyalankar Institute of Technology', 'IT', '60', '100', '0'), (2198, 'Syracuse University', '4', 'Admit', 'MS', 'CS / MSIS / ITM', 'Fall ', '2011', '750', '470', '1220', '3', '104', 'Anna University', 'Information Technology', '81.4', '100', '0'), (2199, 'Syracuse University', '4', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '166', '156', '322', '4', '113', 'Pune University', 'Electronics & Telecomm', '62.9', '100', '22'), (2200, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '158', '153', '311', '4.5', '107', 'Western Univ.', 'Regional Studies', '4.4', '5', '0'), (2201, 'Syracuse University', '4', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '170', '158', '328', '4.5', '116', 'K J Somaiya College of Engiineering', 'Mechanical', '61', '100', '0'), (2202, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '162', '150', '312', '3.5', '98', 'Dharamsinh Desai University', 'Information Technology', '8.43', '10', '0'), (2203, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2011', '710', '380', '1090', '4', '93', 'VTU', 'EC', '67', '100', '0'), (2204, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Fall', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (2205, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '167', '154', '321', '3', '100', 'NIT Nagpur', 'Computer Science and Engineering', '8.39', '10', '0'), (2206, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '740', '400', '1140', '3.5', '100', 'VTU', 'CS', '65', '100', '0'), (2207, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '149', '310', '3', 'None', 'PESIT', 'Telecommunication', '8.1', '10', '0'), (2208, 'Syracuse University', '4', 'Admit', 'MS', 'CS / MSIS / ITM', 'Fall ', '2011', '790', '300', '1090', '3.5', '93', 'V.G. Vaze college Mumbai University', 'Department Of Information Technology', '80', '100', '0'), (2209, 'Syracuse University', '4', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2014', '156', '149', '305', '3', '102', 'JNTU', 'Computer Science', '78', '100', '0'), (2210, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '590', '460', '1050', 'None', 'None', 'None', '0', '0', '0', '0'), (2211, 'Syracuse University', '4', 'Admit', 'MS', 'mba', 'Fall', 'None', '46', '31', '77', '4', '106', 'MGIT', 'ECE', '71.72', '100', '0'), (2212, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '153', '313', '3.5', 'None', 'Pune University', 'Computer', '61.27', '100', '0'), (2213, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '760', '400', '1160', '3', '89', 'JNTU', 'COMPUTER SCIENCE', '80.4', '100', '0'), (2214, 'Syracuse University', '4', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2014', '161', '145', '306', '3.5', '101', 'Acharya Institute of Technology', 'Electrical and Electronics', '80.3', '100', '6'), (2215, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '740', '590', '1330', '3', '102', 'MU', 'computer', '55', '100', '0'), (2216, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '162', '160', '322', '4', '114', 'MU', 'Information Technology', '54', '100', '12'), (2217, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '0', '770', '3.5', '95', 'PESIT', 'Computer SCience', '77', '100', '0'), (2218, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2013', '156', '153', '309', '3.5', '99', 'VIT University', 'Electronics and Instrumentation', '7.99', '10', '0'), (2219, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '151', '144', '295', '3', '90', 'Maharashtra Institute of Technology', 'Computer Science', '74', '100', '0'), (2220, 'Syracuse University', '4', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2012', '800', '530', '1330', '3', '99', 'NMIMS', 'Electronics & Telecommunication', '2.73', '4', '0'), (2221, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall', 'None', '157', '152', '309', '3.5', '109', 'MU', 'I.T.', '54', '100', '0'), (2222, 'Syracuse University', '4', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2014', '160', '150', '310', '3.5', '111', 'VESIT', 'Instrumentation', '62', '100', '0'), (2223, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '160', '153', '313', '4', '111', 'Anna University', '0', '9.2', '10', '0'), (2224, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall', 'None', '166', '155', '321', '3', '108', 'IIIT Allahabad', 'IT', '8.8', '10', '0'), (2225, 'Syracuse University', '4', 'Admit', 'MS', 'MIS-management related courses', 'Fall ', '2013', '159', '146', '305', '3.5', '96', 'VTU', 'EEE', '65', '100', '0'), (2226, 'Syracuse University', '4', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '170', '155', '325', '4', '107', 'College of Technology Pantnagar', 'ECE', '72.44', '100', '9'), (2227, 'Syracuse University', '4', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2006', '730', '560', '1290', '4', '280', 'SVCE', 'ECE', '65', '100', '0'), (2228, 'Syracuse University', '4', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2012', '770', '480', '1250', '3.5', '109', 'Don Bosco Institute of Technology', 'EXTC', '56', '100', '0'), (2229, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '164', '152', '316', '3.5', '111', 'CBIT', 'Computer Science', '76.5', '100', '0'), (2230, 'Syracuse University', '4', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2014', '157', '153', '310', '4', '109', 'Engineering', 'Computer Science', '3.7', '100', '0'), (2231, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science/ Mgmt', 'Fall ', '2011', '800', '640', '1440', 'None', '112', 'MU', 'IT', '62', '100', '0'), (2232, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '740', '570', '1310', '3', '102', 'Osmania University', 'ece', '80', '100', '0'), (2233, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '440', '1210', '3', '111', 'MSRIT', 'Computer Science', '75', '100', '0'), (2234, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '146', '308', '3', '93', 'Maharaja Agrasen Institute Of Technology', 'Computer Science Engineering', '73.4', '100', '0'), (2235, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '710', '600', '1310', '3.5', 'None', 'North Dakota State University', 'ECE', '3.1', '4', '0'), (2236, 'Syracuse University', '4', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2012', '780', '420', '1200', '2.5', '98', 'University of Pune', 'Electronics and telecommunication', '60.1', '100', '0'), (2237, 'Syracuse University', '4', 'Admit', 'MS', 'Chemistry', 'Fall ', '2013', '800', '520', '1320', '3', '96', 'Institute of Chemical Technology', 'Dept. of Dyestuff Technology', '7', '10', '0'), (2238, 'Syracuse University', '4', 'Admit', 'MS', 'None', 'Fall ', '2013', '157', '155', '312', '4', '113', 'MU', 'Computer Engineering', '65', '100', '0'), (2239, 'Syracuse University', '4', 'Admit', 'MS', 'Chemical Engineering', 'Spring ', '2012', '800', '360', '1160', '3', '103', 'NIT Jalandhar', 'Chemical Engineering', '7.61', '10', '0'), (2240, 'Syracuse University', '4', 'Admit', 'MS', 'software engineering', 'Spring ', '2014', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (2241, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2015', 'None', 'None', '0', 'None', '105', 'JNTU', 'ECE', '72', '100', '46'), (2242, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '165', '149', '314', '4', '105', 'Anna University', 'ECE', '73.4', '100', '0'), (2243, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '700', '540', '1240', '3', '99', 'Sri Venkateswara College of Engineering', 'Information Technology', '72', '100', '0'), (2244, 'Syracuse University', '4', 'Admit', 'MS', 'MIS-management related courses', 'Fall ', '2012', '160', '151', '311', '3', '104', 'BITS Goa', 'Mathematics & Mechanical', '6.7', '10', '0'), (2245, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '157', '149', '306', '3.5', '104', 'GGSIPU', 'EEE', '75.1', '100', '0'), (2246, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '162', '160', '322', '4', '111', 'MSU', 'Computer Science & Engineering', '3.64', '4', '0'), (2247, 'Syracuse University', '4', 'Admit', 'MS', 'Biotechnology/bio-engineering', 'Fall ', '2013', '160', '159', '319', '3', '108', "St Joseph's College of Engineering", 'Biotechnology', '82', '100', '0'), (2248, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '166', '156', '322', '3.5', '111', 'JNTU', 'CS', '63', '100', '0'), (2249, 'Syracuse University', '4', 'Admit', 'MS', 'Management Information System', 'Fall ', '2014', '157', '148', '305', '3', 'None', 'MDU', 'Computer SC', '67.4', '100', '0'), (2250, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '161', '145', '306', '3.5', '100', 'VTU', 'Information Science', '75', '100', '0'), (2251, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '143', '306', '3', 'None', 'Amrita School of Engineering', 'Computer Science and Engineering', '7.2', '10', '24'), (2252, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '162', '158', '320', '3.5', '112', 'University of Pune', 'Electronics and Telecommunication', '61.8', '100', '0'), (2253, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2014', '160', '151', '311', '4', '93', 'LDRP-ITR/GTU', 'ECE', '73.5', '100', '0'), (2254, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '156', '149', '305', '3', '94', 'Rajasthan Technical University', 'Computer science', '81.5', '100', '0'), (2255, 'Syracuse University', '4', 'Admit', 'MS', 'Management Information System', 'Fall ', '2013', '161', '156', '317', '3', '97', 'Guru Gobind Singh Indraprashta University', 'Computer Science Engineering', '3.56', '4', '0'), (2256, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '161', '148', '309', '4', '104', 'Lakshmi Narain College of Technology', 'Electrical & Electronics Engineering', '74.4', '100', '0'), (2257, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '610', '1400', '3.5', '99', 'mit pune', 'e-tc', '64.91', '100', '0'), (2258, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '780', '730', '1510', '4', '113', 'COEP', 'Computer Engineering', '7.95', '10', '0'), (2259, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '157', '142', '299', '3', '100', 'RMK Engineering College', 'Computer Science', '84', '100', '42'), (2260, 'Syracuse University', '4', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2014', '147', '146', '293', '3', '90', 'Gogte Institute of Technology', 'Electronics and communication', '67', '100', '0'), (2261, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '620', '470', '1090', '2.5', '101', 'Velammal Engineering College', 'EIE', '83.4', '100', '0'), (2262, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '149', '309', '3.5', '104', 'Anna University', 'Computer Science', '74.9', '100', '0'), (2263, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '155', '146', '301', '3', '88', 'New Horizon College of Engineering', 'computer science', '74', '100', '0'), (2264, 'Syracuse University', '4', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '161', '144', '305', '3', '102', 'Ramakrishna College of Engineering', 'Mechanical', '8', '100', '0'), (2265, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '790', '460', '1250', '4', '109', 'MU', 'Computer Science', '73.25', '100', '0'), (2266, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2010', '770', '320', '1090', '3.5', '98', 'VTU', 'Electronics and Communication Engineering', '70', '100', '0'), (2267, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '165', '148', '313', '3.5', '91', 'University of Pune', 'Comp Engg', '0', '0', '0'), (2268, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '160', '149', '309', '3', '101', 'D Y Patil College of Engineering', 'Electronics Engineering', '72', '100', '0'), (2269, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '740', '370', '1110', '3', '82', 'K J Somaiya College of Engiineering', 'INFORMATION TECHNOLOGY', '67', '100', '0'), (2270, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '159', '153', '312', '3', '110', 'Anna University', 'CSE', '73', '100', '0'), (2271, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '800', '710', '1510', '4', '113', 'IP University Delhi', 'Computer Science', '80', '100', '0'), (2272, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '750', '300', '1050', '3', '82', 'KLESCET', 'Electronics and Communication', '68.82', '100', '0'), (2273, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '750', '470', '1220', '3', '104', 'Dr Mahalingam College of Engineering and Technology', 'Information Technology', '82', '100', '0'), (2274, 'Syracuse University', '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '730', '480', '1210', '3.5', '107', 'S.A.Engineering college.Anna university.', 'computer science', '81.67', '100', '0'), (2275, 'Syracuse University', '4', 'Admit', 'MS', 'CS', 'Fall ', '2013', '770', '590', '1360', '3.5', '111', 'VTU', 'ISE', '74.5', '100', '0'), (2276, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '780', '440', '1220', '3.5', '108', 'SRM', 'CSE', '9.3', '10', '0'), (2277, 'Syracuse University', '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2012', '156', '142', '298', '2.5', '98', 'Pune University', 'IT', '68', '100', '0'), (2278, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '170', '161', '331', '4', '110', 'VTU', 'Computer Science', '68', '100', '36'), (2279, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '165', '144', '309', '3.5', '97', 'BITS Pilani', 'B.E. EEE & MSc. Economics', '7.7', '10', '0'), (2280, 'Syracuse University', '4', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (2281, 'Syracuse University', '4', 'Admit', 'MS', 'MIS/MS CS', 'Fall ', '2014', '163', '155', '318', '3.5', '112', 'Institute of Engineering and Management', 'IT', '7.83', '10', '0'), (2282, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2013', '161', '144', '305', '3', '97', 'Vishwakarma Institute of Technology', 'Electronics and Telecommunication', '7.9', '10', '0'), (2283, 'Syracuse University', '4', 'Admit', 'MS', 'MS Analytics/ MIS', 'Fall ', '2015', '160', '149', '309', '3', 'None', 'Jaypee Institute of Information Technology', 'ECE', '71', '100', '45'), (2284, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '780', '490', '1270', '3.5', '107', 'Thakur College of Engineering and Technology', 'Information Technology', '60.14', '100', '0'), (2285, 'Syracuse University', '4', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '740', '570', '1310', '4', '108', 'Gujarat Technological University', 'Mechanical Engineering', '63', '100', '0'), (2286, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '159', '150', '309', '3.5', '103', 'MU', 'Computer Science', '65', '100', '0'), (2287, 'Syracuse University', '4', 'Admit', 'MS', 'Information Technology', 'Fall ', '2011', '750', '430', '1180', '3', 'None', 'MU', 'Information Technology', '65', '100', '0'), (2288, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '166', '145', '311', 'None', '97', 'MSU', 'CS', '3.93', '4', '0'), (2289, 'Syracuse University', '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2012', '740', '540', '1280', 'None', '96', 'MU', 'IT', '61', '100', '0'), (2290, 'Syracuse University', '4', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '161', '145', '306', '4', '106', 'Sapthagiri College of Engineering', 'Electronics and Communication', '76.53', '100', '0'), (2291, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '800', '660', '1460', '3.5', '103', 'VIT', 'Telecommunication', '8.76', '10', '0'), (2292, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '162', '151', '313', '4', '110', 'SIES Graduate School of Technology', 'Computer Engineering', '62', '100', '0'), (2293, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '750', '580', '1330', '3.5', '260', 'Gujarat Technological University', 'Information Technology', '71', '100', '0'), (2294, 'Syracuse University', '4', 'Admit', 'MS', 'CS', 'Fall ', '2013', '156', '152', '308', '3', '103', 'MSRIT', 'Information Science and Engineering', '8.88', '10', '0'), (2295, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '169', '158', '327', 'None', '110', 'NITK Surathkal', 'Information Technology', '7.27', '10', '0'), (2296, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '161', '322', '3.5', '108', 'C.S.V.T.U.', 'Computer Science and Engg', '8.53', '10', '0'), (2297, 'Syracuse University', '4', 'Admit', 'MS', 'Mechanical Engineering', 'Fall', 'None', '170', '153', '323', '4', '104', 'VIT', 'Mechanical(specialization in Energy)', '8.9', '10', '0'), (2298, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '160', '150', '310', '4', '114', 'University of Pune', 'Electronics Engineering', '69', '100', '0'), (2299, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '166', '152', '318', '3.5', '110', 'Nirma Institute of Technology', 'Computer Science', '8.89', '10', '0'), (2300, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '720', '540', '1260', '3.5', '107', 'B N M Institute of Technology', 'ISE', '71.72', '100', '0'), (2301, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '163', '153', '316', '3', '108', 'JSS Noida', 'Computer Science', '69', '100', '0'), (2302, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2008', '800', '580', '1380', '5', '111', 'MU', 'Information Technology', '60', '100', '0'), (2303, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '147', '307', '3', '95', 'Jaypee Institute of Information Technology', 'CSE', '72.5', '100', '0'), (2304, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '780', '500', '1280', '5', '110', 'University of Pune', 'Computer Engineering', '68.8', '100', '0'), (2305, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '161', '153', '314', '3', '109', 'MU', 'Electronics and Telecomm', '64', '100', '0'), (2306, 'Syracuse University', '4', 'Admit', 'MS', 'Information technology management', 'Fall ', '2012', '770', '530', '1300', '4', '102', 'Nagpur University', 'Electronics Engineering', '65', '100', '0'), (2307, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '164', '154', '318', '3', '107', 'Amity University', 'CS&E;', '7.5', '10', '0'), (2308, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '151', '159', '310', '3.5', '114', 'Amrita School of Engineering', 'Computer Science and Engineering', '7.93', '10', '0'), (2309, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '170', '153', '323', '3.5', '90', 'Osmania University', 'ECE', '77', '100', '0'), (2310, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2012', '750', '560', '1310', '2.5', '110', 'GGSIPU', 'ECE', '63', '100', '0'), (2311, 'Syracuse University', '4', 'Admit', 'MS', 'Engineering Management', 'Spring ', '2013', '780', '560', '1340', '4', 'None', 'MJCET', 'Electronics and Instrumentation', '64', '100', '0'), (2312, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '720', '1520', '5.5', '118', 'None', '0', '0', '0', '0'), (2313, 'Syracuse University', '4', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2013', '160', '146', '306', '3.5', '106', 'MU', 'Electronics and Telecommunication', '63', '100', '0'), (2314, 'Syracuse University', '4', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '168', '155', '323', '4', '113', 'Gujarat Technological University', 'Mechanical Engineering', '7.51', '10', '0'), (2315, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '720', '680', '1400', '3', '106', 'VIT', 'elctronics and communication', '6.72', '10', '0'), (2316, 'Syracuse University', '4', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2014', '161', '152', '313', '4', '108', "St Joseph's College of Engineering", 'Electronics and Communication', '6.88', '10', '20'), (2317, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '161', '151', '312', '4', '104', 'None', 'CS', '7.33', '10', '0'), (2318, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '44', '28', '72', '4.5', '102', 'VTU', 'CS', '67', '100', '0'), (2319, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall', 'None', '163', '155', '318', '4', '107', 'Anna University', 'IT', '8.01', '10', '0'), (2320, 'Syracuse University', '4', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (2321, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '360', '1130', '3.5', '111', 'Anna University', 'Computer Science & Engg', '79', '100', '0'), (2322, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '47', '33', '80', '5', '104', 'Rajasthan Technical University', '0', '3.65', '4', '0'), (2323, 'Syracuse University', '4', 'Admit', 'MS', 'CS / SE / IT / MIS', 'Fall', 'None', '166', '153', '319', '3.5', '111', 'RGPV', 'Electronics', '6.8', '10', '0'), (2324, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '165', '158', '323', '4', '108', 'Bharati Vidyapeeth', 'IT', '79.75', '100', '0'), (2325, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '158', '151', '309', '3', '110', 'Pune University', 'Computer', '66', '100', '0'), (2326, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '740', '620', '1360', '5', '112', 'Amrita Vishwa Vidhyapeetham', 'Information Technology', '8.72', '10', '0'), (2327, 'Syracuse University', '4', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (2328, 'Syracuse University', '4', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2014', '162', '153', '315', '3.5', 'None', 'JNTU', 'electrical engineering', '70', '100', '0'), (2329, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '730', '530', '1260', '3', '111', 'Pune University', 'Mechanical Engineering', '0', '0', '0'), (2330, 'Syracuse University', '4', 'Admit', 'MS', 'Mechanical And Aerospace', 'Spring ', '2014', '161', '151', '312', '3', 'None', 'Saurashtra University', 'Mechanical Engineering', '3.6', '4', '0'), (2331, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '164', '155', '319', '3.5', '106', 'MU', 'Computer', '61', '100', '0'), (2332, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '167', '146', '313', '3', '99', 'K J Somaiya College of Engiineering', 'Computer Engineering', '69.17', '100', '0'), (2333, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '168', '159', '327', '4.5', '112', 'University of Mumbai', 'computer engineering', '67.87', '100', '42'), (2334, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '161', '162', '323', '4', '110', 'VTU', 'Electronics and Communication', '62.95', '100', '0'), (2335, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '151', '311', '4', '109', 'VTU', 'CSE', '81', '100', '0'), (2336, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '580', '1360', 'None', 'None', 'CEG', 'CS', '8', '10', '0'), (2337, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '670', '1470', '3.5', '112', 'University of Mumbai', 'Electronics and Telecomm', '72', '100', '0'), (2338, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '159', '145', '304', '3', '100', 'PTU/Rayat and Bahra', 'Computer Science', '74.4', '100', '0'), (2339, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '162', '151', '313', '3.5', '107', 'Pune University', 'Computer', '74', '100', '0'), (2340, 'Syracuse University', '4', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2015', '145', '154', '299', '4.5', '97', 'University of Pune', 'Electronics and Telecommunication', '58', '100', '0'), (2341, 'Syracuse University', '4', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '159', '150', '309', '3.5', '107', 'Manipal Institue of Technology', 'mechatronics', '8', '10', '0'), (2342, 'Syracuse University', '4', 'Admit', 'MS', 'Networking', 'Fall ', '2013', '156', '145', '301', '3.5', '102', 'KU', 'IT', '63', '100', '0'), (2343, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '500', '1270', '3', '95', 'Madras Institute of Technology', 'Electronics and Instrumentation Engineering', '8.9', '10', '0'), (2344, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '160', '144', '304', '3.5', '98', 'RNSIT', 'Computer Science', '75', '100', '0'), (2345, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '168', '153', '321', '4.5', '110', 'Ramrao Adik Institute of Technology', 'Electronics', '60', '100', '0'), (2346, 'Syracuse University', '4', 'Admit', 'MS', 'Information Management', 'Fall ', '2014', '163', '151', '314', '3', '100', 'Jaypee Institute of Information Technology', 'Information Technology', '69', '100', '36'), (2347, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '800', '570', '1370', '4', '110', 'Pune University', 'Electrical Engineering', '0', '0', '0'), (2348, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '162', '152', '314', '3.5', '108', 'UPTU', 'Computer Science', '76', '100', '0'), (2349, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2008', '770', '630', '1400', 'None', '107', 'MU', 'Electronics & Telecommunication', '64', '100', '0'), (2350, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '145', '307', '3', '82', 'Government Engineering College Patan affilated with GTU', 'Computer Science & Engineering', '8.34', '10', '0'), (2351, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '155', '317', '4.5', '114', 'Manipal Institue of Technology', 'Computer Science', '9.46', '10', '12'), (2352, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '165', '156', '321', '4.5', '112', 'MU', 'Computer Engineering', '71', '100', '30'), (2353, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '316', '157', '473', '4.5', '112', 'TSEC', 'I.T', '60', '100', '0'), (2354, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '161', '149', '310', '4', '117', 'Gujarat Technological University', 'ELECTRONICS AND COMMUNICATION', '9.13', '10', '20'), (2355, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (2356, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '159', '150', '309', '4', '6', 'Vignan Institute of Technology and Science', 'ECE', '77', '100', '0'), (2357, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '167', '149', '316', '3.5', '102', 'Osmania University', 'CSE', '80', '100', '0'), (2358, 'Syracuse University', '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2013', '155', '150', '305', '305', '93', 'Dayananda Sagar College of Engineering', 'Telecommunication', '66', '100', '0'), (2359, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall', 'None', '163', '148', '311', '3.5', '106', 'VTU', 'Instrumentation', '7.82', '10', '0'), (2360, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '750', '530', '1280', '3', '97', 'VJTI', 'Electronics', '7.9', '10', '0'), (2361, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '160', '154', '314', '3', '107', 'None', '0', '74', '100', '0'), (2362, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2012', '780', '610', '1390', '3.5', '111', 'GTU', 'Electronics and Communication', '65', '100', '0'), (2363, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '154', '152', '306', '3', '104', 'None', '0', '0', '0', '0'), (2364, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', 'None', 'None', '0', 'None', '94', 'Sinhgad College of Engineering', 'Computer Sciences', '60.05', '100', '0'), (2365, 'Syracuse University', '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '800', '670', '1470', '5', '118', 'Anna University', 'MCA', '9.6', '10', '0'), (2366, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '750', '550', '1300', '4', '107', 'VTU', 'EE', '71', '100', '0'), (2367, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '750', '510', '1260', '3.5', '86', 'Anna University', 'Computer Science', '80.4', '100', '0'), (2368, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '700', '480', '1180', '3.5', '100', 'Sri Venkateswara College of Engineering', 'CSE', '71', '100', '0'), (2369, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '170', '153', '323', '3.5', '103', 'Pune University', 'ECE', '72', '100', '0'), (2370, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '800', '610', '1410', '4.5', '283', 'University of Madras', 'Computer Science', '76', '100', '0'), (2371, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '760', '570', '1330', '5', '290', 'Atharva College', 'computer engineering', '64.13', '100', '0'), (2372, 'Syracuse University', '4', 'Admit', 'MS', 'CS MIS', 'Fall ', '2012', '158', '150', '308', '4', '102', 'VTU', 'Computer Science', '8.07', '10', '0'), (2373, 'Syracuse University', '4', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2013', '800', '600', '1400', '4.5', '111', 'Pune University', 'Computers', '0', '0', '0'), (2374, 'Syracuse University', '4', 'Admit', 'MS', 'Information Security', 'Fall ', '2013', '162', '158', '320', '4', '112', 'KU', 'Information Technology', '7.1', '10', '0'), (2375, 'Syracuse University', '4', 'Admit', 'MS', 'Computational Science', 'Spring ', '2011', '780', '340', '1120', '3', '92', 'JNTU', 'ECE', '79.79', '100', '0'), (2376, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '790', '670', '1460', '3', '103', 'GITAM', 'INFORMATION TECHNOLOGY', '9.03', '10', '0'), (2377, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '158', '143', '301', '3', '98', 'SASTRA', 'ECE', '7.29', '10', '0'), (2378, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '770', '500', '1270', '4', 'None', 'Institute of Engineering and Technology DAVV', 'Computer Science', '78', '100', '0'), (2379, 'Syracuse University', '4', 'Admit', 'MS', 'Engineering Management', 'Spring ', '2016', '163', '156', '319', '4', '108', 'Siddaganga Institue of Technology', 'Mechanical', '8.32', '10', '2'), (2380, 'Syracuse University', '4', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2013', '710', '560', '1270', '3.5', '113', 'SRM', 'Computer Science', '8.496', '10', '0'), (2381, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '800', '500', '1300', '4', '257', 'Shah And anchor Kutchhi Engineering College', 'Computer', '64', '100', '0'), (2382, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '160', '154', '314', '4', '116', 'University of Mumbai', 'Information Technology', '64', '100', '0'), (2383, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '770', '470', '1240', '4', '104', 'Amrita School of Engineering', 'Computer Science', '7.33', '10', '0'), (2384, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '157', '149', '306', '3', '110', 'Fore School of Management', 'Computer Science', '3.78', '4', '54'), (2385, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '640', '520', '1160', '3', 'None', 'VIT', '0', '7.4', '10', '0'), (2386, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '146', '305', 'None', '102', 'Pondicherry Engineering College', 'Information Technology', '833', '100', '0'), (2387, 'Syracuse University', '4', 'Admit', 'MS', 'Computational Science', 'Fall ', '2014', '154', '149', '303', '3.5', '94', 'RKDF IST', 'IT', '74', '100', '0'), (2388, 'Syracuse University', '4', 'Admit', 'MS', 'MS Analytics/ MIS', 'Fall ', '2014', '161', '152', '313', '3', '105', 'Medicaps Institute of Science & Technology Indore', 'Electronics and Communication', '3.68', '4', '0'), (2389, 'Syracuse University', '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2013', '160', '150', '310', '3.5', '102', 'MDU', 'Computer Science', '74', '100', '0'), (2390, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '620', '1380', '5', '119', 'MU', 'Electronics and Telecommunications', '62', '100', '0'), (2391, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '800', '400', '1200', '3.5', '277', 'Anna University', 'Electrical and Instumentation Engineering', '86.6', '100', '0'), (2392, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2006', '710', '590', '1300', '3.5', '253', 'University of Mumbai', 'Electronins and Telecommunication', '56', '100', '0'), (2393, 'Syracuse University', '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '47', '33', '80', '4.5', '97', 'Pune University', '0', '67.3', '100', '0'), (2394, 'Syracuse University', '4', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '155', '145', '300', '3', '90', 'JNTU', 'mechanical', '72', '100', '0'), (2395, 'Syracuse University', '4', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2013', 'None', 'None', '0', '3.5', 'None', 'None', '0', '0', '0', '0'), (2396, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2007', '740', '470', '1210', '3', '257', 'Anna University', 'ECE', '8.4', '10', '0'), (2397, 'Syracuse University', '4', 'Admit', 'MS', 'CS/SE', 'Fall ', '2012', '160', '149', '309', '4', '105', 'Sona College', 'Information Technology', '76', '100', '0'), (2398, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '162', '154', '316', '3.5', '111', 'CBIT', 'Computer Science', '77', '100', '0'), (2399, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '790', '560', '1350', '4', '273', 'SVCE', 'Comp Science', '73.3', '100', '0'), (2400, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '149', '161', '310', '5', '105', 'MITS', 'E&C;', '7.5', '10', '0'), (2401, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '750', '570', '1320', '3.5', '110', 'Silicon Inst of Technology', 'electronics and Telecommunication', '8.29', '10', '0'), (2402, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '790', '580', '1370', '4', '113', 'None', '0', '0', '0', '0'), (2403, 'Syracuse University', '4', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2013', '156', '142', '298', '3', '97', 'SIES Graduate School of Technology', 'EXTC', '0', '0', '0'), (2404, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2012', '750', '650', '1400', '4', '114', 'MU', 'Electronics and Telecommunication', '69', '100', '0'), (2405, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '160', '144', '304', '3', '94', 'VTU', 'Computer Science Engineering', '74.21', '100', '0'), (2406, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '530', '1330', '4', '108', 'Anna University', 'Computer Science and Engineering', '81', '100', '0'), (2407, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2007', '760', '650', '1410', '4', '290', 'Anna University', 'ECE', '76', '100', '0'), (2408, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '165', '150', '315', '3.5', '7', 'Jaypee Institute of Information Technology', 'IT', '7.9', '10', '12'), (2409, 'Syracuse University', '4', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2012', '158', '149', '307', '3', '107', 'Anna University', 'Aeronautical', '7.5', '10', '0'), (2410, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '141', '300', '3', '88', 'Gujarat Technological University', 'Computer Engineering', '8.8', '10', '0'), (2411, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2008', '800', '330', '1130', '3', '93', 'KLCE', 'IST', '84', '100', '0'), (2412, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '155', '147', '302', '3.5', '96', 'Anna University', 'CSE', '7.32', '10', '6'), (2413, 'Syracuse University', '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '780', '550', '1330', '2.5', '99', 'MU', 'IT', '62', '100', '0'), (2414, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Spring ', '2013', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (2415, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '730', '420', '1150', '3.5', '91', 'MU', 'extc', '62', '100', '0'), (2416, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '153', '318', '4', '105', 'Siddaganga Institue of Technology', 'information science and engg', '9.34', '10', '0'), (2417, 'Syracuse University', '4', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2014', '163', '155', '318', '4', 'None', 'AISSMS College of Engineering Pune', 'Mechanical ENGG', '61.2', '100', '0'), (2418, 'Syracuse University', '4', 'Admit', 'MS', 'Telecommunication', 'Spring ', '2008', '790', '480', '1270', '4', '113', 'MU', 'ECE', '66', '100', '0'), (2419, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '154', '315', '3', '103', 'VTU', 'Computer Science', '85', '100', '0'), (2420, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '800', '610', '1410', '3.5', 'None', 'MU', 'Electronics and Telecommunication', '58', '100', '0'), (2421, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '149', '311', '3.5', '101', 'SVITS', 'Computer Science', '73.19', '100', '29'), (2422, 'Syracuse University', '4', 'Admit', 'MS', 'Information Science', 'Fall ', '2009', '760', '470', '1230', '3.5', '108', 'MU', 'computer', '0', '0', '0'), (2423, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '750', '600', '1350', '3.5', '105', 'University of Mumbai', 'Computer Engineering', '62', '100', '0'), (2424, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '760', '620', '1380', 'None', '260', 'Mysore University', 'CS', '76', '100', '0'), (2425, 'Syracuse University', '4', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2007', '760', '370', '1130', '4', '263', 'Pune University', 'Electronics & Telecommunications', '65.5', '100', '0'), (2426, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '159', '150', '309', '3.5', '106', 'WBUT', 'IT', '7.7', '10', '0'), (2427, 'Syracuse University', '4', 'Admit', 'MS', 'MIS-management related courses', 'Fall ', '2012', '800', '600', '1400', '3', '101', 'MU', 'Computer', '0', '0', '0'), (2428, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '162', '162', '324', '4', '115', 'University of Texas at Dallas', 'Arts and Technology', '0', '0', '0'), (2429, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '166', '149', '315', '4', '107', 'VIT', 'ECE', '8.75', '10', '0'), (2430, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '750', '550', '1300', '4', '273', 'MGMCET Mumbai University', 'EXTC', '67', '100', '0'), (2431, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '430', '1190', '3.5', '91', 'srknec', 'electonics', '63', '100', '0'), (2432, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '730', '580', '1310', '3', '103', 'MU', 'EXTC', '73', '100', '0'), (2433, 'Syracuse University', '4', 'Admit', 'MS', 'Finance', 'Fall ', '2012', '41', '25', '66', '4.5', '101', 'MU', 'Commerce', '0', '0', '0'), (2434, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '610', '1410', '3.5', '106', 'Delhi College Of Engineeing', 'IT', '74.1', '100', '0'), (2435, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '164', '159', '323', '3.5', '110', 'MU', 'Information Technology', '69', '100', '0'), (2436, 'Syracuse University', '4', 'Admit', 'MS', 'Management Information System', 'Fall ', '2015', '161', '150', '311', '3.5', '105', 'University of Mumbai', 'Computer Engineering', '73', '100', '24'), (2437, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2008', '790', '520', '1310', '4', '106', 'University of Mumbai', 'Electronics', '0', '0', '0'), (2438, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '470', '1250', '3.5', '106', 'D J Sanghvi', 'Electronics', '75.18', '100', '0'), (2439, 'Syracuse University', '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2012', '162', '149', '311', '3.5', '102', 'Don Bosco Institute of Technology', 'Electronics and Telecommunication', '66.2', '100', '0'), (2440, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '790', '680', '1470', '5', '293', 'D J Sanghvi', 'Computer Engineering', '66', '100', '0'), (2441, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '152', '314', '3.5', '102', 'Sri Jayachamarajendra College of Engineering', 'Computer Science and Engineering', '8.5', '10', '0'), (2442, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '780', '500', '1280', '3.5', '257', 'GTBIT', 'IT', '72', '100', '0'), (2443, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '710', '590', '1300', '3.5', '100', 'MU', 'Electronics', '74', '100', '0'), (2444, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '157', '149', '306', '4', '114', 'VTU', 'CSE', '8.88', '10', '36'), (2445, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '158', '155', '313', '4.5', '105', 'University of Mumbai', 'I.T', '65', '100', '0'), (2446, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '400', '1190', '3.5', '100', 'Anna University', 'CS', '76', '100', '0'), (2447, 'Syracuse University', '4', 'Admit', 'MS', 'CS / MSIS / ITM', 'Fall ', '2015', '170', '152', '322', '3.5', '97', 'Manipal Institue of Technology', 'Chemical', '6.64', '10', '56'), (2448, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '156', '156', '312', '2.5', '106', 'College Of Engineering Roorkee', 'Information Technology', '66', '100', '0'), (2449, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '42', '31', '73', '5', '109', 'None', '0', '0', '0', '0'), (2450, 'Syracuse University', '4', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '160', '149', '309', '3', '101', 'GGSIPU', 'CSE', '79', '100', '0'), (2451, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '800', '450', '1250', '3.5', '105', 'JNVU', 'Information Technology', '69', '100', '0'), (2452, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '630', '640', '1270', '3', '112', 'Pune University', 'Computer Science', '60', '100', '0'), (2453, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '770', '580', '1350', '4', '108', 'Govt Model Engg College', 'Computer Sc & Engineering', '76.6', '100', '0'), (2454, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '730', '680', '1410', '4', '113', 'Pune University', 'IT', '53', '100', '0'), (2455, 'Syracuse University', '4', 'Admit', 'MS', 'MIS/CS', 'Fall ', '2014', '162', '155', '317', '4', '107', 'SSN College of Engineering', 'CSE', '7.83', '10', '0'), (2456, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '730', '570', '1300', '3', '109', 'PESIT', 'ISE', '75', '100', '0'), (2457, 'Syracuse University', '4', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2012', '760', '520', '1280', '2.5', '97', 'Veermata Jijabai Technological Institute', 'mechanical', '6.1', '10', '0'), (2458, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '151', '313', '4.5', '108', 'Shivaji University', 'Computer Science', '67', '100', '0'), (2459, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '540', '1340', '4', '105', 'University of Mumbai', 'Electronics & Telecommunication', '61', '100', '0'), (2460, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '770', '540', '1310', '3.5', '114', 'Thadomal Shahani Engineering College', 'Computer Engineering', '68', '100', '0'), (2461, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical & Computer Engg/MIS/Industrial/Systems Engg', 'Fall ', '2014', '156', '147', '303', '4', '104', 'Anna University', 'EEE', '80.25', '100', '29'), (2462, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '590', '1390', '3', '98', 'None', 'Electronics', '68', '100', '0'), (2463, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '162', '151', '313', '3', '101', 'Pune University', 'Computer Science', '68', '100', '25'), (2464, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '800', '480', '1280', 'None', '110', 'BITS Pilani', '0', '6.5', '10', '0'), (2465, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '170', '153', '323', '3.5', '90', 'Osmania University', 'ECE', '77', '100', '0'), (2466, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '162', '155', '317', '3.5', '113', 'MU', 'E & TC', '70', '100', '0'), (2467, 'Syracuse University', '4', 'Admit', 'MS', 'Business', 'Fall ', '2012', '770', '550', '1320', '4', '105', 'Vidyalankar Institute of Technology', 'Electronics', '58', '100', '0'), (2468, 'Syracuse University', '4', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2014', '157', '156', '313', '4', '114', 'National University of Sciences and Technology', 'Mechatronics Engineering', '2.67', '4', '0'), (2469, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2012', '780', '500', '1280', '3.5', '92', 'BIT Mesra', 'Electical and Electronics Engineering', '6.28', '10', '0'), (2470, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '770', '600', '1370', '4', '114', 'Anna University', 'ECE', '78', '100', '0'), (2471, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '780', '390', '1170', '4', '110', 'MH Saboo Siddik college of Engg', 'Information Technology', '0', '0', '0'), (2472, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2013', '164', '148', '312', '3', '109', 'GITAM', 'ECE', '8.3', '10', '0'), (2473, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2014', '162', '151', '313', '3', '101', 'Amrita Vishwa Vidhyapeetham', 'Electronics and Instrumentation Engineering', '7.48', '10', '43'), (2474, 'Syracuse University', '4', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2012', '670', '430', '1100', '3.5', '98', 'SNIST', 'BS-EET', '3.4', '4', '0'), (2475, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '540', '1310', '4', '102', 'Rajiv Gandhi Technical University', 'Computer Science', '73', '100', '0'), (2476, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '710', '410', '1120', '4', 'None', 'University of Mumbai', 'Computer Engineering', '64', '100', '0'), (2477, 'Syracuse University', '4', 'Admit', 'MS', 'Management Information System', 'Fall ', '2014', '93', '49', '142', '3.5', '113', 'University of Mumbai', 'IT', '66', '100', '8'), (2478, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical and computer science', 'Fall ', '2007', '800', '530', '1330', '3.5', '102', 'Manipal Institue of Technology', 'Electrical and Electronics', '7.58', '10', '0'), (2479, 'Syracuse University', '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2012', '770', '500', '1270', '4', '109', 'VIT', 'Information Technology', '8.52', '10', '0'), (2480, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '147', '308', '3.5', '109', 'VIT University', 'ECE', '8.45', '10', '0'), (2481, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '46', '27', '73', '6', 'None', 'GGSIPU', 'computer science', '8.4', '10', '0'), (2482, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '155', '152', '307', '3', '105', 'Reva Institute of Technology', 'Computer Science', '73.4', '100', '0'), (2483, 'Syracuse University', '4', 'Admit', 'MS', 'Engineering Management', 'Spring ', '2016', '156', '154', '310', '3.5', '106', 'SRM', 'MBA', '8.9', '10', '0'), (2484, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '150', '311', '3', '91', 'VIT', 'Computer Science', '8.72', '10', '0'), (2485, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '161', '148', '309', '3.5', '91', 'MVSR', 'CSE', '80', '100', '0'), (2486, 'Syracuse University', '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2014', '790', '560', '1350', '3.5', '104', 'Syracuse University', 'Information Management', '3.8', '4', '0'), (2487, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '500', '1300', '4', '97', 'Yeditepe University', 'Electrical-Electronics Engineering', '3.46', '4', '0'), (2488, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '49', '30', '79', '5', '100', 'Pune University', 'Mechanical', '58', '100', '0'), (2489, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'Bangalore Institute of Technology', 'Information Science', '78.8', '100', '0'), (2490, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '800', '730', '1530', '4.5', '118', 'Jaypee Institute of Information Technology', 'Information Technology', '8', '10', '0'), (2491, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '700', '270', '970', '3', '78', 'D J Sanghvi', 'Electronics', '70', '100', '0'), (2492, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '770', '490', '1260', '3.5', '95', 'RNSIT', 'Electronics and Comm', '77', '100', '0'), (2493, 'Syracuse University', '4', 'Admit', 'MS', 'Engineering Management', 'Spring ', '2013', '156', '150', '306', '3', '91', 'JSS Noida', 'EC', '60', '100', '0'), (2494, 'Syracuse University', '4', 'Admit', 'MS', 'Forensic Science', 'Fall', 'None', '153', '142', '295', '3.5', 'None', 'Nirma Institute of Technology', 'Pharmacy', '8.2', '10', '0'), (2495, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '164', '148', '312', 'None', '110', 'University of Mumbai', 'Information Technology', '76.4', '100', '0'), (2496, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '162', '156', '318', '3.5', '114', 'Sikkim Manipal Institute of Technology', 'electronics and communication', '8.15', '10', '0'), (2497, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '163', '156', '319', '4', '114', 'K J Somaiya College of Engiineering', 'Computer Engineering', '63.52', '100', '0'), (2498, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '770', '540', '1310', '3', 'None', 'None', '0', '0', '0', '0'), (2499, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '780', '660', '1440', '4', '287', 'MU', 'Computer engg', '61', '100', '0'), (2500, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '800', '600', '1400', '3.5', '106', 'University of Mumbai', 'Information Technology', '68', '100', '0'), (2501, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2011', '740', '400', '1140', '4', '106', 'VTU', 'e&c;', '0', '0', '0'), (2502, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '145', '306', '3', '92', 'Sreenidhi Institute of Science & Technology', 'ECM', '81', '100', '0'), (2503, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', 'None', 'None', '0', '3.5', '109', 'None', '0', '0', '0', '0'), (2504, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '152', '146', '298', 'None', '100', 'MU', 'I.T', '73.11', '100', '0'), (2505, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '680', '600', '1280', '3.5', '97', 'MU', 'I.T', '66', '100', '0'), (2506, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '161', '147', '308', '3.5', '113', 'MSRIT', 'Information Science', '9.31', '10', '24'), (2507, 'Syracuse University', '4', 'Admit', 'MS', 'Electronics & Communication', 'Fall ', '2012', '800', '570', '1370', '3.5', '108', 'Gujarat Technological University', 'Electronics and Communication', '7.7', '10', '0'), (2508, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '157', '157', '314', '4', '113', 'PICT', 'I.T.', '60', '100', '0'), (2509, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '510', '1300', '3', '91', 'K J Somaiya College of Engiineering', 'Electronics & Telecom', '61', '100', '0'), (2510, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '162', '150', '312', '4', '102', 'SRM', 'IT', '7.95', '10', '0'), (2511, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '430', '1210', '4', '105', 'VTU', 'CS', '75.2', '100', '0'), (2512, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '770', '640', '1410', '5.5', '283', 'NIT Calicut', 'ECE', '9.2', '10', '0'), (2513, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '161', '158', '319', '4', '107', 'MU', 'Computer Engg', '3.14', '4', '0'), (2514, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '159', '144', '303', '3.5', '100', 'MU', 'Information Technology', '69.4', '100', '0'), (2515, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '157', '154', '311', '3', '86', 'Kakatiya University', 'Computer Science and Engineering', '77', '100', '0'), (2516, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '800', '590', '1390', '3.5', '105', 'Shah And anchor Kutchhi Engineering College', 'Computer', '69.5', '100', '0'), (2517, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '800', '600', '1400', '3.5', '108', 'University of Pune', 'Computer Science', '71', '100', '0'), (2518, 'Syracuse University', '4', 'Admit', 'MS', 'CS MIS', 'Fall ', '2013', '161', '152', '313', '3.5', '97', 'MU', 'Electrical & Electronics', '64', '100', '0'), (2519, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '157', '150', '307', '3', '95', 'Amity University', 'CSE', '8.35', '10', '0'), (2520, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '47', '37', '84', '5.5', '117', 'Amrita School of Engineering', 'ece', '8.1', '10', '0'), (2521, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '158', '150', '308', '4', '101', 'VTU', 'Electronics & Communication', '69.5', '100', '0'), (2522, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '160', '152', '312', '3', '108', 'NIT-Calicut', 'Computer Science', '7.93', '10', '0'), (2523, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '154', '314', '2.5', '91', 'SSN College of Engineering', 'IT', '79.2', '100', '0'), (2524, 'Syracuse University', '4', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Spring ', '2015', '159', '149', '308', '3', '95', 'Vaish College of Engineering', 'IT', '73.1', '100', '30'), (2525, 'Syracuse University', '4', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2012', '750', '510', '1260', '3.5', '116', 'VIT Mumbai University', 'EXTC', '63', '100', '0'), (2526, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'Pune University', 'Engineering(I.T)', '0', '0', '0'), (2527, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '156', '152', '308', '3', '100', 'MU', 'Computer Engineering', '0', '100', '0'), (2528, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '460', '1260', '3.5', 'None', 'MU', 'Computer Engineering', '72.12', '100', '0'), (2529, 'Syracuse University', '4', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2009', '800', '670', '1470', '5', '112', 'VTU', 'ECE', '68', '10', '0'), (2530, 'Syracuse University', '4', 'Admit', 'MS', 'Business Analytics and Project Management', 'Fall ', '2015', '157', '145', '302', '3', '87', 'Banasthali University', 'Computer Science', '79', '100', '88'), (2531, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '700', '570', '1270', '3.5', '107', 'PICT', 'Computer Engineering', '58', '100', '0'), (2532, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '167', '150', '317', '2.5', '96', 'BITS Pilani', 'Computer science', '7.8', '10', '0'), (2533, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '760', '640', '1400', '3', '98', 'Bharati Vidyapeeth', 'Comp Science', '54', '100', '0'), (2534, 'Syracuse University', '4', 'Admit', 'MS', 'Civil Engineering', 'Spring ', '2013', '156', '136', '292', '3', '96', 'Sarvajanik College of Engineering & Technology', 'civil engineering', '7.5', '10', '0'), (2535, 'Syracuse University', '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2014', '168', '156', '324', '3.5', '110', 'VESIT', 'Electronics and Telecommunication', '70.8', '100', '0'), (2536, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '580', '1340', '4.5', '105', 'Sardar Patel University', 'Computer Science', '77', '100', '0'), (2537, 'Syracuse University', '4', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (2538, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2011', '800', '550', '1350', '3.5', '102', 'VTU', 'CSE', '86', '100', '0'), (2539, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '790', '490', '1280', '4', '102', 'BMSCE', 'Telecommunication', '0', '0', '0'), (2540, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '710', '630', '1340', '3.5', '116', 'MU', 'Computer Engineering', '57', '100', '0'), (2541, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '170', '155', '325', '3.5', '109', 'Maharaja Surajmal Institute of Technology', 'Information Technology', '79', '100', '0'), (2542, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '152', '312', '3.5', '109', 'Gujarat Technological University', 'Computer Science', '7.8', '10', '0'), (2543, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '160', '323', '4.5', '112', 'UPTU', 'computer science', '80.8', '100', '0'), (2544, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '149', '314', '4', '114', 'Rajiv Gandhi Institute Of Technology', '0', '72', '100', '0'), (2545, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '151', '144', '295', '3', '102', 'MU', 'CS', '63.11', '100', '0'), (2546, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '730', '440', '1170', 'None', 'None', 'Valliammai Engineering College', 'Computers', '79', '100', '0'), (2547, 'Syracuse University', '4', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '165', '152', '317', '3', '112', 'BIT Mesra', 'Civil Engineering', '7.1', '10', '0'), (2548, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '420', '1200', '4', '110', 'Sinhgad College of Engineering', 'IT', '60.04', '100', '0'), (2549, 'Syracuse University', '4', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2013', '155', '155', '310', '3', 'None', 'Pune University', 'Civil Engineering', '54', '100', '0'), (2550, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2008', '800', '350', '1150', '2.5', '86', 'Koneru Lakshmaiah College of Engineering', 'Information Science And Technologyu', '89.2', '100', '0'), (2551, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '163', '155', '318', '3', '105', 'University of Pune', 'Computer Science', '8', '10', '43'), (2552, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '154', '162', '316', '3.5', '106', 'Sinhgad College of Engineering', 'IT', '63', '100', '0'), (2553, 'Syracuse University', '4', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '155', '145', '300', '3', '90', 'None', 'Mechanical Engineering', '70', '100', '0'), (2554, 'Syracuse University', '4', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (2555, 'Syracuse University', '4', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2014', '154', '149', '303', '3', '7', 'None', 'I.T', '67', '100', '0'), (2556, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '161', '148', '309', '3.5', '98', 'Anna University', 'ECE', '7.85', '10', '42'), (2557, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '161', '154', '315', '3.5', '101', 'Sardar Patel College of Engineering', 'Computers', '60.5', '100', '0'), (2558, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '450', '1220', '3', '95', 'MU', 'Computer', '70', '100', '0'), (2559, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '410', '1210', '3.5', '91', 'Rajiv Gandhi Institute Of Technology', 'COMPUTER SCIENCE', '63', '100', '0'), (2560, 'Syracuse University', '4', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2014', '159', '141', '300', '3', '90', 'Acharya Nagarjuna University', 'Electronics and communication', '71', '100', '0'), (2561, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Fall', 'None', '158', '142', '300', '3', '96', 'VTU', 'EC', '75', '100', '0'), (2562, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '147', '310', '3.5', '106', 'Sinhgad College of Engineering', 'Computer', '67.14', '100', '0'), (2563, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '750', '570', '1320', '3', '112', 'Galgotias College of Engineering & Technology(Uttar Pradesh Technical University)', 'Information Technology', '70', '100', '0'), (2564, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '157', '148', '305', '4', '96', 'Arya Institute of Engg and Tech', 'Computer Science', '77.7', '100', '0'), (2565, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '730', '500', '1230', '3.5', '98', 'MU', 'electronics', '69.74', '100', '0'), (2566, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '730', '600', '1330', '3.5', '106', 'University of Mumbai', 'IT', '62.5', '100', '0'), (2567, 'Syracuse University', '4', 'Admit', 'MS', 'Management Information System', 'Fall ', '2013', '156', '151', '307', 'None', '94', 'Pune University', 'Computer', '0', '0', '0'), (2568, 'Syracuse University', '4', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2011', '770', '520', '1290', '3.5', '106', 'Vishwakarma Institute of Technology', 'E&Tc;', '8.9', '10', '0'), (2569, 'Syracuse University', '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2013', '750', '600', '1350', '3', '104', 'Lokmanya Tilak College of Engineering', 'Computer', '3.57', '4', '0'), (2570, 'Syracuse University', '4', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2009', '800', '640', '1440', 'None', '101', 'MNIT', 'Electrical Engineering', '7.1', '10', '0'), (2571, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '158', '152', '310', '4.5', '109', 'VTU', 'Telecomm', '66', '100', '0'), (2572, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '147', '136', '283', '3.5', '107', 'Dayananda Sagar College of Engineering', 'Electronics and communication', '65', '100', '0'), (2573, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '310', '1080', '2.5', '93', 'Amity University', 'Computer Science and Engineering', '7.5', '10', '0'), (2574, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '144', '302', '3.5', '102', 'None', '0', '77.5', '100', '0'), (2575, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '157', '154', '311', '3', '105', 'MU', 'Computer', '60', '100', '0'), (2576, 'Syracuse University', '4', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '162', '154', '316', '3', '99', 'GCET', 'Mechanical', '8.89', '10', '0'), (2577, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '168', '155', '323', '5', '115', 'MU', 'Computer Engineering', '76.5', '100', '0'), (2578, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '162', '152', '314', '3', '83', 'VIT', 'ECE', '8.21', '10', '0'), (2579, 'Syracuse University', '4', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '158', '162', '320', '4', '109', 'SASTRA', 'Bioinformatics', '8.68', '10', '32'), (2580, 'Syracuse University', '4', 'Admit', 'MS', 'Marketing Communication', 'Fall ', '2012', '760', '560', '1320', '3.5', '106', 'D J Sanghvi', 'Electronics', '60.7', '100', '0'), (2581, 'Syracuse University', '4', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '152', '146', '298', '3.5', '6', 'VTU', 'electronic and communication', '81', '100', '0'), (2582, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '800', '540', '1340', '3', '105', 'K J Somaiya College of Engiineering', 'Information Technology', '73', '100', '0'), (2583, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '139', '300', '3', '95', 'Guru Gobind Singh Indraprashta University', 'Information Technology', '75.28', '100', '0'), (2584, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '156', '150', '306', '3.5', '116', 'CEG', 'Information Technology', '8.15', '10', '0'), (2585, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '159', '154', '313', '4', '111', "St Joseph's College of Engineering", 'Computer Science and Engineering', '86', '100', '0'), (2586, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '670', '540', '1210', '3', '103', 'D J Sanghvi', 'IT', '55', '100', '0'), (2587, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '710', '440', '1150', '3', '105', 'None', '0', '0', '0', '0'), (2588, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '151', '152', '303', '4', '111', 'B M S College of Engineering', 'Telecommunication engineering', '71.4', '100', '0'), (2589, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '152', '157', '309', '4', '107', 'Bharathiar University', 'Computer Science', '61', '100', '0'), (2590, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '161', '154', '315', '4', '106', 'SRM', 'Computer Science Engineering', '8.95', '10', '0'), (2591, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '640', '550', '1190', '3', '95', 'Anna University', 'CS', '7', '10', '0'), (2592, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '163', '145', '308', '3', '92', 'VTU', 'Electronics and Communication', '73.38', '100', '0'), (2593, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '157', '156', '313', '4.5', 'None', 'Nirma Institute of Technology', 'electronics and communications', '8.12', '10', '0'), (2594, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '163', '146', '309', 'None', '99', 'Global Academy Of Technology', 'Electronics and Communication', '72.83', '100', '0'), (2595, 'Syracuse University', '4', 'Admit', 'MS', 'Management Information System', 'Fall ', '2014', '153', '152', '305', '4', '104', 'Nagpur University', 'BE in IT', '61', '100', '70'), (2596, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '153', '311', '3.5', '107', 'BIT Mesra', 'Computer Science Engineering', '7.42', '10', '0'), (2597, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '158', '144', '302', '3', '97', 'Valliammai Engineering College', 'Computer Science and Engineering', '81.4', '100', '0'), (2598, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '157', '318', '3.5', '104', 'GGSIPU', 'CSE', '73.28', '100', '0'), (2599, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '167', '154', '321', '3.5', '107', 'COEP', 'Computer Engineering', '7.78', '10', '0'), (2600, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '154', '314', '3', '107', 'Gujarat Technological University', 'Computer Engineering', '81.61', '100', '0'), (2601, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '720', '540', '1260', '3.5', '107', 'Fr.CRCE Bandra', 'CS', '0', '0', '0'), (2602, 'Syracuse University', '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2012', '730', '570', '1300', '3.5', '99', 'Pune University', 'Computer', '60', '100', '0'), (2603, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '800', '660', '1460', '3.5', '107', 'NITK Surathkal', 'EEE', '7.17', '10', '0'), (2604, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '144', '305', '3', '81', 'Osmania University', 'Computer Science', '84.57', '100', '0'), (2605, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '520', '1310', '4', '107', 'PESIT', 'Electronics and communication', '77.27', '100', '0'), (2606, 'Syracuse University', '4', 'Admit', 'MS', 'Management Information System', 'Fall ', '2015', '161', '152', '313', '4', '106', 'CEG', 'B.Tech Information Technology', '8.01', '10', '29'), (2607, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '680', '1450', '4', '115', 'RAIT', 'Electronics', '68.42', '100', '0'), (2608, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '800', '650', '1450', '3', 'None', 'Chaitanya Bharathi Institute of Technology', 'Electronics and Communications', '85.5', '100', '0'), (2609, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '750', '430', '1180', '4', '107', 'Sathyabama University', 'Computer Science Engineering', '77.36', '100', '0'), (2610, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '720', '600', '1320', 'None', '108', 'Anna University', 'IT', '81', '100', '0'), (2611, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '156', '152', '308', '3.5', '101', 'Pune University', 'Computer', '54', '100', '0'), (2612, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '800', '470', '1270', '4', '109', 'BITS Pilani', 'B.Pharm (Hons.)', '8.71', '10', '0'), (2613, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '157', '150', '307', '3', '108', 'Madras Institute of Technology', 'ECE', '7.8', '10', '43'), (2614, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '730', '510', '1240', '3.5', '104', 'bombay University', 'Computer Science', '61', '100', '0'), (2615, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '151', '315', '3.5', '109', 'West Bengal University Of Technology', 'Computer Science and Engineering', '7.86', '10', '31'), (2616, 'Syracuse University', '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2014', '163', '157', '320', '4', '114', 'None', 'BE Computer Science', '66.2', '100', '0'), (2617, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '156', '151', '307', '3', '103', 'University of Mumbai', 'Computer Engg', '60.11', '100', '0'), (2618, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '800', '600', '1400', '4', '110', 'Manipal Institue of Technology', 'Electronics and Communication', '8.49', '10', '0'), (2619, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '159', '321', '4.5', '113', 'NIT Durgapur', 'Information Technology', '7.81', '10', '0'), (2620, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '780', '640', '1420', '4.5', '117', 'MU', 'Computer Engg', '59', '100', '0'), (2621, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '157', '146', '303', '3.5', '104', 'University of Mumbai', 'I.T', '65', '100', '0'), (2622, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '770', '380', '1150', '3.5', '100', 'Osmania University', 'CSE', '79', '100', '0'), (2623, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Spring ', '2012', '800', '560', '1360', '3', '111', 'MNNIT', 'IT', '7.55', '10', '0'), (2624, 'Syracuse University', '4', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '162', '159', '321', '4', '116', 'GGSIPU', 'Mechanical', '78.8', '100', '0'), (2625, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '159', '150', '309', '3', '104', 'MU', 'Computer', '71.2', '100', '0'), (2626, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '340', '1090', '3', '96', 'Jaya Engineering college', 'CSE', '88', '100', '0'), (2627, 'Syracuse University', '4', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2011', '800', '570', '1370', '5', '110', 'University of Mumbai', 'Mechanical Engineering', '71.33', '100', '0'), (2628, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '152', '315', '4.5', '109', 'Amity School of Engineering and Technology', 'Computer Science', '8', '10', '58'), (2629, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '161', '157', '318', '3.5', '112', 'Sinhgad College of Engineering', 'MBA', '68', '100', '0'), (2630, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '157', '321', '3.5', '104', 'Pune University', 'B.E.(Information Technology)', '64.2', '100', '0'), (2631, 'Syracuse University', '4', 'Admit', 'MS', 'Electronics and Communication', 'Spring ', '2016', '163', '158', '321', '5.5', 'None', 'University of Calicut', 'Electronics and Communication Engineering', '65', '100', '54'), (2632, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '780', '340', '1120', '3', '93', 'ITM Gurgaon', 'Computer Science Engineering', '72', '100', '0'), (2633, 'Syracuse University', '4', 'Admit', 'MS', 'Management Information System', 'Fall ', '2015', '158', '167', '325', '3', '105', 'Cochin University of Science and Technology', 'Electrical and Electronics Engineering', '67.5', '100', '57'), (2634, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '162', '143', '305', '3', '101', 'VTU', 'Telecommunication Engineering', '65.13', '100', '0'), (2635, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2007', '800', '670', '1470', '4.5', '290', 'VJTI', 'Electronics', '71.1', '100', '0'), (2636, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '720', '320', '1040', '3', '99', 'Amrita School of Engineering', 'CSE', '7.64', '10', '0'), (2637, 'Syracuse University', '4', 'Admit', 'MS', 'Telecom management', 'Fall ', '2013', '160', '149', '309', '2.5', '107', 'Maharishi Dayanand University', 'Computer Science', '70', '100', '0'), (2638, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '168', '147', '315', '3', '91', 'Gujarat Technological University', 'Computer Engineering', '7.96', '10', '29'), (2639, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '450', '1230', '5', '113', 'Amrita School of Engineering', 'Computer Science', '8.08', '10', '0'), (2640, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '159', '153', '312', '3', '110', 'MU', 'Information Technology', '3.79', '4', '0'), (2641, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '740', '440', '1180', '3', '88', 'Sinhgad College of Engineering', 'Electronics and Telecommunications', '62.13', '100', '0'), (2642, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '159', '155', '314', '4', '108', 'University of Pune', 'Computer Engineering', '61', '100', '0'), (2643, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Fall', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (2644, 'Syracuse University', '4', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2012', '780', '470', '1250', '4', '107', 'VIT Pune', 'EnTc', '8.55', '10', '0'), (2645, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '1390', '620', '2010', '770', '104', 'MU', 'Computer Engineering', '68', '100', '0'), (2646, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '700', '630', '1330', '4.5', '270', 'VESIT', 'Info Tech', '64.3', '100', '0'), (2647, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '168', '155', '323', '4.5', '101', 'VTU', 'Telecommunication', '75', '100', '0'), (2648, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '165', '149', '314', '3', '99', 'NIT Bhopal', 'Computer Science', '3.11', '4', '0'), (2649, 'Syracuse University', '4', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '157', '143', '300', '3', '91', 'Nitte Meenakshi Institute of Technology (Autonomous) / VTU', 'Mechanical Engineering', '8.71', '10', '0'), (2650, 'Syracuse University', '4', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2015', '157', '152', '309', '4', '106', 'MSRIT', 'Mechanical Engineering', '8.92', '10', '33'), (2651, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '570', '1330', '3', '110', 'COEP', 'Computer Science', '67.9', '100', '0'), (2652, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2012', '750', '500', '1250', '2.5', '98', 'VIT University', 'I.T', '8.2', '10', '0'), (2653, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall', 'None', '161', '150', '311', '3', '98', 'University of Mumbai', 'IT', '60', '100', '0'), (2654, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '163', '155', '318', '4', '112', 'University of Mumbai', 'Information Technology', '58.13', '100', '0'), (2655, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '800', '540', '1340', '3.5', '107', 'D J Sanghvi', 'Computer', '64', '100', '0'), (2656, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2009', '800', '360', '1160', '3', '95', 'Anna University', 'ECE', '73', '100', '0'), (2657, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '160', '155', '315', '3', '109', 'VIT', 'ECE', '69', '100', '0'), (2658, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '161', '146', '307', '3', 'None', 'Ganpat University', 'Computer', '72.51', '100', '42'), (2659, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '162', '150', '312', '3.5', '105', 'PESIT', 'Computer Science', '79.3', '100', '0'), (2660, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '166', '160', '326', '3.5', '113', 'Manipal Institue of Technology', 'Computer Science & Engineering', '7.14', '10', '0'), (2661, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '156', '151', '307', '4', '115', 'BPUT', 'Electronics and Communication', '8.39', '10', '29'), (2662, 'Syracuse University', '4', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2013', '154', '147', '301', '3', '95', 'VTU', 'Computer Science', '64', '100', '0'), (2663, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '600', '1370', '4', '110', 'None', '0', '7.46', '10', '0'), (2664, 'Syracuse University', '4', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '161', '152', '313', '3.5', '107', 'VESIT', 'Computer Engineering', '65', '100', '0'), (2665, 'Syracuse University', '4', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2015', '162', '151', '313', '4.5', '106', 'VIT', 'Electronics and Communication', '8.57', '10', '18'), (2666, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'Syracuse University', 'Electrical Engiineering', '3.4', '4', '0'), (2667, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '157', '143', '300', '4', '91', 'MVSR', 'computer science engineering', '72.3', '100', '0'), (2668, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '155', '318', '3.5', '106', 'Cochin University of Science and Technology', 'Computer Science and Engineering', '72.8', '100', '66'), (2669, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '530', '1300', '3', '102', 'GITAM', 'IT', '8.09', '10', '0'), (2670, 'Syracuse University', '4', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2011', '790', '620', '1410', '4.5', '117', 'SASTRA', 'Information & Communication technology', '8.6', '10', '0'), (2671, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '156', '320', '4', '114', 'Manipal Institue of Technology', 'Computer Science', '8.09', '10', '0'), (2672, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '150', '313', '3', '103', 'NIT Surathkal', 'Computer Science', '7.1', '10', '0'), (2673, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '760', '570', '1330', '4', '111', 'University of Pune', 'Computer Engineering', '59', '100', '0'), (2674, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '155', '148', '303', '4', '111', 'JSSATE VTU', 'Instrumentation Tech', '65', '100', '0'), (2675, 'Syracuse University', '4', 'Admit', 'MS', 'software engineering', 'Fall ', '2014', '162', '150', '312', '4', '107', 'SSN College of Engineering', 'Information Technology', '7.8', '10', '0'), (2676, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '157', '143', '300', '3.5', '110', 'SCSVMV University', 'Computer Science', '8.06', '10', '0'), (2677, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '161', '151', '312', '3.5', '107', 'Shah And anchor Kutchhi Engineering College', 'IT', '60.3', '100', '0'), (2678, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '560', '1360', 'None', 'None', 'NIT-Bhopal', 'Information Technology', '8.49', '10', '0'), (2679, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '150', '310', '3', '114', 'University of Pune', 'Conputer Science', '59', '100', '15'), (2680, 'Syracuse University', '4', 'Admit', 'MS', 'Information Science', 'Fall ', '2012', '770', '620', '1390', '3', '109', 'Kalinga Institute of Industrial Technology', 'Electronics &Telecom;', '7.1', '10', '0'), (2681, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '740', '320', '1060', '2.5', '86', 'Anna University', 'CSE', '75', '100', '0'), (2682, 'Syracuse University', '4', 'Admit', 'MS', 'MIS-management related courses', 'Fall ', '2012', '640', '620', '1260', '3.5', '105', 'None', '0', '0', '0', '0'), (2683, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '162', '150', '312', '3', '99', 'Atharva College', 'ELECTRONICS', '70', '100', '0'), (2684, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '164', '159', '323', '5.5', '117', 'Manipal Institue of Technology', 'E&C;', '8.2', '10', '0'), (2685, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '520', '1310', '3', '100', 'IIIT Allahabad', 'IT', '7.5', '10', '0'), (2686, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '165', '149', '314', '3', '101', 'VTU', 'Computer Science', '75', '100', '0'), (2687, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '340', '1100', '3', '80', 'Faculty of technology & Engg. MSU', 'Computer Science & Enggineering', '3.55', '4', '0'), (2688, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '760', '620', '1380', '3', '96', 'Panjab University', 'Computer Science', '80.67', '100', '0'), (2689, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '152', '313', '4', '105', 'VTU', 'Computer Sciece and Engineering', '71', '100', '0'), (2690, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '168', '153', '321', '5', '106', 'None', '0', '0', '0', '0'), (2691, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '690', '660', '1350', '3', '102', 'Sri Venkateswara College of Engineering', 'Computer science Engg', '83', '100', '0'), (2692, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '165', '152', '317', '4', '104', 'None', '0', '72', '100', '0'), (2693, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '149', '312', '3.5', '111', 'JNTU', 'CSE', '78.3', '100', '12'), (2694, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '161', '322', '3.5', '108', 'C.S.V.T.U.', 'Computer Science and Engg', '8.56', '10', '0'), (2695, 'Syracuse University', '4', 'Admit', 'MS', 'Management Information System', 'Fall ', '2014', '163', '153', '316', '4.5', '108', 'H B T I Kanpur India', 'Food Tech', '7.3', '100', '0'), (2696, 'Syracuse University', '4', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'Nirma Institute of Technology', '0', '0', '0', '0'), (2697, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '780', '660', '1440', '4', '283', 'MU', 'Computers', '62', '100', '0'), (2698, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '164', '152', '316', '4', '115', 'VIT Pune', 'e&tc;', '7.5', '10', '0'), (2699, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '144', '304', '3.5', '113', 'CITM Faridabad', 'CSE', '64', '100', '0'), (2700, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '158', '146', '304', '3', '96', 'Don Bosco Institute of Technology', 'IT', '67', '100', '24'), (2701, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2006', '750', '560', '1310', '3.5', '260', 'SVIT Vasad (Gujarat University)', 'IT', '63', '100', '0'), (2702, 'Syracuse University', '4', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2008', '800', '640', '1440', '5', 'None', 'SVNIT Surat', 'Electronics', '76', '100', '0'), (2703, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '151', '148', '299', '3', '93', 'S.S.P.M college of Engineering-mumbai university', 'E&TC;', '0', '0', '0'), (2704, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2011', '700', '450', '1150', '3', '99', 'Walchand College Of Engineering', 'Electronics Engineering', '66', '100', '0'), (2705, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '162', '153', '315', '3.5', '100', 'MU', 'Computer Engineering', '60.44', '100', '0'), (2706, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '790', '560', '1350', '3', '110', 'Rajiv Gandhi Institute Of Technology', 'Computer Science', '71', '100', '0'), (2707, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '164', '157', '321', '4.5', '109', 'Amrita Vishwa Vidhyapeetham', 'Information Technology', '8.8', '10', '24'), (2708, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '145', '304', '3', '100', 'MU', 'Computer Engineering', '70', '100', '0'), (2709, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '800', '630', '1430', '5', '277', 'MANIT', 'Electrical', '76', '100', '0'), (2710, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2', '159', '149', '308', 'None', '109', 'Rajiv Gandhi Institute Of Technology', 'BE EXTC', '63', '100', '0'), (2711, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '156', '152', '308', '3', '104', 'University of Pune', 'Information Technology', '8.74', '10', '0'), (2712, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '155', '146', '301', '3', '101', 'SASTRA', 'ECE', '7', '10', '0'), (2713, 'Syracuse University', '4', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2012', '156', '149', '305', '3.5', '99', 'SASTRA', 'Information Technology', '7.47', '10', '0'), (2714, 'Syracuse University', '4', 'Admit', 'MS', 'Management Information System', 'Fall ', '2015', '49', '26', '75', '5', '99', 'Amrita Vishwa Vidhyapeetham', 'EEE', '8.46', '100', '0'), (2715, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '720', '530', '1250', '3.5', '104', 'Pune University', 'Computers', '62.27', '100', '0'), (2716, 'Syracuse University', '4', 'Admit', 'MS', 'Management Information System', 'Fall ', '2015', '167', '154', '321', '4', '112', 'IIT Kharagpur', 'Architecture', '8.05', '10', '0'), (2717, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '800', '590', '1390', '2.5', '107', 'TSEC', 'Computer Engineering', '61', '100', '0'), (2718, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '141', '301', '4', '98', 'Jaya Engineering College', 'Computer Science and Engineering', '80', '100', '29'), (2719, 'Syracuse University', '4', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '790', '410', '1200', '4', '107', 'Nirma Institute of Technology', 'mechanical engg', '8.51', '10', '0'), (2720, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '162', '152', '314', '3', '104', 'University of Mumbai', 'Electronics and Telecommunication', '58.8', '100', '0'), (2721, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2007', '710', '620', '1330', '4.5', '283', 'Maharishi Dayanand University', 'IT', '80', '100', '0'), (2722, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '50', '31', '81', '3.5', '100', 'None', '0', '3.14', '4', '0'), (2723, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '160', '152', '312', '3.5', '112', 'Pune University', 'Information Technology', '65', '100', '0'), (2724, 'Syracuse University', '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2013', '720', '650', '1370', '4', '113', 'MU', 'Chemical', '60', '100', '0'), (2725, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '161', '155', '316', 'None', '113', 'MU', 'Computer Engineering', '60', '100', '0'), (2726, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '148', '142', '290', '3', '86', 'GITAM', 'cse', '8.15', '10', '0'), (2727, 'Syracuse University', '4', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2006', '780', '680', '1460', '4.5', '290', 'MU', 'Computer Engg', '59', '100', '0'), (2728, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '142', '159', '301', '3.5', '98', 'SRM', 'ECE', '9.5', '10', '0'), (2729, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2012', '760', '720', '1480', '4', '102', 'University of Mumbai', 'Computer', '68.38', '100', '0'), (2730, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '161', '153', '314', '3.5', '117', 'Pune University', 'Computer Science', '55', '100', '0'), (2731, 'Syracuse University', '4', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '159', '143', '302', '3.5', '85', 'None', 'ECE', '79', '100', '0'), (2732, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '156', '151', '307', '3.5', '106', 'MU', 'IT', '69', '100', '0'), (2733, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '640', '600', '1240', 'None', '107', 'Pune University', 'Computer', '61', '100', '0'), (2734, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '600', '1400', '4.5', '112', 'SGGS institute of engg nanded', 'Electronics and Telecommunications', '8.53', '10', '0'), (2735, 'Syracuse University', '4', 'Admit', 'MS', 'Management Information System', 'Fall ', '2014', '162', '152', '314', '3.5', '106', 'Punjab Technical University', 'Computer Science', '78.1', '100', '0'), (2736, 'Syracuse University', '4', 'Admit', 'MS', 'Management Information System', 'Fall ', '2014', '161', '158', '319', '3', '101', 'MG University', 'ECE', '69.4', '100', '0'), (2737, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '520', '1320', '3.5', '94', 'Sona College', 'Information Technology', '80', '100', '0'), (2738, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '168', '158', '326', '4', '119', 'University of Pune', 'InformationTechnology', '62', '100', '0'), (2739, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2012', '730', '410', '1140', '3', '109', 'Guru Jambheshwar University of Science & Technology', 'ECE', '8.67', '10', '0'), (2740, 'Syracuse University', '4', 'Admit', 'MS', 'Management Information System', 'Fall ', '2013', '158', '140', '298', '3', '92', 'University of Pune', '0', '76.2', '100', '0'), (2741, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '770', '460', '1230', '3', '110', 'PESIT', 'Telecommunication', '67.9', '100', '0'), (2742, 'Syracuse University', '4', 'Admit', 'MS', 'CS / MSIS / ITM', 'Fall ', '2011', '690', '610', '1300', '3.5', '94', 'Priyadarshini College of Engineering', 'Comp.Tech', '62.96', '100', '0'), (2743, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '159', '151', '310', '3', '103', 'PESIT', 'C.S', '69', '100', '0'), (2744, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '162', '147', '309', '3.5', '97', 'Vasavi College of Engineering', 'Computer Science', '91', '100', '0'), (2745, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '156', '145', '301', '3', '104', 'BMSCE', 'Computer Science', '9.3', '10', '0'), (2746, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '144', '307', '3.5', '98', 'Nagarjuna University', 'ECE', '8.55', '10', '0'), (2747, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '156', '152', '308', '3.5', '105', 'VTU', 'EE', '78', '100', '0'), (2748, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '147', '307', '3.5', '104', 'JNTU', 'CSE', '79.5', '100', '0'), (2749, 'Syracuse University', '4', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '740', '480', '1220', '3', '100', 'University of Mumbai', 'Electronics and Telecommunication', '63', '100', '0'), (2750, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '166', '160', '326', '4', '114', 'Pondicherry Engineering College', 'Computer Science', '8.35', '10', '0'), (2751, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '162', '148', '310', '3', '108', 'VIT University', 'ECE', '8.15', '10', '0'), (2752, 'Syracuse University', '4', 'Admit', 'MS', 'Biotechnology', 'Fall ', '2013', '152', '152', '304', '3', '101', 'Anna University', 'Biotechnology', '8.5', '10', '0'), (2753, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '760', '520', '1280', '3.5', '113', 'JNTU', 'Computer Science', '67', '100', '0'), (2754, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '156', '147', '303', '3.5', '109', 'VTU', 'CS & E', '81', '100', '0'), (2755, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '165', '156', '321', '4', '112', 'MU', 'Electronics and Telecommunication Engineering', '59.9', '100', '0'), (2756, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '151', '315', '4', '105', 'VSS Univ of Technology', 'Computer Science', '8.05', '10', '0'), (2757, 'Syracuse University', '4', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '166', '160', '326', '4', '110', 'IIITDM-Jabalpur', 'Mechanical', '6.9', '10', '4'), (2758, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '157', '145', '302', 'None', '100', 'R V College of Engineering', 'cs', '7.09', '10', '0'), (2759, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '160', '150', '310', '3', '100', 'PICT', 'Computer Science', '3.2', '4', '0'), (2760, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '50', '34', '84', '5.5', '98', 'BESU Shibpur', 'Electrical Engineering', '61', '100', '0'), (2761, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Networking', 'Fall ', '2013', '161', '156', '317', '4', '105', 'Kerala University', 'Information Technology', '3.98', '4', '0'), (2762, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2011', '680', '640', '1320', '3', '106', 'None', 'Instrumentation', '73', '100', '0'), (2763, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '800', '470', '1270', '4.5', '104', 'K J Somaiya College of Engiineering', 'it', '67', '100', '0'), (2764, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '167', '155', '322', '3', '102', 'NIT Calicut', 'Computer Science and Engineering', '7.46', '10', '26'), (2765, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '161', '148', '309', '3', '7', 'GITAM', 'E.C.E', '9', '10', '0'), (2766, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '153', '312', '3', '105', 'BNMIT', 'Information Science and Engineering', '74', '100', '0'), (2767, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '163', '150', '313', '4', '99', 'NIT Jalandhar', 'Industrial Engineering', '7.65', '10', '0'), (2768, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2010', '770', '450', '1220', '3', '100', 'VTU', 'Electronics and Communication', '70', '100', '0'), (2769, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '800', '630', '1430', '4.5', '297', 'GITAM', 'Electronics & Communication', '90.23', '100', '0'), (2770, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '730', '550', '1280', '4', '115', 'PESIT', 'Computer Science', '70', '100', '0'), (2771, 'Syracuse University', '4', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (2772, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '163', '156', '319', '3', '105', 'Nagpur University', 'B.E electronics', '61', '100', '0'), (2773, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '147', '311', '3', '83', 'Pune University', 'Computer Science', '63.51', '100', '0'), (2774, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '160', '148', '308', '3', '103', 'Medicaps Institute of Science & Technology Indore', 'EE', '74.97', '100', '0'), (2775, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '161', '151', '312', '3', '93', 'ITM Gurgaon', 'CS', '65', '100', '0'), (2776, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '157', '148', '305', '4', '101', 'Ramrao Adik Institute of Technology', 'IT', '63', '100', '0'), (2777, 'Syracuse University', '4', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2013', '150', '143', '293', 'None', '94', 'Siddaganga Institue of Technology', 'Computer Science', '8.72', '10', '0'), (2778, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2008', '650', '390', '1040', '3', '97', 'Sardar Patel College of Engineering', 'Electronics', '71.23', '100', '0'), (2779, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '540', '1330', '4', '111', 'VTU', 'CSE', '74', '100', '0'), (2780, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2008', '750', '520', '1270', '5', '114', 'PESIT', 'CS', '76', '100', '0'), (2781, 'Syracuse University', '4', 'Admit', 'MS', 'Mechanical Engineering', 'Spring', 'None', '159', '150', '309', '3', '98', 'None', '0', '73', '100', '0'), (2782, 'Syracuse University', '4', 'Admit', 'MS', 'MIS/MS CS', 'Fall ', '2013', '161', '160', '321', '4', '118', 'CEG', 'IT', '7.6', '10', '0'), (2783, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '770', '710', '1480', '4', '110', 'MU', 'Electronics', '63', '100', '0'), (2784, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '160', '154', '314', '4', '117', 'MU', 'Information Technology', '63', '100', '0'), (2785, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '150', '309', '3.5', '93', 'Anna University', 'Computer Science', '8.2', '10', '0'), (2786, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '760', '480', '1240', '3.5', '102', 'JNTU', 'Computer Science and Engineering', '73.95', '100', '0'), (2787, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '730', '430', '1160', '3', '92', 'rmdec/anna univ', 'ece', '75', '100', '0'), (2788, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '740', '400', '1140', '3', '97', 'MSRIT', 'IT', '68', '100', '0'), (2789, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '163', '159', '322', '4', '111', 'D J Sanghvi', 'Computer Science', '65', '100', '0'), (2790, 'Syracuse University', '4', 'Admit', 'MS', 'Management Information System', 'Fall ', '2014', '164', '153', '317', '4', '105', 'MU', 'Computer Engineering', '68', '100', '0'), (2791, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '157', '150', '307', '3', '98', 'SRM', 'EEE', '8.324', '10', '21'), (2792, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '800', '460', '1260', '4', '247', 'Sardar Patel College of Engineering', 'Information Technology', '67.86', '100', '0'), (2793, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '520', '1320', '3.5', '100', 'Pune University', 'I.T.', '67.1', '100', '0'), (2794, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '154', '316', '3.5', 'None', 'JNTU', 'Information Technology', '74.11', '100', '0'), (2795, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '161', '159', '320', '3.5', '110', 'University of Pune', 'Electronics', '64', '100', '0'), (2796, 'Syracuse University', '4', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2012', '163', '147', '310', '3.5', '106', 'U.P.T.U.', 'ECE', '73.3', '100', '0'), (2797, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '760', '520', '1280', '4', '102', 'MU', 'Information Technology', '62', '100', '0'), (2798, 'Syracuse University', '4', 'Admit', 'MS', 'Mechanical Engineering', 'Spring ', '2013', '163', '149', '312', '3.5', 'None', 'NIT Durgapur', 'Mechanical Engineering', '7.93', '10', '0'), (2799, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '540', '1340', '3', '110', 'UPTU', 'Computer Science and Engineering', '70', '100', '0'), (2800, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '150', '147', '297', '3.5', '110', 'PICT', 'Computer Engineering', '63', '100', '0'), (2801, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '800', '690', '1490', '3.5', '111', 'University of Mumbai', 'Electronics', '57', '100', '0'), (2802, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '162', '149', '311', '4', '112', 'UPTU', 'Information Technology', '75.1', '100', '0'), (2803, 'Syracuse University', '4', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Spring ', '2013', '163', '155', '318', '3.5', '115', 'Shivaji University', 'Information Technology', '65', '100', '0'), (2804, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '800', '500', '1300', '4', '283', 'University of Kerala', 'Electronics & Communication', '77', '100', '0'), (2805, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '163', '149', '312', '3', '76', 'VTU', 'Computer Science', '70', '100', '0'), (2806, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '168', '150', '318', '4', '108', 'SSN College of Engineering', 'EEE', '74', '100', '0'), (2807, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '800', '590', '1390', '4', '257', 'MU', 'IT', '65', '100', '0'), (2808, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '750', '570', '1320', '4', '112', 'PICT', 'Computer Engineering', '3.63', '4', '0'), (2809, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '570', '1320', '4', '112', 'PICT', 'CS', '3.63', '4', '0'), (2810, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '620', '1390', '4', '98', 'D J Sanghvi', 'IT', '66.58', '100', '0'), (2811, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '170', '160', '330', '4', '112', 'Dr MGR College', 'Computer Science', '8.4', '10', '0'), (2812, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '790', '550', '1340', '3', '106', 'Punjabi University', 'University college of Engineering', '68.8', '100', '0'), (2813, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '148', '311', 'None', 'None', 'Manipal Institue of Technology', 'Computer Science and Engineering', '7.72', '10', '0'), (2814, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '147', '311', '3', '98', 'DSCE', 'CS', '71.94', '100', '0'), (2815, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '780', '550', '1330', '3', '101', 'Nagpur University', 'Computer Science', '73.56', '100', '0'), (2816, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2013', '157', '142', '299', '3.5', '88', 'NIT Kurukshetra', 'Electronics and Communication', '8.039', '10', '0'), (2817, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '155', '316', '3.5', '106', 'Punjab Technical University', 'Computer Science', '64.73', '100', '84'), (2818, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '740', '540', '1280', '3', '104', 'MU', 'IT', '71', '100', '0'), (2819, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '150', '313', '3', '92', 'VTU', 'ISE', '75', '100', '0'), (2820, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '168', '155', '323', '3.5', '109', 'SASTRA', 'CSE', '8.4', '10', '0'), (2821, 'Syracuse University', '4', 'Admit', 'MS', 'CS / MIS', 'Fall ', '2013', '163', '152', '315', 'None', '102', 'Amity University', 'CS', '7.07', '10', '0'), (2822, 'Syracuse University', '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '650', '630', '1280', '4', '112', 'univeristy of mumbai', 'information technology', '57', '100', '0'), (2823, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '164', '153', '317', '3', '102', 'JNTU', 'ECE', '74', '100', '0'), (2824, 'Syracuse University', '4', 'Admit', 'MS', 'Telecom management', 'Fall ', '2015', '157', '150', '307', '4', '107', 'GITAM', 'Electronics and Communications Engineering', '8.73', '10', '0'), (2825, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '720', '660', '1380', '3.5', '111', 'University of Mumbai', 'computers', '59.02', '100', '0'), (2826, 'Syracuse University', '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2012', '730', '640', '1370', '3.5', '115', 'BITS Goa', 'Information Systems', '7.4', '10', '0'), (2827, 'Syracuse University', '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2012', '780', '630', '1410', '4.5', '99', 'MU', 'computers', '59', '100', '0'), (2828, 'Syracuse University', '4', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2014', '170', '163', '333', '4', '111', 'COEP', 'Electrical Engineering', '8.51', '10', '0'), (2829, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '145', '308', '3', '96', 'Thapar University', 'Computer Science Engineering', '7.99', '10', '18'), (2830, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '167', '154', '321', '4', '114', 'SJCE', 'CS&E;', '8.69', '10', '0'), (2831, 'Syracuse University', '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2013', '164', '150', '314', '3.5', '113', 'VESIT', 'Computers', '3.5', '4', '0'), (2832, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '760', '510', '1270', '4.5', '102', 'Thadomal Shahani Engineering College', 'Computers', '60', '100', '0'), (2833, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '163', '153', '316', '4', '104', 'Shivaji University', 'Computer Science and Engineering', '58', '100', '0'), (2834, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '165', '148', '313', '3.5', '313', 'Nagpur University', 'Electronics', '74.5', '100', '0'), (2835, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '50', '34', '84', '5.5', '112', 'Nirma Institute of Technology', 'B.Tech Computer Engg.', '7.54', '10', '0'), (2836, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '750', '350', '1100', '3', '90', 'D J Sanghvi', 'telecomm', '71', '100', '0'), (2837, 'Syracuse University', '4', 'Admit', 'MS', 'mba', 'Fall ', '2011', '48', '28', '76', '4.5', '110', 'Anna University', 'ECE', '68', '100', '0'), (2838, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '39', '27', '66', '5', '108', 'Anna University', 'Information technology', '68', '100', '0'), (2839, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2015', 'None', 'None', '0', 'None', '108', 'RTM Nagpur University', 'Electronics and Telecommunication', '75.61', '100', '52'), (2840, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '780', '590', '1370', '3', '97', 'SDM', 'E&C;', '75.5', '100', '0'), (2841, 'Syracuse University', '4', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '750', '400', '1150', '3', '92', 'Coimbatore Insitute of Technology', 'Electronics and communication Engg', '8.7', '10', '0'), (2842, 'Syracuse University', '4', 'Admit', 'MS', 'Management Information System', 'Fall ', '2014', '155', '154', '309', '3', '105', 'Sri Venkateswara College of Engineering', 'Computer Science and Engineering', '7.24', '10', '6'), (2843, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '162', '148', '310', '3', '96', 'None', '0', '67', '100', '0'), (2844, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2008', '720', '580', '1300', 'None', '270', 'Bangalore Institute of Technology', 'Computer Science', '69.22', '100', '0'), (2845, 'Syracuse University', '4', 'Admit', 'MS', 'Management Information System', 'Fall ', '2015', '164', '155', '319', '3.5', '109', 'GGSIPU', 'CS', '72', '100', '12'), (2846, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '157', '150', '307', '3', '94', 'GITAM', 'Computer Science', '8.23', '10', '0'), (2847, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '800', '690', '1490', '5', '300', 'ICFAI', 'Electronics and Communication', '9.82', '10', '0'), (2848, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '163', '155', '318', '3', '106', 'MU', 'Information Technology', '68', '100', '0'), (2849, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '680', '460', '1140', '4', '97', 'VIT', 'IT', '0', '0', '0'), (2850, 'Syracuse University', '4', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2011', '750', '500', '1250', '3', '101', 'North Gujarat University', 'EC', '3.6', '4', '0'), (2851, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '780', '580', '1360', '4', '104', 'Vishwakarma Institute of Technology', 'Computer Science', '64.5', '100', '0'), (2852, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '165', '153', '318', '4', '111', 'TSEC', 'EXTC', '58', '100', '0'), (2853, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '780', '510', '1290', '3.5', '110', 'VESIT', 'Electronics and Telecommunications', '60', '5', '0'), (2854, 'Syracuse University', '4', 'Admit', 'MS', 'environmental engineering', 'Fall ', '2013', '680', '700', '1380', '3.5', '113', 'Anna University', 'Bio Technology', '8.7', '10', '0'), (2855, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall', 'None', '161', '159', '320', 'None', '108', 'Amrita School of Engineering', 'computer science', '7.56', '10', '0'), (2856, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2008', '690', '320', '1010', '3.5', '250', 'Atharva College', 'Electronics and telecommunication', '67', '100', '0'), (2857, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '730', '450', '1180', '2', 'None', 'A D Patel Institute Of Technology', 'Electronics & Communication', '8.15', '10', '0'), (2858, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2015', 'None', 'None', '0', 'None', '101', 'UPTU', 'Computer Science', '77', '100', '48'), (2859, 'Syracuse University', '4', 'Admit', 'MS', 'Information Security', 'Fall ', '2012', '760', '630', '1390', '3', '98', 'MU', 'Information Technology', '55', '100', '0'), (2860, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '156', '152', '308', '4', '104', 'JMIT Radaur(Kurukshetra University)', 'Electronics & Communications', '72', '100', '0'), (2861, 'Syracuse University', '4', 'Admit', 'MS', 'CS / MSIS / ITM', 'Fall ', '2013', '165', '157', '322', '4', '110', 'Anna University', 'IT', '82', '100', '0'), (2862, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '770', '650', '1420', '4', '112', 'University of Kerala', 'ECE', '7.55', '10', '0'), (2863, 'Syracuse University', '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '740', '450', '1190', 'None', '102', 'K.C college of engineering', 'I.T', '0', '0', '0'), (2864, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2008', '780', '410', '1190', '3', '1210', 'SRKNEC nagpur', 'elect & communication', '68', '100', '0'), (2865, 'Syracuse University', '4', 'Admit', 'MS', 'Neurosciences', 'Fall', 'None', '152', '158', '310', '3', '90', 'JIPMER', 'BIOCHEMISTRY', '70', '100', '0'), (2866, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '163', '154', '317', '3.5', '108', 'VJTI', 'Electrical Engineering', '8.4', '10', '0'), (2867, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '800', '490', '1290', '3', '105', 'Medicaps Institute of Science & Technology Indore', 'Computer Science', '79.25', '100', '0'), (2868, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '152', '316', '4', '113', 'RGPV', 'Information Technology', '80', '100', '0'), (2869, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '164', '154', '318', '4', '102', 'University of Mumbai', 'Computers', '60', '100', '18'), (2870, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '770', '570', '1340', '3', '107', 'BBSBEC', 'CSE', '76.1', '100', '0'), (2871, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2006', '800', '680', '1480', '4.5', '273', 'PICT', 'Computer Science', '60', '100', '0'), (2872, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '160', '148', '308', '3.5', 'None', 'BNMIT', 'Information Science', '69', '100', '0'), (2873, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '800', '580', '1380', '3', '101', 'None', '0', '85', '100', '0'), (2874, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '160', '153', '313', '3', '8', 'SSN College of Engineering', 'Information Technology', '79', '100', '38'), (2875, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2014', '730', '700', '1430', '4', '109', 'VTU', 'cs', '72.6', '100', '0'), (2876, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '155', '142', '297', '3', '82', 'Shivaji University', 'Computer Science', '65.8', '100', '0'), (2877, 'Syracuse University', '4', 'Admit', 'MS', 'None', 'Fall ', '2012', '800', '610', '1410', '4', '107', 'SUA Iran', 'Electrical Engineering', '0', '0', '0'), (2878, 'Syracuse University', '4', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2006', '750', '550', '1300', '4', '275', 'MU', 'EXTC', '67', '100', '0'), (2879, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '790', '460', '1250', '3', '107', 'RGPV', 'Electronica and Comm', '70.28', '100', '0'), (2880, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '770', '570', '1340', '3.5', '116', 'Pune University', 'Electronics & Telecom', '65', '100', '0'), (2881, 'Syracuse University', '4', 'Admit', 'MS', 'Information Science', 'Fall ', '2011', '770', '570', '1340', '3.5', '116', 'Cummins College of Engineering Pune', 'Pune University', '64.42', '100', '0'), (2882, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '800', '660', '1460', '4.5', '293', 'MU', 'Electronics and Telecommunication', '68', '100', '0'), (2883, 'Syracuse University', '4', 'Admit', 'MS', 'CS', 'Fall ', '2013', '158', '152', '310', '3', '100', 'MSRIT', 'Information Science', '68', '100', '0'), (2884, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '165', '157', '322', '3', '105', 'National Taiwan University', 'Library and Information Science', '3.54', '4', '0'), (2885, 'Syracuse University', '4', 'Admit', 'MS', 'Engineering Management', 'Summer ', '2015', '161', '152', '313', '3.5', '96', 'University of Mumbai', 'Information Technology', '66', '100', '29'), (2886, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '730', '490', '1220', '3', '104', 'University of Mumbai', 'Electrical Engg.', '67', '100', '0'), (2887, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '149', '313', '3', '96', 'Global Institute of Technology(RTU)', 'IT', '71.4', '100', '0'), (2888, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '158', '148', '306', '3.5', '104', 'Anna University', 'ECE', '8.69', '10', '0'), (2889, 'Syracuse University', '4', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2013', '151', '141', '292', '3', '83', 'Anna University', 'Electronics & Instrumentation', '8.01', '10', '0'), (2890, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2011', 'None', 'None', '0', 'None', 'None', 'SVCE', 'ECE', '0', '0', '0'), (2891, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '163', '159', '322', '3.5', '113', 'Osmania University', 'CSE', '8.2', '10', '0'), (2892, 'Syracuse University', '4', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '770', '520', '1290', '3', '102', 'MU', 'ELECTRONICS & TELECOMMUNICATION', '6.5', '10', '0'), (2893, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '159', '144', '303', 'None', 'None', 'Pune University', 'CS', '70', '100', '0'), (2894, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '163', '154', '317', '3.5', 'None', 'Guru Gobind Singh Indraprashta University', 'Information Technology', '70.1', '100', '0'), (2895, 'Syracuse University', '4', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '700', '640', '1340', '3.5', '104', 'MU', 'electronics', '59', '100', '0'), (2896, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '660', '1440', '4', '111', 'MU', 'Computer Enginnering', '69', '100', '0'), (2897, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '800', '570', '1370', '3.5', '100', 'MU', 'Computer Engineering', '0', '0', '0'), (2898, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '153', '315', '3.5', '106', 'Maharishi Dayanand University', 'Computer Engineering', '7.66', '10', '24'), (2899, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '156', '147', '303', '3', '98', 'None', '0', '0', '0', '0'), (2900, 'Syracuse University', '4', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2012', '720', '450', '1170', '3.5', '90', 'University of Mumbai', 'Electronics & Telecommunication', '63', '100', '0'), (2901, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '156', '151', '307', '3.5', '106', 'Anna University', 'Information Technology', '71.2', '100', '58'), (2902, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '159', '150', '309', '3.5', '106', 'JNTU', 'ece', '71', '100', '0'), (2903, 'Syracuse University', '4', 'Reject', 'MS', 'Information Systems', 'Fall ', '2012', '740', '660', '1400', '3', '90', 'RGTU', 'ECE', '3.6', '4', '0'), (2904, 'Syracuse University', '4', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '750', '580', '1330', '3', '100', 'Bharati Vidyapeeth', 'Electrical', '58', '100', '0'), (2905, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '790', '430', '1220', '3.5', 'None', 'COEP', 'Information Technology', '7.94', '10', '0'), (2906, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '530', '1320', '3.5', '102', 'Sinhgad College of Engineering', 'Computer', '53', '100', '0'), (2907, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '155', '146', '301', '3.5', '97', 'UPTU', 'Computer Science & Engineering', '66.4', '100', '9'), (2908, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '156', '153', '309', '4', '105', 'YCCE', 'Computer Technology', '64', '100', '28'), (2909, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '49', '24', '73', 'None', 'None', 'Amrita School of Engineering', 'IT', '6.7', '10', '0'), (2910, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2008', '800', '520', '1320', '5', '287', 'D J Sanghvi', 'Computer Engineering', '62', '100', '0'), (2911, 'Syracuse University', '4', 'Reject', 'MS', 'CS', 'Fall ', '2015', '159', '146', '305', '3', '91', 'Pune University', 'Computer Engineering', '61.1', '100', '0'), (2912, 'Syracuse University', '4', 'Reject', 'MS', 'electronics', 'Fall ', '2012', '720', '590', '1310', '3', '96', 'MU', 'Electronics', '65', '100', '0'), (2913, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '164', '149', '313', '3.5', '109', 'FR. CRIT Vashi', 'Information Technology', '68.8', '100', '0'), (2914, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '156', '150', '306', '4', 'None', 'Anna University', 'Computer Science', '73', '100', '0'), (2915, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '710', '310', '1020', 'None', '86', 'University of Mumbai', 'BE Information Technology', '0', '0', '0'), (2916, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '159', '149', '308', '3.5', '97', 'JUET Guna', 'CSE', '7.2', '10', '0'), (2917, 'Syracuse University', '4', 'Reject', 'MS', 'International Affairs.', 'Fall ', '2013', '150', '148', '298', '4', '104', 'None', '0', '77', '100', '0'), (2918, 'Syracuse University', '4', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2010', '780', '560', '1340', '4', '104', 'VTU', '0', '61', '100', '0'), (2919, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '160', '148', '308', '3.5', '97', 'MU', 'Computers', '57', '100', '0'), (2920, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '165', '146', '311', '3.5', '95', 'IET DAVV', 'IT', '3.68', '4', '0'), (2921, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '156', '318', '3.5', '110', 'UPTU', 'Electronics', '64.74', '100', '42'), (2922, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '157', '143', '300', '3.5', '91', 'MU', 'Computer', '60.89', '100', '0'), (2923, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '157', '319', '5', '116', 'Symbiosis Institute of Technology', 'Computer Science and Information Technology', '2.8', '4', '24'), (2924, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '159', '148', '307', '3', '100', 'VTU', 'Computer Science', '70.1', '100', '70'), (2925, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '152', '314', '3', '100', 'West Bengal University Of Technology', 'Electronics and Communicatiion Engineering', '7.62', '10', '0'), (2926, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '150', '308', '3', '92', 'UPTU', 'IT', '63', '100', '42'), (2927, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2011', '740', '490', '1230', '3', '101', 'MU', 'I.T', '64', '100', '0'), (2928, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '155', '150', '305', '5.5', '106', 'University of Pune', 'Computer Science', '72', '100', '0'), (2929, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '510', '1310', '4', '100', 'VIT Mumbai University', 'Computer Engg', '57.38', '100', '0'), (2930, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '157', '151', '308', '3', '101', 'MU', 'IT', '58.75', '100', '0'), (2931, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '700', '480', '1180', '3', '111', 'MU', 'Computer Engg', '67.22', '100', '0'), (2932, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '770', '370', '1140', '3', '87', 'K J Somaiya College of Engiineering', 'Electronics', '60', '100', '0'), (2933, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '490', '1260', '3', '101', 'MU', 'Computer Science', '63', '100', '0'), (2934, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '152', '315', '3.5', '97', 'University of Mumbai', 'Computer Engineering', '60.88', '100', '0'), (2935, 'Syracuse University', '4', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2012', '680', '600', '1280', '2.5', '102', 'VTU', 'Electronics & Communication', '61', '100', '0'), (2936, 'Syracuse University', '4', 'Reject', 'MS', 'Information Systems', 'Fall ', '2012', '167', '156', '323', '3.5', '104', 'Saboo Siddik Mumbai university', 'Computer Science', '57', '100', '0'), (2937, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '160', '155', '315', '3.5', '101', 'Manipal Institue of Technology', 'Information and Communication Technology', '6.94', '10', '0'), (2938, 'Syracuse University', '4', 'Reject', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '159', '146', '305', '3', '86', 'University of Pune', 'Computer Engineering', '61.67', '100', '33'), (2939, 'Syracuse University', '4', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2013', '710', '340', '1050', '3', '93', 'None', 'ECE', '63', '100', '0'), (2940, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '760', '530', '1290', '2.5', '98', 'Sri Sairam Engineering College', 'CS', '7.72', '10', '0'), (2941, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2016', '163', '147', '310', '2.5', '95', 'Gujarat Technological University', 'ECE', '70', '100', '77'), (2942, 'Syracuse University', '4', 'Reject', 'MS', 'software engineering', 'Fall ', '2014', '660', '350', '1010', '3', '92', 'University of Mumbai', 'Information Technology', '62.56', '100', '32'), (2943, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '150', '313', '3.5', '110', 'K.I.E.T.', 'Computer Science', '63', '100', '0'), (2944, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2007', '750', '530', '1280', '4', '95', 'Manipal Institue of Technology', 'Computer Science', '8.05', '10', '0'), (2945, 'Syracuse University', '4', 'Reject', 'MS', 'Information Assurance', 'Spring ', '2014', '158', '146', '304', '3', '98', 'Jaypee Institute of Information Technology', 'Computer Science', '63', '100', '0'), (2946, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2006', '760', '380', '1140', '3.5', '253', 'None', '0', '0', '0', '0'), (2947, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '620', '1420', 'None', '108', 'KIIT', 'Electrical', '7.31', '10', '0'), (2948, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '770', '640', '1410', '4.5', '114', 'MU', 'Computer Engineering', '63', '100', '0'), (2949, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2007', '670', '410', '1080', '3', '260', 'RMK Engineering College', 'Computer Science', '70', '100', '0'), (2950, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '770', '530', '1300', '3', '111', 'VIT', 'Information Technology', '64.24', '100', '0'), (2951, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '159', '151', '310', '3.5', '98', 'SRKNEC', 'Electronics', '61', '100', '0'), (2952, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2015', '154', '146', '300', '3.5', '89', 'NMAMIT Nitte', 'EC', '8.38', '10', '0'), (2953, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '156', '323', '4', '116', 'University of Mumbai', 'Computer Engineering', '65.55', '100', '16'), (2954, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2010', '710', '390', '1100', '3', '105', 'Anna University', 'CSE', '74', '100', '0'), (2955, 'Syracuse University', '4', 'Reject', 'MS', 'Electrical and Electronics', 'Fall ', '2011', '710', '590', '1300', '4.5', '111', 'Veer Narmad South Gujarat University', 'Instrumentation & Control', '64', '100', '0'), (2956, 'Syracuse University', '4', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2014', '158', '149', '307', '4', '109', 'GITAM', 'ECE', '7.2', '10', '0'), (2957, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '350', '1120', '3', 'None', 'CSVTU', 'Information Technology', '8.65', '10', '0'), (2958, 'Syracuse University', '4', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2015', '164', '146', '310', 'None', 'None', 'None', 'Information Technology', '6.91', '10', '0'), (2959, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '156', '147', '303', '3', '90', 'Vishwakarma Institute of Technology', 'Computer', '6.7', '10', '0'), (2960, 'Syracuse University', '4', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2011', '750', '570', '1320', 'None', '101', 'MIT Pune', 'Electronics and telecommunication', '69.53', '100', '0'), (2961, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '157', '147', '304', '2.5', '87', 'Dharamsinh Desai University', 'Information Technology', '64.67', '100', '0'), (2962, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '162', '151', '313', '4', '107', 'Anna University', 'Electronics and Instrumentation Engineering', '7', '10', '0'), (2963, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '157', '150', '307', '3.5', '111', 'VTU', 'Telecommunication', '57', '100', '0'), (2964, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '145', '304', '3', '98', 'Greater Noida Institute Of Technology', 'Comuter Science engineering', '68.4', '100', '0'), (2965, 'Syracuse University', '4', 'Reject', 'MS', 'Management Information System', 'Fall ', '2013', '158', '149', '307', '3.5', '96', 'Panjab University', 'Electrical and Electronics', '62.37', '100', '0'), (2966, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '150', '313', '3.5', '101', 'ITM University Gurgaon', 'Computer Science (B.Tech)', '6.66', '10', '0'), (2967, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '147', '305', '3', '82', 'VTU', 'Computer Science', '67', '100', '0'), (2968, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '680', '430', '1110', '3.5', '102', 'VCET', 'Computer Science', '63', '100', '0'), (2969, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '161', '145', '306', '3', '90', 'KITS Kakatiya University', 'Electrical & Electronics Engineering', '66.16', '100', '0'), (2970, 'Syracuse University', '4', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2011', '730', '470', '1200', '3', '100', 'University of Pune', 'Chemical Engineering', '60', '100', '0'), (2971, 'Syracuse University', '4', 'Reject', 'MS', 'CS', 'Fall ', '2015', '167', '145', '312', '3', 'None', 'University of Mumbai', 'Information Technology', '70.13', '100', '42'), (2972, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '730', '570', '1300', '3', '98', 'K J Somaiya College of Engiineering', 'Computer Engg', '60', '100', '0'), (2973, 'Syracuse University', '4', 'Reject', 'MS', 'Information Systems', 'Fall ', '2014', '157', '146', '303', '3', '95', 'University of Mumbai', 'Electronics', '50', '100', '0'), (2974, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '710', '680', '1390', '3.5', '106', 'VTU', 'Information Science', '70', '100', '0'), (2975, 'Syracuse University', '4', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '760', '640', '1400', '2.5', '87', 'VTU', 'ECE', '63', '100', '0'), (2976, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '720', '480', '1200', '3.5', '107', 'University of Pune', 'IT', '58', '100', '0'), (2977, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2015', '166', '149', '315', '3.5', '104', 'R.N.S.I.T / VTU', 'Electronics and communication', '68', '100', '15'), (2978, 'Syracuse University', '4', 'Reject', 'MS', 'Information Systems', 'Fall ', '2011', '710', '350', '1060', '3.5', '83', 'SIT', 'Information Technology', '57', '100', '0'), (2979, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '156', '144', '300', '3', '81', 'MU', 'BE in Electronics', '57', '100', '0'), (2980, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '157', '148', '305', '4', '88', 'University of Pune', 'Computer', '62.41', '100', '0'), (2981, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '169', '150', '319', '4', '112', 'Amrita School of Engineering', 'Electronics and Communication', '7.48', '10', '0'), (2982, 'Syracuse University', '4', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2006', '770', '710', '1480', '4', '280', 'MU', 'Electronics and Telecommunication', '57', '100', '0'), (2983, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '570', '1340', '4', '107', 'D J Sanghvi', 'Information Technology', '59.57', '100', '0'), (2984, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '720', '660', '1380', '3.5', 'None', 'VTU', 'computer science', '60', '100', '0'), (2985, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '155', '142', '297', '3', '6', 'None', 'I.T', '70', '100', '0'), (2986, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2011', '730', '470', '1200', '3', '81', 'S.R.K.N.E.C', 'Information Technology', '65', '100', '0'), (2987, 'Syracuse University', '4', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '730', '580', '1310', '3.5', '91', 'Pune University', 'Electrical engineering', '60.41', '100', '0'), (2988, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '155', '146', '301', '3', '81', 'GITAM', 'Computer Science', '8.45', '10', '0'), (2989, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2012', '730', '580', '1310', '3', '96', 'Andhra University', 'Information Technology', '8', '10', '0'), (2990, 'Syracuse University', '4', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2012', '165', '149', '314', '4', '105', 'MU', 'Mechanical', '60', '100', '0'), (2991, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '164', '150', '314', '3.5', '105', 'SCOET', 'Computer Science', '68', '100', '0'), (2992, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '720', '430', '1150', '3.5', '105', 'MU', 'Information Technology', '64', '100', '0'), (2993, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '710', '330', '1040', '3', 'None', 'D Y Patil College of Engineering', 'Information Technology', '61.5', '100', '0'), (2994, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '160', '145', '305', '3', '100', 'VJTI', 'Electronics', '6', '10', '0'), (2995, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '730', '540', '1270', '3', '89', 'Manipal Institue of Technology', 'Computer Science', '7.03', '10', '0'), (2996, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '400', '1190', 'None', '85', 'BITS Pilani', 'CSE', '6.75', '10', '0'), (2997, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '155', '151', '306', '3', '105', 'Don Bosco Institute of Technology', 'Information Technology', '55', '100', '0'), (2998, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '440', '1220', '3', '104', 'JNTU', 'Computer Science', '66.27', '100', '0'), (2999, 'Syracuse University', '4', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '620', '580', '1200', '4', '115', 'VTU', 'ECE', '78.5', '100', '0'), (3000, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '160', '323', '3.5', '108', 'MU', 'Computer Engineering', '58', '100', '33'), (3001, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '158', '144', '302', '3', '98', 'NMIMS', 'Electronics and telecomm', '3.06', '4', '0'), (3002, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '740', '400', '1140', '3', '91', 'MU', 'Computers', '63', '100', '0'), (3003, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '165', '156', '321', '4', '108', 'BIT Mesra', 'ECE', '6.93', '10', '0'), (3004, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2015', '151', '147', '298', '3', '91', 'MU', 'Electronics Engg', '68.6', '100', '24'), (3005, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '690', '460', '1150', '3', '102', 'Pune University', 'IT', '3.6', '4', '0'), (3006, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '160', '146', '306', '3', '98', 'MU', 'EXTC', '65', '100', '0'), (3007, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '730', '500', '1230', '2.5', '87', 'St Francis Institute of Technology - Mumbai Unversity', 'Computers', '60', '100', '0'), (3008, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '159', '146', '305', '3.5', '99', 'RGIT', 'Comp', '53', '100', '0'), (3009, 'Syracuse University', '4', 'Reject', 'MS', 'Industrial Engineering', 'Spring ', '2013', '750', '450', '1200', '4.5', '110', 'Institute of Technology Nirma University', 'Instrumentation & Control Electrical Department', '6.56', '10', '0'), (3010, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '690', '540', '1230', '4', '115', 'VTU', 'Electronics and Communications Engineering', '68.76', '100', '0'), (3011, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '170', '154', '324', '3', '113', 'NIT Nagpur', 'Electronics and Communication Engineering', '7.4', '10', '24'), (3012, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '155', '146', '301', '3.5', '100', 'VKIT', 'CS', '65', '100', '32'), (3013, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '740', '600', '1340', '4', '115', 'MU', 'Computer Science', '57', '100', '0'), (3014, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2015', '154', '149', '303', '4', '108', 'Anna University', 'ECE', '74', '100', '38'), (3015, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '162', '147', '309', '3.5', '100', 'K J Somaiya College of Engiineering', 'I.T.', '64', '100', '0'), (3016, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '157', '147', '304', '3', '92', 'Rajasthan Technical University', 'Computer Science', '68.8', '100', '0'), (3017, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '160', '143', '303', '3', 'None', 'VRSEC', 'IT', '8.45', '10', '0'), (3018, 'Syracuse University', '4', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '570', '1370', '3.5', '98', 'IT BHU', 'Electrical Engg', '7.48', '10', '0'), (3019, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '152', '313', '3', '106', 'RGPV', 'cs', '69.56', '100', '0'), (3020, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2016', '156', '151', '307', '3', '101', 'UPTU', 'information technology', '74.4', '100', '0'), (3021, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '460', '1220', '3.5', '109', 'University College Of Engineering Kariavattom Trivandrum', 'Computer Science', '6.7', '10', '0'), (3022, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '153', '316', '4', '94', 'Medicaps Institute of Science & Technology Indore', 'Information Technology', '8.07', '10', '0'), (3023, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '380', '1130', '3', '90', 'PESIT', 'Information Scinece and Engineering', '67', '100', '0'), (3024, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '166', '150', '316', '2.5', '98', 'BITS Pilani', 'Computer Science', '5.5', '10', '0'), (3025, 'Syracuse University', '4', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '670', '450', '1120', '3', 'None', 'sbmjce', 'eee', '0', '0', '0'), (3026, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '161', '147', '308', '3', '98', 'Dr. Ambedkar Institute of technology', 'Information Science', '77.67', '100', '0'), (3027, 'Syracuse University', '4', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '157', '137', '294', '3.5', '87', 'CMRIT', 'ECE', '61', '100', '0'), (3028, 'Syracuse University', '4', 'Reject', 'MS', 'Management Information System', 'Fall ', '2013', '164', '150', '314', '3.3', '89', 'Wuhan University of Technology', '0', '0', '100', '0'), (3029, 'Syracuse University', '4', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2011', '770', '670', '1440', '3.5', '111', 'Pune University', 'Mechanical', '53', '100', '0'), (3030, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '710', '490', '1200', '3', '106', 'University', 'CSE', '7.89', '10', '0'), (3031, 'Syracuse University', '4', 'Reject', 'MS', 'Electronics and Communication', 'Spring ', '2011', '740', '590', '1330', '3', '100', 'Southeast University', 'Communication Engineering', '80', '100', '0'), (3032, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '450', '1230', '2.5', '84', 'SIET affliated to JNTU', 'IT', '68.25', '100', '0'), (3033, 'Syracuse University', '4', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2009', '730', '480', '1210', '3', '94', 'Osmania University', 'E.C.E', '68.66', '100', '0'), (3034, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2011', '730', '380', '1110', '3', '95', 'Velalar College of Engg & Tech Erode', 'Computer Science and Engineering', '75', '100', '0'), (3035, 'Syracuse University', '4', 'Reject', 'MS', 'Electronics & Communication', 'Fall ', '2011', '730', '340', '1070', 'None', '80', 'University of Mumbai', 'Electronics and Telecommunication', '69.72', '100', '0'), (3036, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '710', '380', '1090', '2.5', '103', 'NMIMS', 'Electronics', '3.32', '4', '0'), (3037, 'Syracuse University', '4', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '168', '155', '323', '4', '110', 'MU', 'Mechanical engg.', '55', '100', '0'), (3038, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '157', '154', '311', '3', '104', 'VTU', 'ISE', '7.04', '10', '45'), (3039, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '790', '390', '1180', '3.5', '112', 'Gujarat Technological University', 'Computer', '3.82', '4', '0'), (3040, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '165', '155', '320', '3', 'None', 'PTU-Dav Institue of Engineering and Technology', 'Information Technology', '69', '100', '0'), (3041, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2012', '780', '460', '1240', '3', '101', 'None', '0', '0', '0', '0'), (3042, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '151', '312', '3', 'None', 'MU', 'Computer Engineering', '62.6', '100', '15'), (3043, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '165', '153', '318', '3.5', '108', 'GGSIPU', 'CSE', '73', '100', '44'), (3044, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '750', '510', '1260', '3.5', '106', 'MU', 'Computers', '59.76', '100', '0'), (3045, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '156', '150', '306', '3', '99', 'SSEC', 'CSE', '73', '100', '0'), (3046, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '157', '153', '310', '4', '108', 'VTU', 'Computer Science', '66', '100', '0'), (3047, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '161', '153', '314', '3', 'None', 'SASTRA', 'info and comm technology (ICT)', '7.3', '10', '24'), (3048, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '780', '680', '1460', '4.5', '105', 'University of Pune', 'Computer Engineering', '58', '100', '0'), (3049, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'Amrita School of Engineering', 'CSE', '7', '10', '0'), (3050, 'Syracuse University', '4', 'Reject', 'MS', 'Information Technology', 'Fall ', '2013', '50', '21', '71', '4', '88', 'ITM Gurgaon', 'CSE', '68', '100', '0'), (3051, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '159', '150', '309', '3', '106', 'Amity University', 'Computer Science and Engineering', '8.36', '10', '39'), (3052, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '160', '150', '310', '3', '102', 'MU', 'IT', '65', '100', '0'), (3053, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '790', '710', '1500', '2.5', '114', 'Anna University', 'CSE', '7.58', '10', '0'), (3054, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Spring ', '2012', '780', '520', '1300', '3', '100', 'DA-IICT', 'ICT - Information and Communication Technology', '6.4', '10', '0'), (3055, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '154', '147', '301', '3', '110', 'University of Mumbai', 'computer engineering', '3.7', '4', '0'), (3056, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '158', '151', '309', '3.5', '104', 'VTU', 'Computer Science and Engineering', '76', '100', '0'), (3057, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2011', 'None', 'None', '0', 'None', '105', 'Pune University', 'CS', '7', '10', '0'), (3058, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2015', '164', '145', '309', '3', '103', 'Amrita School of Engineering', 'Mechanical', '6.1', '10', '36'), (3059, 'Syracuse University', '4', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2013', '158', '150', '308', '3.5', 'None', 'RMK Engineering College', 'EEE', '72', '100', '0'), (3060, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '740', '620', '1360', '3', '92', 'Maharashtra Academy of Engineering / University of Pune', 'Computer Engineering', '62.8', '100', '0'), (3061, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '760', '450', '1210', 'None', '97', 'Anna University', 'Computer Science', '76', '100', '0'), (3062, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '740', '470', '1210', '2.5', '99', 'VTU', 'cs', '65', '100', '0'), (3063, 'Syracuse University', '4', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2013', '154', '154', '308', '3.5', '105', 'MU', 'IT', '63', '100', '0'), (3064, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '169', '146', '315', '3.5', '86', 'HUST', 'Information Technology', '7.82', '10', '0'), (3065, 'Syracuse University', '4', 'Reject', 'MS', 'Computational Science', 'Fall ', '2012', '790', '650', '1440', '3', '100', 'Jaypee Institute of Information Technology', 'CSE', '6.9', '10', '0'), (3066, 'Syracuse University', '4', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2014', '163', '153', '316', '4', '113', 'MU', 'Civil Engineering', '51', '100', '22'), (3067, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '156', '147', '303', '3', '89', 'Atharva College', 'computer', '60', '100', '0'), (3068, 'Syracuse University', '4', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '730', '580', '1310', '3.5', '91', 'Pune University', 'Electrical engineering', '58.51', '100', '0'), (3069, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2007', '780', '660', '1440', '4.5', '283', 'Sri Venkateswara College of Engineering', 'Computer Science', '72', '100', '0'), (3070, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '157', '149', '306', '3', '103', 'KIIT', 'EEE', '8', '10', '0'), (3071, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '160', '143', '303', '3', '91', 'GITAM', 'CSE', '7.87', '10', '0'), (3072, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '153', '149', '302', '3', 'None', 'University of Mumbai', 'Management', '61', '100', '36'), (3073, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2016', '166', '155', '321', '3.5', '101', 'Uttarakhand Technical University', 'Computer Science', '72.6', '100', '56'), (3074, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '170', '168', '338', '4.5', '116', 'Pune University', 'B.E (Computer Science)', '57', '100', '15'), (3075, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '160', '148', '308', '3', 'None', 'BPUT', '0', '7.4', '10', '0'), (3076, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '680', '580', '1260', '3.5', '104', 'University of Mumbai', 'Computer Engineering', '59', '100', '0'), (3077, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '770', '530', '1300', '3.5', '100', 'None', 'Computer engineering', '69', '100', '0'), (3078, 'Syracuse University', '4', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2013', '158', '145', '303', '3.5', '93', 'JNTU', 'Electronics and Instrumentation', '66.56', '100', '0'), (3079, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Summer ', '2013', '159', '152', '311', '4', '102', 'K J Somaiya College of Engiineering', 'Mechanical Engg.', '55', '100', '0'), (3080, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '690', '520', '1210', 'None', '93', 'MU', 'Information Technology', '57', '100', '0'), (3081, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '146', '304', '4', 'None', 'University of Mumbai', 'COMPUTER ENGINEERING', '60.48', '100', '0'), (3082, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '730', '620', '1350', '4', '111', 'Bangalore Institute of Technology', 'Electronics and Communication', '58.5', '100', '0'), (3083, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2006', '540', '620', '1160', '3.5', '273', 'MU', 'Computer Engg', '0', '0', '0'), (3084, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2006', '790', '460', '1250', '4.5', '283', 'Pune University', 'Computer Engg.', '57', '100', '0'), (3085, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2015', '158', '144', '302', '3', '90', 'Thadomal Shahani Engineering College', 'CS', '7', '10', '0'), (3086, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '690', '500', '1190', '3.5', '101', 'MU', 'Computer', '66', '100', '0'), (3087, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '147', '310', '3', '99', 'K J Somaiya College of Engiineering', 'Computers', '62', '100', '0'), (3088, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '160', '150', '310', '3.5', '102', 'Kurukshetra University', 'Information Technology', '70', '100', '0'), (3089, 'Syracuse University', '4', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2013', '770', '580', '1350', '3', '98', 'D j Sanghvi', 'Chemical Engineering', '59', '100', '0'), (3090, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2015', '154', '142', '296', '3', '86', 'Anna University', 'CS', '7', '100', '29'), (3091, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2007', '740', '400', '1140', '3.5', '99', 'Bharat Institute of Engineering and Technology', 'Instrumentation and Control', '79', '100', '0'), (3092, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '166', '140', '306', '3', '85', 'VTU', 'Computer Science', '72.4', '100', '36'), (3093, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '145', '308', '2.5', '87', 'Panimalar Engineering College', 'ECE', '82', '100', '0'), (3094, 'Syracuse University', '4', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2013', '710', '460', '1170', '3', '105', 'VTU', 'E & C', '60', '100', '0'), (3095, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '560', '1360', '3.5', '108', 'RAIT', 'Computer', '58', '100', '0'), (3096, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2009', '780', '450', '1230', '3.5', '101', 'University of Mumbai', 'CS', '0', '0', '0'), (3097, 'Syracuse University', '4', 'Reject', 'MS', 'Management of Technology', 'Fall ', '2013', '158', '147', '305', '3', '92', 'VTU', 'ECE', '8.13', '10', '0'), (3098, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '710', '390', '1100', '3', '103', 'University of Pune', 'Information Technology', '58', '100', '0'), (3099, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '158', '322', '4', '105', 'Fr. agnels vashi', 'Information technology', '56.45', '100', '0'), (3100, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '710', '530', '1240', '3', '95', 'Vishwakarma Institute of Technology', 'Electronics', '68.2', '100', '0'), (3101, 'Syracuse University', '4', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '730', '400', '1130', '3', '97', 'VTU', 'electronics and communication', '71', '100', '0'), (3102, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '550', '1320', '3.5', '91', 'Walchand College Of Engineering', 'Computer Science & Engineering', '63.71', '100', '0'), (3103, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2013', '158', '142', '300', '3', '95', 'Rajasthan Technical University', 'ECE', '62', '100', '0'), (3104, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '157', '152', '309', '3.5', '100', 'Rajasthan Technical University', 'Computer Science', '75', '100', '0'), (3105, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '160', '145', '305', '3.5', '96', 'Thadomal Shahani Engineering College', 'EXTC', '65', '100', '0'), (3106, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2015', '154', '142', '296', '3', '80', 'UPTU', 'CSE', '61', '100', '0'), (3107, 'Syracuse University', '4', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '157', '146', '303', '3', '96', 'Anna University', 'Mechanical Engineering', '7', '10', '0'), (3108, 'Syracuse University', '4', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '730', '400', '1130', '3', '96', 'Anna University', 'ECE', '7.5', '10', '0'), (3109, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '156', '145', '301', '3', '97', 'VTU', 'CSE', '3.34', '4', '0'), (3110, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '148', '310', '2.5', '92', 'University of Pune', 'IT', '60', '100', '25'), (3111, 'Syracuse University', '4', 'Reject', 'MS', 'Engineering Management', 'Summer ', '2014', '152', '152', '304', '3', 'None', 'PESIT', 'MECHANICAL', '6.13', '10', '0'), (3112, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '155', '145', '300', '3', '100', 'MU', 'IT', '60', '100', '8'), (3113, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2006', '750', '440', '1190', '4', '283', 'J.S.S.A.T.E. Noida', 'Computer Science', '69', '100', '0'), (3114, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '149', '312', '3', '93', 'GGSIPU', 'CSE', '70', '100', '36'), (3115, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '380', '1160', '2.5', '91', 'Pondicherry University', 'CSE', '7.45', '10', '0'), (3116, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2011', '660', '530', '1190', '3.5', '96', 'Pune University', 'B.E.Computer', '74', '100', '0'), (3117, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '157', '149', '306', '3', '103', 'Thakur College of Engineering and Technology', 'IT', '58', '100', '12'), (3118, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '155', '318', '3.5', '103', 'St.Francis Institute of Technology', 'Computer Engineering', '57.4', '100', '0'), (3119, 'Syracuse University', '4', 'Reject', 'MS', 'Electronic and Telecommunication Engineering', 'Fall ', '2012', '690', '330', '1020', '3.5', '92', 'Shivajirao S. Jondhale College of Engineering', 'Electronics & Telecomm', '57.5', '100', '0'), (3120, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '167', '143', '310', '3', 'None', 'GITAM', 'ECE', '90', '100', '0'), (3121, 'Syracuse University', '4', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2007', '790', '420', '1210', '3.5', '257', 'MU', 'Electronics', '60', '100', '0'), (3122, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '153', '148', '301', 'None', '87', 'Anna University', 'Computer Science', '75', '100', '0'), (3123, 'Syracuse University', '4', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', 'None', 'None', '0', 'None', 'None', 'VTU', 'Electronics & Communication', '70.5', '100', '77'), (3124, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '720', '510', '1230', '3', '106', 'MU', 'Computer Engineering', '69', '100', '0'), (3125, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '730', '580', '1310', '3', '87', 'CBIT', 'Mechanical', '72.2', '100', '0'), (3126, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '159', '151', '310', '4', '107', 'Bangalore Institute of Technology', 'ISE', '71.76', '100', '28'), (3127, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '420', '1200', '3', '91', 'K J Somaiya College of Engiineering', 'Computer Science', '0', '0', '0'), (3128, 'Syracuse University', '4', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2011', '730', '340', '1070', '3', '80', 'University of Mumbai', 'Electronics & Telecommunication', '69.72', '100', '0'), (3129, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '159', '145', '304', '3', '98', 'MU', 'E&TC;', '64', '100', '0'), (3130, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '730', '410', '1140', '3.5', '101', 'Rajasthan Technical University', 'Computer Science', '63', '100', '0'), (3131, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '156', '144', '300', 'None', 'None', 'Vidyalankar Institute of Technology', 'Computer Engg', '65', '100', '0'), (3132, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2006', '760', '670', '1430', '4.5', '280', 'None', 'Comp Sc.', '74', '100', '0'), (3133, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '800', '640', '1440', '4', '109', 'Pune University', 'Computer Engg', '54', '100', '0'), (3134, 'Syracuse University', '4', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '720', '470', '1190', '3.5', '90', 'Gautam Buddh Technical University', 'Electrical Engineering', '66', '100', '0'), (3135, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '150', '312', '3', '105', 'Dharamsinh Desai University', 'Information Technology', '8.17', '10', '9'), (3136, 'Syracuse University', '4', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2011', '800', '360', '1160', '3.5', '108', 'Dr. B.A.M.U.', 'MECHANICAL', '65', '100', '0'), (3137, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '730', '460', '1190', '3.5', '108', 'MU', 'Computer', '63', '100', '0'), (3138, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '580', '1380', '3', '92', 'None', '0', '0', '0', '0'), (3139, 'Syracuse University', '4', 'Reject', 'MS', 'Entrepreneurship', 'Fall ', '2014', '151', '149', '300', '3', '97', 'VIT', 'ECE', '6.45', '10', '0'), (3140, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '160', '146', '306', '3.5', '106', 'Madras Institute of Technology', 'Information Technology', '8.2', '10', '54'), (3141, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '730', '530', '1260', '3', '105', 'K J Somaiya College of Engiineering', 'Information Technology', '70', '100', '0'), (3142, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '158', '141', '299', '3.5', 'None', 'JNTU', 'CSE', '72.56', '100', '0'), (3143, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '570', '1330', '4', '107', 'RMK Engineering College', 'Computer science', '70', '100', '0'), (3144, 'Syracuse University', '4', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2007', '770', '470', '1240', '3.5', '253', 'VJTI', 'Mechanical', '65.9', '100', '0'), (3145, 'Syracuse University', '4', 'Reject', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2009', '700', '340', '1040', '3.5', '106', 'MU', 'Electronics', '58', '100', '0'), (3146, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring', 'None', '730', '510', '1240', '3.5', 'None', 'University of Pune', '0', '70', '100', '0'), (3147, 'Syracuse University', '4', 'Reject', 'MS', 'Information Systems', 'Fall ', '2014', '155', '153', '308', '3', '106', 'University of Pune', 'Information Technology', '59.3', '100', '7'), (3148, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '770', '520', '1290', '3', '118', 'SSN College of Engineering', 'Information Technology', '72', '100', '0'), (3149, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2006', '760', '670', '1430', '5.5', '287', 'University of Mumbai', 'Computer Science', '66', '100', '0'), (3150, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2015', '165', '154', '319', '3.5', '107', 'R V College of Engineering', 'Telecom', '62.9', '100', '60'), (3151, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '159', '149', '308', '3', '105', 'MPSTME NMIMS', 'CS', '3', '4', '0'), (3152, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '160', '144', '304', '2.5', '93', 'MU', 'Computer Engineering', '53', '100', '42'), (3153, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '500', '1260', '4', '98', 'Xavier Institute of Engineering University of Mumbai', 'Computer Engineering', '60.084', '100', '0'), (3154, 'Syracuse University', '4', 'Reject', 'MS', 'Electronics and Communication', 'Spring ', '2015', '159', '150', '309', '3.5', '108', 'VTU', 'ECE', '69', '100', '0'), (3155, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '150', '314', 'None', '107', 'MU', 'Information Technology', '54', '100', '0'), (3156, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '149', '313', '3.5', '100', 'University of Dhaka', 'Computer Science & Engineering', '3.44', '4', '40'), (3157, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '144', '302', '2.5', '92', 'Gujarat Technological University', 'computer', '7.39', '10', '0'), (3158, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '155', '150', '305', '3', '108', 'MU', 'Information Technology', '66', '100', '0'), (3159, 'Syracuse University', '4', 'Reject', 'MS', 'Data Informatics', 'Fall ', '2015', '158', '151', '309', '4', '109', 'Manipal Institue of Technology', 'Computer Science and Engineering', '8.28', '10', '0'), (3160, 'Syracuse University', '4', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '154', '148', '302', '3', '107', 'Jain University', 'EC', '69', '100', '0'), (3161, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '162', '152', '314', '4', '106', 'NMIMS', 'IT', '3.04', '4', '0'), (3162, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '710', '1510', '3.5', '112', 'MU', 'Computer Engg', '61.5', '100', '0'), (3163, 'Syracuse University', '4', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2012', '157', '144', '301', '3', '91', 'VIT Pune', 'Instrumentation', '61', '100', '0'), (3164, 'Syracuse University', '4', 'Reject', 'MS', 'MIS-management related courses', 'Fall ', '2013', '160', '148', '308', 'None', '104', 'Symbiosis Institute of Technology', 'Computer Science', '2.68', '4', '0'), (3165, 'Syracuse University', '4', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '790', '550', '1340', '4', '105', 'VTU', 'Electronics and Comunication', '69', '100', '0'), (3166, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '159', '147', '306', '3.5', '101', 'Sardar Vallabhbhai National Institute of Technology', 'Information Technology', '7.74', '10', '0'), (3167, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '152', '315', '3', '105', 'Biju Patnaik University of Technology', 'CSE', '7.65', '10', '31'), (3168, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '800', '350', '1150', '2.5', '89', 'Gujarat Technological University', 'Computer Engineering', '70', '100', '0'), (3169, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '740', '470', '1210', '3.5', '108', 'VTU', 'Computer Science', '74', '100', '0'), (3170, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '162', '149', '311', '3', 'None', 'JNTU', 'Computer Science and Engineering', '73', '100', '36'), (3171, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '158', '146', '304', '3', '95', 'SIES Graduate School of Technology', 'Electronics and Telecommunication', '58.7', '100', '0'), (3172, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '154', '144', '298', '3.5', '93', 'APSCE VTU', 'Information Science', '64.5', '100', '0'), (3173, 'Syracuse University', '4', 'Reject', 'MS', 'Information Systems', 'Fall ', '2014', '48', '34', '82', '4.5', '103', 'Manipal Institue of Technology', 'Electrical and Electronics', '6.58', '10', '0'), (3174, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '166', '159', '325', '3.5', '107', 'ITM Gurgaon', 'CS', '61', '100', '0'), (3175, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '570', '1370', '3', '97', 'IIIT Allahabad', 'IT', '6.71', '10', '0'), (3176, 'Syracuse University', '4', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '168', '146', '314', '3', '103', 'Keio', 'electrical engineering', '3.6', '4', '96'), (3177, 'Syracuse University', '4', 'Reject', 'MS', 'CS', 'Fall ', '2015', '163', '153', '316', '3', '101', 'GGSIPU', 'CSE', '75.6', '100', '18'), (3178, 'Syracuse University', '4', 'Reject', 'MS', 'CS', 'Fall ', '2013', '159', '146', '305', '3', '91', 'University of Pune', 'Computer Science', '63', '100', '0'), (3179, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2007', '750', '640', '1390', '4', '267', 'SIES Graduate School of Technology', 'COMPUTER', '60', '100', '0'), (3180, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2013', '161', '154', '315', '3', '96', 'VTU', 'EC', '67', '100', '0'), (3181, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '690', '380', '1070', '2.5', '89', 'K J Somaiya College of Engiineering', 'IT', '73', '100', '0'), (3182, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '730', '510', '1240', '3', '104', 'Sri Siddhartha Institute of technology', 'Information Science', '9.24', '10', '0'), (3183, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2011', '750', '410', '1160', '4', '106', 'Anna University', 'Computer Science', '73', '100', '0'), (3184, 'Syracuse University', '4', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2013', '161', '143', '304', '3', 'None', 'SUNY buffalo', 'EE', '73', '100', '0'), (3185, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '710', '430', '1140', '3', '95', "St Joseph's College of Engineering", 'cse', '70', '100', '0'), (3186, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '159', '321', '3', '104', 'U.P.Technical University', 'Information Technology', '68', '100', '0'), (3187, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '143', '304', '3', '85', 'MU', 'Information Technology', '58', '100', '0'), (3188, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '700', '350', '1050', '3.5', '103', 'Pune University', 'IT', '0', '0', '0'), (3189, 'Syracuse University', '4', 'Reject', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2014', '162', '143', '305', '3', '91', 'VIT', 'CSE', '8.11', '10', '0'), (3190, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '155', '152', '307', '2.5', '94', 'Sri Venkateswara College of Engineering', 'ECE', '6.82', '10', '0'), (3191, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '460', '1260', '3', '112', 'SJCE', 'Electronics and Communication', '68', '100', '0'), (3192, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '770', '460', '1230', '3', '100', 'Shivaji University', 'Mechanical Engineering', '60.47', '100', '0'), (3193, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '157', '161', '318', '3.5', '115', 'Punjabi University', 'Electronics and Communication', '70.6', '100', '0'), (3194, 'Syracuse University', '4', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2011', '770', '580', '1350', '4', '109', 'Pune University', 'Electronics & Telecommunication', '3.16', '4', '0'), (3195, 'Syracuse University', '4', 'Reject', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '158', '145', '303', '3.5', '92', 'SASTRA', 'Mechatronics', '7.66', '10', '24'), (3196, 'Syracuse University', '4', 'Reject', 'MS', 'Engineering Management', 'Spring ', '2014', '156', '149', '305', '4', '107', 'Osmania University', 'Mechanical', '61', '100', '0'), (3197, 'Syracuse University', '4', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '160', '153', '313', '3.5', '105', 'MRCE - affiliated to MDU', 'electronics and communication', '60', '100', '0'), (3198, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '155', '318', '3.5', '103', 'MU', 'CE', '57.4', '100', '0'), (3199, 'Syracuse University', '4', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '160', '144', '304', '3', '102', 'University of Pune', 'Electronics and Telecommunication', '71.4', '100', '0'), (3200, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '165', '326', '3.5', '112', 'BITS Pilani', 'E.E.E', '5.73', '10', '0'), (3201, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '167', '145', '312', '3.5', '103', 'GNIT (JNTU-H)', 'Computer Science and Engineering', '68', '100', '0'), (3202, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '680', '490', '1170', '3', '93', 'SRM', 'CS', '8.69', '10', '0'), (3203, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '170', '152', '322', '3', '101', 'BIT Mesra', 'Computer Science Enggineering', '6.21', '10', '24'), (3204, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '750', '510', '1260', '3', '104', 'SNIST', 'electronics and computers', '71', '100', '0'), (3205, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '156', '148', '304', 'None', '102', 'MGM CoET Noida', 'CS', '61', '100', '0'), (3206, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '159', '139', '298', '2', 'None', 'None', 'Computer Science', '8.37', '10', '0'), (3207, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '160', '146', '306', '2.5', '92', 'SGGSIE&T; Nanded', 'Information Technology', '7.8', '10', '0'), (3208, 'Syracuse University', '4', 'Reject', 'MS', 'Computer engineering VLSI CAD', 'Fall ', '2012', '156', '149', '305', '3.5', '104', 'University of Mumbai', 'Electronics', '59', '100', '0'), (3209, 'Syracuse University', '4', 'Reject', 'MS', 'Management Information System', 'Fall ', '2015', '162', '151', '313', '3.5', '105', 'Kurukshetra University', 'Information Technology', '61.4', '100', '31'), (3210, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '160', '159', '319', '4.5', '108', 'COEP', 'Electrical Engineering', '6.54', '10', '9'), (3211, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '700', '390', '1090', '4', '103', 'St Francis Institute of Technology - Mumbai Unversity', 'IT', '60', '100', '0'), (3212, 'Syracuse University', '4', 'Reject', 'MS', 'Electrical and computer science', 'Fall ', '2012', '740', '610', '1350', 'None', '112', 'University of Pune', 'ENTC', '60.2', '100', '0'), (3213, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '167', '156', '323', '4', '110', 'MU', 'Electronics and Telecommunication', '67', '100', '0'), (3214, 'Syracuse University', '4', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2011', '780', '440', '1220', '3', '98', 'MU', 'Electronics and telecommunication', '53', '100', '0'), (3215, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Spring ', '2011', '760', '660', '1420', '3.5', '109', 'Devi Ahilya University', 'Computer Science', '7.76', '10', '0'), (3216, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '730', '540', '1270', '4', '110', 'None', '0', '0', '0', '0'), (3217, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '139', '302', 'None', '81', 'MU', 'Computer Engineering', '64', '100', '0'), (3218, 'Syracuse University', '4', 'Reject', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '155', '145', '300', '3', '101', 'MU', 'Computer Science', '61', '100', '0'), (3219, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '1350', '560', '1910', '790', '105', 'MGMCET Mumbai University', 'Computer Engineering', '58', '100', '0'), (3220, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '800', '530', '1330', '3.5', '104', 'Vidyalankar Institute of Technology', 'Computer Engineering', '58', '100', '0'), (3221, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '157', '149', '306', '3.5', '94', 'BVBCET', 'Computer Science', '7.26', '10', '0'), (3222, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '157', '147', '304', '3', '7', 'Pune University', 'computer', '54.5', '100', '0'), (3223, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '740', '600', '1340', '3.5', '103', 'JNTU', 'Computer science', '69', '100', '0'), (3224, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '600', '1390', '4', '113', 'MU', 'Computer Engineering', '60', '100', '0'), (3225, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '152', '149', '301', '3.5', '82', 'Goa University', 'Electronics & Telecom', '69', '100', '0'), (3226, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '154', '149', '303', '3', '98', 'Biju Patnaik University of Technology', 'Applied Electronics & Instrumentation', '7.827', '10', '48'), (3227, 'Syracuse University', '4', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '160', '153', '313', '3', '103', 'Gujarat Technological University', 'ECE', '3.42', '4', '0'), (3228, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '153', '315', '4', '109', 'NIT Tirchy', 'Computer Science and Engineering', '6.82', '10', '19'), (3229, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '770', '480', '1250', '2.5', '96', 'MU', 'information technology', '5.7', '100', '0'), (3230, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '154', '149', '303', '4', '105', 'University of Pune', 'Information Technology', '55.36', '100', '0'), (3231, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Engineering/Comp Science', 'Spring ', '2013', '158', '151', '309', '3', '102', 'VIT', 'CSE', '7.87', '10', '0'), (3232, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '163', '149', '312', '3', '94', 'MU', 'Information Technology', '62', '100', '0'), (3233, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '157', '146', '303', '3.5', '97', 'University of Mumbai', 'Information Technology', '0', '0', '0'), (3234, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '740', '290', '1030', '3', '86', 'Pune University', 'Computer Engg', '68.6', '100', '0'), (3235, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '159', '159', '318', '3', '106', 'JNTU', 'CS', '58', '100', '0'), (3236, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '151', '146', '297', '3', '85', 'VIIT', 'Computer Engg', '59', '100', '0'), (3237, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2013', '158', '140', '298', '2.5', '84', 'Kurukshetra University', 'Computer Science engineering', '67', '100', '0'), (3238, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '520', '1300', '3', '109', 'MU', 'Information Technology', '62', '100', '0'), (3239, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '158', '147', '305', '3', '96', 'MU', 'computer engg', '61', '100', '0'), (3240, 'Syracuse University', '4', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2014', '159', '144', '303', '2.5', '7', 'Amrita School of Engineering', 'Electronics and communication', '6.47', '10', '0'), (3241, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '160', '144', '304', '4', '88', 'RGMCET', 'CSE', '73.8', '100', '0'), (3242, 'Syracuse University', '4', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '730', '420', '1150', '3.5', '105', 'College of Engineering and Technology', 'Electronics and telecommunications', '0', '0', '0'), (3243, 'Syracuse University', '4', 'Reject', 'MS', 'Information Systems', 'Fall ', '2011', '680', '480', '1160', '3.5', '99', 'MU', 'computer science', '69', '100', '0'), (3244, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '155', '319', '3.5', '105', 'NMIMS', 'Computer Science', '3.26', '4', '0'), (3245, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '156', '154', '310', '3', '105', 'Fr. Conceicao Rodrigues College of Engineering', 'Computer', '62', '100', '0'), (3246, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '157', '152', '309', '3.5', '97', 'MU', 'Computer Science', '56.07', '100', '0'), (3247, 'Syracuse University', '4', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '155', '152', '307', '3.5', '110', 'UMIT SNDT UNIVERSITY', 'ELECTRONICS AND COMMUNICATION', '6.83', '10', '0'), (3248, 'Syracuse University', '4', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2011', '780', '480', '1260', '3.5', '103', 'MU', 'EXTC', '55', '100', '0'), (3249, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '161', '148', '309', '3.5', '102', 'St. vincent pallotti college iof engineering and technology', 'Computer Engineering', '70.23', '100', '0'), (3250, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '161', '146', '307', '3', '92', 'Sreenidhi Institute of Science & Technology', 'Computer Science', '69', '100', '0'), (3251, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '158', '153', '311', '3.5', '107', 'Anna University', 'ECE', '73', '100', '0'), (3252, 'Syracuse University', '4', 'Reject', 'MS', 'CS MIS', 'Fall ', '2012', '168', '147', '315', '3.5', '91', 'VTU', 'Electronics & Communication', '67', '100', '0'), (3253, 'Syracuse University', '4', 'Reject', 'MS', 'Computational Science', 'Fall ', '2011', '740', '310', '1050', '3', '84', 'Saveetha Engineering College', 'Information Technology', '73', '100', '0'), (3254, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '160', '324', '4', '103', 'Atharva College', 'Information Technology', '58.6', '100', '0'), (3255, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '164', '149', '313', '3', '92', 'Lovely Professional Univesity', 'Computer Science', '74.6', '100', '39'), (3256, 'Syracuse University', '4', 'Reject', 'MS', 'Management of Technology', 'Fall ', '2015', '158', '146', '304', '4', '100', 'VESIT', 'Electronics', '61.6', '100', '0'), (3257, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '157', '154', '311', '3.5', '104', 'None', '0', '7.09', '10', '0'), (3258, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '770', '380', '1150', '3', '90', 'K J Somaiya College of Engiineering', 'I.T.', '66', '100', '0'), (3259, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '340', '1110', '3.5', '93', 'Sinhgad College of Engineering', 'Information Technology', '64', '100', '0'), (3260, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '370', '1120', '3', '91', 'St thomas college of engg & tech(under West Bengal University of technology)', 'Information Technology', '8.37', '10', '0'), (3261, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '154', '162', '316', '4.5', '113', 'Walchand College Of Engineering', 'CSE', '8.06', '10', '16'), (3262, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '760', '440', '1200', '3', '88', 'Coimbatore Insitute of Technology', 'Computer Science and engineering', '7.23', '10', '0'), (3263, 'Syracuse University', '4', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2014', '159', '150', '309', '2.5', '94', 'SVITS', 'Electronics & Communication', '70', '100', '0'), (3264, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '720', '470', '1190', '3.5', '94', 'K J Somaiya College of Engiineering', 'IT', '61', '100', '0'), (3265, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2008', '800', '430', '1230', '3.5', '97', 'Amrita School of Engineering', 'computer science', '6.43', '10', '0'), (3266, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '700', '440', '1140', '3.5', '99', 'R V College of Engineering', 'ISE', '8.56', '10', '0'), (3267, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '530', '1290', '3.5', '102', 'NIT Surat', 'Computer Engineeing', '7.61', '10', '0'), (3268, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '740', '300', '1040', '3.5', '107', 'JNTU', 'Electronics & Communication', '67', '100', '0'), (3269, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '720', '570', '1290', '3.5', '116', 'MU', 'Computer Science', '78.04', '100', '0'), (3270, 'Syracuse University', '4', 'Reject', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2007', '550', '790', '1340', '4', '267', 'MU', 'Electronics', '59', '100', '0'), (3271, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2008', '750', '470', '1220', '3', '102', 'IET DAVV', 'ELECTRONICS', '67', '100', '0'), (3272, 'Syracuse University', '4', 'Reject', 'MS', 'Engineering Management', 'Summer ', '2014', '163', '153', '316', '4', '114', 'MU', 'Electrical Engineering', '60', '100', '0'), (3273, 'Syracuse University', '4', 'Reject', 'MS', 'MIS-management related courses', 'Fall ', '2015', 'None', 'None', '0', 'None', '99', 'None', '0', '0', '0', '51'), (3274, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2007', '760', '500', '1260', '3.5', '280', 'SFIT', 'Computer', '59', '100', '0'), (3275, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2016', '167', '156', '323', '3.5', '104', 'SGSITS', 'IT', '6.58', '10', '0'), (3276, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2011', '770', '380', '1150', '3.5', '92', 'MU', 'Computer', '65', '100', '0'), (3277, 'Syracuse University', '4', 'Reject', 'MS', 'software engineering', 'Fall ', '2013', '157', '152', '309', '3.5', 'None', 'SRM', 'Electronics and Communications', '7.7', '10', '0'), (3278, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '150', '313', '3', '100', 'Jaypee Institute of Information Technology', 'Computer Science', '5.6', '10', '43'), (3279, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '750', '370', '1120', '3', '98', 'MU', 'Computers', '79.67', '100', '0'), (3280, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2011', '750', '460', '1210', '4', '92', 'MU', 'IT', '68', '100', '0'), (3281, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '740', '530', '1270', '4', '110', 'VTU', 'Computer Science', '59.5', '100', '0'), (3282, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '730', '480', '1210', '4', '114', 'MU', 'Electronics and Telecommunication', '64.87', '100', '0'), (3283, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '151', '314', '4', '107', 'PESIT', 'CS', '7.69', '10', '0'), (3284, 'Syracuse University', '4', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '156', '151', '307', '4', '100', 'Pondicherry University', 'Electronics and Instrumentation', '8.2', '10', '0'), (3285, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '710', '560', '1270', '3', '94', 'MU', 'computer', '63', '100', '0'), (3286, 'Syracuse University', '4', 'Reject', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '800', '580', '1380', '4.5', '104', 'MU', 'Computer Engineering', '59.86', '100', '0'), (3287, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '750', '450', '1200', '3.5', '85', 'PICT', 'Computer Engineering', '0', '0', '0'), (3288, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall', 'None', '156', '144', '300', '3', '91', 'Rajasthan Technical University', 'computer science', '3.3', '4', '24'), (3289, 'Syracuse University', '4', 'Reject', 'MS', 'Information Systems', 'Fall ', '2013', 'None', 'None', '0', '3.5', '101', 'MU', 'Computer engineering', '64', '100', '36'), (3290, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2015', '156', '146', '302', '3.5', '101', 'Sapthagiri College of Engineering', 'Computer Science', '76.13', '100', '26'), (3291, 'Syracuse University', '4', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2011', '780', '690', '1470', '3', '98', 'CEG', 'electrical and electronics', '6.25', '10', '0'), (3292, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '166', '152', '318', '3', '112', 'MU', 'EXTC', '63', '100', '42'), (3293, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Engineering/Comp Science', 'Fall ', '2015', '156', '151', '307', '3', '90', 'DMI College of Engineering', 'I.T', '6.53', '10', '22'), (3294, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '760', '520', '1280', '3', '97', 'Institute of Engineering & Technology DAVV Indore', 'Computer Engineering', '77', '100', '0'), (3295, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '151', '312', '3', '97', 'PESIT', 'IS', '66.48', '100', '0'), (3296, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '560', '1310', '4', '105', 'MU', 'Information Technology(B.E. I.T)', '58.8', '100', '0'), (3297, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '720', '530', '1250', '3', '91', 'University of Pune', 'information technology', '65', '100', '0'), (3298, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '158', '146', '304', '4', '101', 'Malnad College Of Engineering', 'CS and E', '79.91', '100', '0'), (3299, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2007', '770', '580', '1350', '4', '270', 'University of Mumbai', 'Computer Engineering', '59.5', '100', '0'), (3300, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '158', '152', '310', '3.5', '102', 'University of Pune', 'Computer Engineering', '58', '100', '0'), (3301, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '158', '148', '306', '3.5', '102', 'Thakur College of Engineering and Technology', 'Computer Science', '65.3', '100', '0'), (3302, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '166', '149', '315', '3', 'None', 'CEG', 'Computer Science', '7.88', '10', '0'), (3303, 'Syracuse University', '4', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2015', '161', '147', '308', '3', '96', 'Gayatri Vidya Parishad College of Engineering', 'computer science and engineering', '74.7', '100', '0'), (3304, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '760', '430', '1190', '3.5', '111', 'JNTU', 'Computer Science', '70', '100', '0'), (3305, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '720', '550', '1270', '3', '81', 'Anna University', 'Computer Science and Engineering', '80', '100', '0'), (3306, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '740', '570', '1310', '4', '105', 'Rajiv Gandhi Univ of Tech', 'Mechanical Engineering', '75.38', '100', '0'), (3307, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '750', '570', '1320', '4', '109', 'MU', 'IT', '67', '100', '0'), (3308, 'Syracuse University', '4', 'Reject', 'MS', 'Supply chain management', 'Fall ', '2015', '161', '155', '316', '3.5', 'None', 'Vidyalankar Institute of Technology', 'Electronics', '62.21', '100', '0'), (3309, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '158', '148', '306', '3.5', '102', 'VTU', 'Computer Science and Engineering', '71', '100', '0'), (3310, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '145', '304', '4', '105', 'Lakshmi Narain College of Technology', 'Information Technology', '77.8', '100', '0'), (3311, 'Syracuse University', '4', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '530', '1330', '4', '102', 'Anna University', 'Electronics and Communication Engg.', '7.12', '10', '0'), (3312, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '157', '146', '303', '3', '99', 'VTU', 'Information Science', '70', '100', '0'), (3313, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '156', '147', '303', 'None', 'None', 'CMRIT', 'IT', '63', '100', '0'), (3314, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2008', '710', '370', '1080', '3', '102', 'Sree Sastha Institute of Engineering and Technology', 'Computer Science and Engineering', '75.29', '100', '0'), (3315, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '710', '680', '1390', '4', '109', 'MU', 'Computer Science', '61.6', '100', '0'), (3316, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '740', '510', '1250', '4', '104', 'MU', 'computer science', '55', '100', '0'), (3317, 'Syracuse University', '4', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2013', '156', '152', '308', '4', '109', 'NIT Tirchy', 'Chemical Engineering', '6.2', '10', '0'), (3318, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '770', '640', '1410', '3.5', 'None', 'GITAM', 'Computer Science and Engineering', '7.9', '10', '0'), (3319, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '710', '410', '1120', '3', '108', 'MU', 'Information Technology', '58', '100', '0'), (3320, 'Syracuse University', '4', 'Reject', 'MS', 'Textile Science & Technology', 'Fall ', '2013', '152', '149', '301', '3', '101', 'Anna University', 'textile', '8.24', '10', '0'), (3321, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2011', '670', '500', '1170', '2.5', '89', 'Pune University', 'Computer Engineering', '62.4', '100', '0'), (3322, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '700', '600', '1300', '3.5', '110', 'MU', 'Computer Engineering', '62', '100', '0'), (3323, 'Syracuse University', '4', 'Reject', 'MS', 'Electrical and Electronics', 'Fall ', '2013', '155', '145', '300', '3', '99', 'Osmania University', 'EEE', '66', '100', '0'), (3324, 'Syracuse University', '4', 'Reject', 'MS', 'Electrical and Electronics', 'Fall ', '2012', '730', '570', '1300', '3.5', '103', 'MU', 'EXTC', '3.4', '4', '0'), (3325, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '150', '312', '3.5', '102', 'NIT Calicut', 'CSE', '7.74', '10', '0'), (3326, 'Syracuse University', '4', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2012', '157', '146', '303', '3.5', '99', 'MU', 'Mechanical engineering', '57', '100', '0'), (3327, 'Syracuse University', '4', 'Reject', 'MS', 'CS / SE / IT / MIS', 'Fall ', '2014', '157', '147', '304', '3', '97', 'Pune University', 'Computer Engg', '57.4', '100', '57'), (3328, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '144', '303', '3.5', '93', 'Fr.C. Rodrigues Institute of Technology Vashi Navi Mumbai', 'Computer Science', '64.33', '100', '0'), (3329, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '690', '410', '1100', '3', 'None', 'RAIT', 'Computer Engineering', '65', '100', '0'), (3330, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Engineering / Electrical Computer Engineering', 'Fall ', '2014', '161', '150', '311', '3.5', '96', 'K J Somaiya College of Engiineering', 'Electronics Engineering', '74.21', '100', '24'), (3331, 'Syracuse University', '4', 'Reject', 'MS', 'CS/MIS', 'Fall ', '2012', '800', '640', '1440', '4', '115', 'None', 'Computer Engineering', '6.85', '10', '0'), (3332, 'Syracuse University', '4', 'Reject', 'MS', 'Information Systems', 'Fall ', '2015', '157', '145', '302', '3', '97', 'ASIET', 'IT', '70.6', '100', '42'), (3333, 'Syracuse University', '4', 'Reject', 'MS', 'MIS/CS', 'Fall ', '2014', '158', '149', '307', '2.5', '93', 'MU', 'IT', '58', '100', '0'), (3334, 'Syracuse University', '4', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '560', '1360', '3.5', '105', 'RAIT', 'Instrumentation', '60', '100', '0'), (3335, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '163', '149', '312', '3', 'None', 'Amrita School of Engineering', 'EEE', '7.43', '10', '27'), (3336, 'Syracuse University', '4', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '159', '150', '309', '3', '105', 'None', '0', '0', '0', '0'), (3337, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '162', '150', '312', '3.5', '96', 'Narsee Monjee Institute of Management studies', 'Computer Science', '3.1', '4', '0'), (3338, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2016', '160', '144', '304', '3.5', 'None', 'Reva Institute of Technology', 'Electronics and communication', '72', '100', '12'), (3339, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '730', '480', '1210', '3.5', '108', 'VTU', 'Information Science', '67.2', '100', '0'), (3340, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '149', '153', '302', '3', '105', 'SASTRA', 'ELECTRICAL AND ELECTRONICS ENGINEERING', '7.7', '10', '49'), (3341, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '163', '154', '317', '3.5', '109', 'Amrita School of Engineering', 'Information Technology', '7.81', '10', '60'), (3342, 'Syracuse University', '4', 'Reject', 'MS', 'Mechanical Engineering', 'Spring ', '2013', '170', '153', '323', '3', '104', 'BITS Goa', 'Mechanical', '6', '10', '0'), (3343, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '147', '313', '3', '107', 'JNTU', 'Information Technology', '65.44', '100', '0'), (3344, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '159', '150', '309', '4', '98', 'B M S College of Engineering', 'CS', '8.28', '10', '0'), (3345, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '162', '155', '317', 'None', '97', 'JNTU', 'CSE', '65', '100', '0'), (3346, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '730', '520', '1250', '3.5', '105', 'University of Pune', 'Information Technology', '64', '100', '0'), (3347, 'Syracuse University', '4', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2013', '156', '146', '302', '4', '115', 'Anna University', 'Biomedical Engineering', '65', '100', '0'), (3348, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2011', '780', '420', '1200', '3.5', '91', 'COEP', 'Material Science', '6.46', '10', '0'), (3349, 'Syracuse University', '4', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '154', '152', '306', '4', '106', 'VTU', 'Electronics & Communication', '65', '100', '0'), (3350, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science/ Mgmt', 'Fall ', '2011', '770', '480', '1250', '3.5', '109', 'MU', 'Computer Engineering', '0', '0', '0'), (3351, 'Syracuse University', '4', 'Reject', 'MS', 'None', 'Fall ', '2012', '158', '149', '307', '3.5', '99', 'None', '0', '6.6', '100', '0'), (3352, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '154', '313', '3.5', '97', 'SVCE', 'EEE', '75.04', '100', '0'), (3353, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '149', '313', '3.5', '104', 'D j Sanghvi', 'IT', '62', '100', '0'), (3354, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '156', '151', '307', '3', '91', 'WIT Solapur', 'ECE', '62.65', '100', '0'), (3355, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '163', '152', '315', '3.5', '108', 'MU', 'Computer Engineering', '60.26', '100', '0'), (3356, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2007', '750', '350', '1100', '4', '253', 'Pune University', 'Computer Engineering', '54', '100', '0'), (3357, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '143', '309', '3', '98', 'MSU', 'Computer Science', '3.64', '4', '24'), (3358, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '151', '317', '3.5', '101', 'CEG', 'Information Technology', '7.1', '10', '30'), (3359, 'Syracuse University', '4', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2007', '610', '500', '1110', '4.5', '293', 'K J Somaiya College of Engiineering', 'Computer', '61', '100', '0'), (3360, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '690', '460', '1150', '4.5', '109', 'Datta Meghe College of Engineering', 'Computer Engineering', '57.2', '100', '0'), (3361, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2009', '800', '320', '1120', '3.5', '105', 'JNTU', 'CSE', '75', '100', '0'), (3362, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '740', '590', '1330', '3.5', '103', 'MU', 'information technology', '61.45', '100', '0'), (3363, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2008', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (3364, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '167', '156', '323', '2.5', '88', 'Northeast Dianli Univ.', 'Electrical Engineering', '78', '100', '0'), (3365, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '158', '153', '311', '3', '93', 'RGTU', 'Computer Science', '76', '100', '0'), (3366, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2006', '790', '690', '1480', '5', '300', 'Vidylankar Institute of Technology', 'Computer Engineering', '57', '100', '0'), (3367, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '710', '340', '1050', '3', '92', 'Pune University', 'IT', '73', '100', '0'), (3368, 'Syracuse University', '4', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '450', '1250', '2.5', 'None', 'MU', 'Electronics and Telecommunication', '58', '100', '0'), (3369, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2008', '780', '540', '1320', '3.5', '105', 'MDU', 'Computer science', '66', '100', '0'), (3370, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '158', '319', '3.5', '102', 'IIT Kharagpur', 'Chemistry', '6.39', '10', '0'), (3371, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '165', '159', '324', '3', '101', 'BITS Pilani', 'Electronics', '4.93', '10', '0'), (3372, 'Syracuse University', '4', 'Admit', 'MS', 'Engineering Management', 'Spring', '2017', '153', '151', '304', '3', '107', 'Gvp College Of Engineering', 'Information Technology', '77', '100', '0'), (3373, 'Syracuse University', '4', 'Admit', 'MS', 'Electronics & Communication', 'Fall', '2012', '159', '143', '302', '3.5', '85', '-1', 'ECE', '79', '100', '0'), (3374, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '630', '1390', '4.5', '115', 'Anna University', 'EE', '82', '100', '0'), (3375, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '170', '153', '323', '3.5', '105', 'CoE Trivandrum', 'CSE', '7.9', '10', '0'), (3376, 'Arizona State University', '6', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '164', '158', '322', '4', '108', 'TSEC', 'Information Technology', '64.2', '100', '0'), (3377, 'Arizona State University', '6', 'Admit', 'MS', 'Business Analytics', 'Fall ', '2014', '169', '151', '320', '3', '101', 'NIET', 'ECE', '71', '100', '0'), (3378, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '150', '312', '3.5', '110', 'Dr. M.G.R. EDUCATIONAL AND RESEARCH INSTITUTE UNIVERSITY', 'ELECTRICAL AND ELECTRONICS ENGINEERING', '9.37', '10', '24'), (3379, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '163', '150', '313', '3.5', '100', 'R V College of Engineering', 'Mechanical', '9.19', '10', '0'), (3380, 'Arizona State University', '6', 'Admit', 'MS', 'Business Analytics', 'Fall ', '2015', '170', '150', '320', '3', '100', 'IIIT Gwalior', 'Information Technology', '7', '10', '21'), (3381, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '170', '155', '325', '4', '118', 'M.S.U.', 'Electronics engineering', '3.98', '4', '0'), (3382, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics Instrumentation and Control', 'Fall ', '2013', '160', '144', '304', '4', '100', 'Anna University', 'Electronics and instrumentation', '8.6', '10', '0'), (3383, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2013', '160', '150', '310', '3', 'None', 'VIT', 'Civil', '8.69', '10', '0'), (3384, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '170', '150', '320', '3', '104', 'BITS Goa', 'Mechanical', '6.32', '10', '48'), (3385, 'Arizona State University', '6', 'Admit', 'MS', 'CS', 'Fall ', '2014', '164', '152', '316', '3.5', '100', 'R V College of Engineering', 'INFORMATION TECHNOLOGY', '8.39', '10', '0'), (3386, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '700', '590', '1290', '2', '102', 'National Institute Of Engineering', 'Computer Science', '8.86', '10', '0'), (3387, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '790', '690', '1480', '3.5', '98', 'Vishwakarma Institute of Technology', 'Electronics and Telecommunications', '8.77', '10', '0'), (3388, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '163', '148', '311', '3', '98', 'SPCE', 'Electrical', '76', '100', '0'), (3389, 'Arizona State University', '6', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (3390, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '159', '150', '309', '3', '105', 'None', '0', '0', '0', '0'), (3391, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '590', '1370', '3.5', '114', 'Manipal Institue of Technology', 'ECE', '8.3', '10', '0'), (3392, 'Arizona State University', '6', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2011', '780', '590', '1370', '3.5', '105', 'VTU', 'ECE', '82', '100', '0'), (3393, 'Arizona State University', '6', 'Admit', 'MS', 'computer science / MIS', 'Fall ', '2015', '163', '150', '313', '3.5', 'None', 'K J Somaiya College of Engiineering', 'Information Technology', '66', '100', '48'), (3394, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '165', '147', '312', '3.5', '96', 'IIT Patna', 'Electrical Engineering', '8.62', '10', '0'), (3395, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '164', '150', '314', '4', '102', 'Sri Venkateswara College of Engineering', 'Information Technology', '7.968', '10', '0'), (3396, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '160', '152', '312', '3.5', '100', 'CSVTU', 'Computer Science', '73', '100', '0'), (3397, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '400', '1200', '3.5', '102', 'NIT-K Surathkal', 'Electrical', '8.1', '10', '0'), (3398, 'Arizona State University', '6', 'Admit', 'MS', 'renewable energy', 'Fall', 'None', '161', '151', '312', '4.5', 'None', 'None', '0', '0', '0', '0'), (3399, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Spring ', '2015', '167', '150', '317', '3', '102', 'COEP', 'Instrumentation & Control Engineering', '8.03', '10', '0'), (3400, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '155', '323', '4.5', '114', 'UPTU', 'CSE', '70.8', '100', '0'), (3401, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '520', '1300', '3', '95', 'Acharya Nagarjuna University', 'cse', '87.6', '100', '0'), (3402, 'Arizona State University', '6', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2012', '750', '530', '1280', '3.5', '103', 'WBUT', 'Mechanical', '8.38', '10', '0'), (3403, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '165', '151', '316', '4', '107', 'NIT Hamirpur', 'Mechanical Engineering', '7.42', '10', '6'), (3404, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '800', '500', '1300', '3', '97', 'Panjab University', 'BE(CS)', '67.4', '100', '0'), (3405, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '156', '315', '4', '112', 'Cochin University of Science and Technology', 'INFORMATION TECHNOLOGY', '84.15', '100', '63'), (3406, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '170', '150', '320', '3.5', '102', 'NIT Rourkela', 'Electronics And Communication Engg', '9.06', '10', '40'), (3407, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '166', '145', '311', '3', '95', 'IP University Delhi', 'Information Technology', '73.4', '100', '24'), (3408, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2008', '800', '680', '1480', '5', '113', 'University of Mumbai', 'Computer Engineering', '70.88', '100', '0'), (3409, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering / Electrical Computer Engineering', 'Fall ', '2015', '162', '152', '314', '3', '104', 'MU', '0', '62', '100', '0'), (3410, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '164', '159', '323', '3.5', '116', 'VIT University', 'Computer Sc & Engg', '8.8', '10', '0'), (3411, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '660', '1440', '4', '111', 'MU', 'Computer Enginnering', '69', '100', '0'), (3412, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '540', '1310', '3.5', '108', 'Anna University', 'Computer Science', '8.6', '10', '0'), (3413, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '680', '1470', '3.5', '105', 'Manipal Institue of Technology', 'ECE', '7.08', '10', '0'), (3414, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '165', '152', '317', '3', '101', 'B M S College of Engineering', 'Computer Science', '9.5', '10', '33'), (3415, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '560', '1350', '3.5', '110', 'Pune University', 'Electronics Engineering', '3.25', '4', '0'), (3416, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '800', '410', '1210', '3.5', '105', 'GITAM', 'Electronics and Communication', '8.01', '10', '0'), (3417, 'Arizona State University', '6', 'Admit', 'MS', 'Materials Science & Engineering', 'Fall ', '2014', '166', '157', '323', '3.5', '111', 'IIT (BHU) Varanasi', 'Metallurgical Engineering', '8.37', '10', '0'), (3418, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '153', '315', '3.5', '106', 'Maharishi Dayanand University', 'Computer Engineering', '7.66', '10', '24'), (3419, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', 'None', 'None', '0', 'None', '117', 'Symbiosis Institute of Technology', 'Mechanical', '3.511', '4', '0'), (3420, 'Arizona State University', '6', 'Admit', 'MS', 'electronics', 'Fall ', '2012', '790', '360', '1150', '3', '102', 'VIT Pune', 'Electronics', '9', '10', '0'), (3421, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '770', '660', '1430', '3', '111', 'Motilal Nehru National Institute of Technology', 'ECE', '8.65', '10', '0'), (3422, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '162', '156', '318', '3', '101', 'Pune University', 'INDUSTRIAL ENGG.', '8.49', '10', '0'), (3423, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '710', '1500', '3.5', '107', 'COEP', 'Computers', '6.89', '10', '0'), (3424, 'Arizona State University', '6', 'Admit', 'MS', 'CS', 'Fall ', '2012', '800', '700', '1500', '4', 'None', 'University of Mumbai', 'Computer', '64', '100', '0'), (3425, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '780', '570', '1350', '4', '117', 'PESIT', 'Telecommunication Engineering', '8.68', '10', '0'), (3426, 'Arizona State University', '6', 'Admit', 'MS', 'Construction Management', 'Fall ', '2015', '154', '148', '302', '3', '92', 'Chhattisgarh Swami Vivekanand Technical University', 'Civil', '7.7', '10', '12'), (3427, 'Arizona State University', '6', 'Admit', 'MS', 'CS', 'Fall ', '2015', '162', '156', '318', '3.5', '109', 'Anna University', 'CS', '7.33', '10', '0'), (3428, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '148', '309', '3', '106', 'University Vishweriah College of Engineering', 'Computer Science', '75.1', '100', '0'), (3429, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '790', '710', '1500', '4', '115', 'VTU', 'Electronics & Communication', '82.5', '100', '0'), (3430, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '170', '155', '325', '4', '110', 'IIIT Hyderabad', 'Information Technology', '8.9', '10', '29'), (3431, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '158', '321', '3.5', '104', 'VTU', 'Electrical & Electronics', '69', '100', '27'), (3432, 'Arizona State University', '6', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (3433, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '157', '324', '4', '114', 'SRM', 'EEE', '8.5', '10', '0'), (3434, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '750', '310', '1060', '3', '90', 'Dharamsinh Desai University', 'Electronics and Communications', '68', '100', '0'), (3435, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '730', '420', '1150', '4', '100', 'VTU', 'Electronics & Communications', '78.38', '100', '0'), (3436, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '790', '430', '1220', '3.5', 'None', 'COEP', 'Information Technology', '7.94', '10', '0'), (3437, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '165', '162', '327', '4', '103', 'R V College of Engineering', 'Telecommunication', '9.01', '10', '0'), (3438, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Spring ', '2014', '162', '144', '306', '2', 'None', 'VTU', 'electronics and communication', '87.15', '100', '0'), (3439, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '153', '314', '3.5', '108', 'VTU', 'Computer Science', '8.45', '10', '0'), (3440, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '600', '1380', '3.5', '115', 'VTU', 'Electrical and Electronics Engineering', '77.4', '100', '0'), (3441, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '167', '157', '324', '3.5', '102', 'Sardar Vallabhbhai National Institute of Technology', 'Production Department', '7.66', '10', '34'), (3442, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '690', '1460', '3', '104', 'MU', 'CS', '63.5', '100', '0'), (3443, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '800', '670', '1470', '2.5', '96', 'VIT University', 'ECE', '8.1', '10', '0'), (3444, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '640', '1440', '4', '109', 'PSG College of Technology', 'ECE', '8.4', '10', '0'), (3445, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '159', '146', '305', '3', '104', 'MSRIT', 'Mechanical', '9.66', '10', '0'), (3446, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '161', '152', '313', '4', '111', 'SRM', 'Mechanical', '9.1', '10', '0'), (3447, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '600', '1400', '4', '103', 'University of Mumbai', 'Information Technology', '68', '100', '0'), (3448, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '165', '150', '315', '3', '100', 'NIT Jamshedpur', 'COMPUTER SCIENCE AND ENGINEERING', '8.4', '10', '0'), (3449, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '157', '153', '310', '4', '109', 'VTU', 'Computer Science', '68.3', '100', '0'), (3450, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2016', '165', '154', '319', '3.5', '105', 'NIT-warangal', 'EEE', '7.01', '10', '27'), (3451, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2014', '165', '152', '317', '3.5', '105', 'VIT', 'School of Electrical Engineering', '8.65', '10', '0'), (3452, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '770', '440', '1210', '4.5', '108', 'SJCE', 'Electronics and Communication', '9.78', '10', '0'), (3453, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '760', '500', '1260', '4', '90', 'VTU', 'ISE', '78', '100', '0'), (3454, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '740', '510', '1250', '3', 'None', 'Maharashtra Institute of Technology', 'Electronics and telecommunications', '62.12', '100', '0'), (3455, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '164', '154', '318', '3.5', '100', 'NIT Hamirpur', 'Mechanical Engineering', '7.34', '10', '0'), (3456, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '152', '310', '3.5', '107', 'MU', 'COMP ENGG', '60', '100', '0'), (3457, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '167', '152', '319', '4', '116', 'Vishwakarma Institute of Technology', 'Mechanical Engineering', '9.47', '10', '22'), (3458, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '153', '315', '3.5', '111', 'Nagpur University', 'Computer Tech', '67', '100', '0'), (3459, 'Arizona State University', '6', 'Admit', 'MS', 'Instrumentation and Control', 'Fall ', '2008', '770', '460', '1230', '3.5', '110', 'VIT', 'E&I;', '8.76', '10', '0'), (3460, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2012', '770', '390', '1160', '3.5', '107', 'VTU', 'Electronics and Communication', '76.46', '100', '0'), (3461, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', 'None', 'None', '0', 'None', 'None', 'VIT', 'Telecommunication Engineering', '8.17', '10', '0'), (3462, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2014', '162', '150', '312', '3', '108', 'University of Petroleum and Energy Studies', 'Civil Engineering', '3.13', '4', '0'), (3463, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '690', '1490', '4.5', '113', 'TCET MU', 'Computer Engineering', '69', '100', '0'), (3464, 'Arizona State University', '6', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2011', '770', '460', '1230', '3', '88', 'Anna University', 'Electronics and communication enginnering', '8.1', '10', '0'), (3465, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '161', '156', '317', '4', '106', 'Coimbatore Insitute of Technology', 'Computer Science', '9.4', '10', '30'), (3466, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '800', '580', '1380', '3.5', '106', 'PICT', 'Computer Engg', '3.56', '4', '0'), (3467, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'SVCE', 'Electronics and Communication Engineering', '7.7', '10', '0'), (3468, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and computer engineering electrical engineering telecommunications engineering', 'Fall ', '2015', '170', '157', '327', '4.5', '114', 'Jamia Millia Islamia', 'Electronics and Communication', '8.89', '10', '3'), (3469, 'Arizona State University', '6', 'Admit', 'MS', 'Biomedical Engineering', 'Fall', 'None', '157', '148', '305', '3.5', '93', 'Vidyalankar Institute of Technology', 'biomedical', '71.5', '100', '0'), (3470, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2016', '165', '147', '312', '3', '105', 'VNIT Nagpur', 'Electrical and Electronics', '8.86', '10', '14'), (3471, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '158', '149', '307', '3', '102', 'Sri Sairam Engineering College', 'CSE', '84', '100', '0'), (3472, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '640', '1440', '4', '107', 'VTU', 'Telecommunication', '77', '100', '0'), (3473, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '147', '310', '3.5', '105', 'ITME', 'Computer Science Engg', '8.08', '10', '0'), (3474, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '760', '460', '1220', '3', '108', 'Sri Sairam Engineering College', 'Mechanical Engineering', '8.15', '10', '0'), (3475, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '730', '490', '1220', '3.5', '101', 'Anna University', 'Mechanical Engineering', '8.53', '10', '0'), (3476, 'Arizona State University', '6', 'Admit', 'MS', 'renewable energy', 'Fall ', '2015', '160', '154', '314', '4', '114', 'BMSCE', 'ECE', '8.1', '10', '0'), (3477, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2011', '790', '650', '1440', '2.5', '106', 'NIT Jalandhar', 'Civil Engineering', '6.22', '10', '0'), (3478, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '146', '308', '3', '102', 'University of Pune', 'Information Tech.', '72.23', '100', '36'), (3479, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '165', '157', '322', '3.5', '109', 'University of Pune', 'Electronics and Telecommunication', '73', '100', '0'), (3480, 'Arizona State University', '6', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2013', '158', '144', '302', '2.5', '81', 'Gujarat Technological University', 'Mechanical Engineeirng', '8.4', '10', '0'), (3481, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '650', '1430', '4.5', '112', 'Dr Ambedkar Institute of Technology', 'Electronics and Communications Engineering', '76', '100', '0'), (3482, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '170', '149', '319', '3', '102', 'MSRIT', 'Mechanical', '9.51', '10', '0'), (3483, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '740', '510', '1250', '3.5', '100', 'PSG College of Technology', 'Computer Science and Engineering', '8.94', '10', '0'), (3484, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '168', '161', '329', '4', '110', 'BITS Pilani', 'El', '8.7', '10', '0'), (3485, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '158', '147', '305', '3', '95', 'JNTU', 'ece', '80', '100', '0'), (3486, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '164', '152', '316', '3', '106', 'IIT Hyderabad', 'Electrical Engineering', '8.5', '10', '0'), (3487, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '167', '154', '321', '3', '108', 'FRCRCE-Mumbai University', 'Information Technology', '67.2', '100', '0'), (3488, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '570', '1370', '4', '113', 'VIT Pune', 'Electronics & Telecom', '8.93', '10', '0'), (3489, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '149', '308', '3.5', '97', 'JUET Guna', 'CSE', '7.2', '10', '0'), (3490, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '168', '152', '320', '3.5', '106', 'Maharashtra Institute of Technology', 'electronics and telecommunication', '70', '100', '0'), (3491, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '170', '158', '328', '4', '108', 'BITS Goa', 'Mechanical', '8.56', '10', '0'), (3492, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '164', '152', '316', '4', '109', 'MU', 'EnT', '71', '100', '0'), (3493, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics & Communication', 'Fall ', '2013', '163', '145', '308', '3', 'None', 'Future Institute of Engineering and Management', 'E.C.E', '7.98', '10', '0'), (3494, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '157', '150', '307', '4', '100', 'ssec anna university', 'cse', '8.1', '10', '0'), (3495, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '158', '324', '3', '106', 'MU', 'Computers', '66', '100', '0'), (3496, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '149', '307', '3.5', '96', 'MU', 'Information Technology', '71', '100', '42'), (3497, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '730', '530', '1260', '3', 'None', 'Anna University', 'Mechanical', '71.33', '100', '0'), (3498, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '167', '155', '322', '4.5', '109', 'Maharaja Agrasen Institute Of Technology', 'B.Tech (Computer Science)', '76', '100', '0'), (3499, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2006', '7990', '650', '8640', '5', '297', 'MVSR', 'Mechanical Engg', '79.6', '100', '0'), (3500, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '165', '154', '319', '3.5', '103', 'PESIT', 'Mechanical', '9.55', '10', '0'), (3501, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '160', '148', '308', 'None', 'None', 'COEP', 'Electrical', '6.2', '10', '0'), (3502, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '165', '155', '320', '3', '103', 'JSS Noida', 'electrical', '65', '100', '0'), (3503, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '156', '318', '3.5', '110', 'UPTU', 'Electronics', '64.74', '100', '42'), (3504, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '590', '1390', '3.5', '110', 'NIT Surat', 'Computer Engg.', '7.54', '10', '0'), (3505, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', 'None', 'None', '0', 'None', 'None', 'COEP', 'mechanical engineering', '7.98', '10', '6'), (3506, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '166', '144', '310', '3.5', '110', 'Pune University', 'Computer Engineerinmg', '9.17', '10', '0'), (3507, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '162', '150', '312', '3', '94', 'GITAM', 'ECE', '79.1', '100', '0'), (3508, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '162', '151', '313', '3', '104', 'PICT', 'CS', '3.5', '4', '0'), (3509, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '157', '319', '5', '116', 'Symbiosis Institute of Technology', 'Computer Science and Information Technology', '2.8', '4', '24'), (3510, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '168', '159', '327', '4', '116', 'University of Mumbai', 'EXTC', '72.48', '100', '0'), (3511, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '540', '1300', '3.5', '102', 'VJTI', 'Information Technology', '8.4', '10', '0'), (3512, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '167', '143', '310', '3.5', '98', 'St Francis Institute of Technology - Mumbai Unversity', 'Computer Engineering', '70', '100', '0'), (3513, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '154', '317', '4', '104', 'VTU', 'Information Science and engineering', '78', '100', '0'), (3514, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '161', '153', '314', '4.5', '103', 'PESIT', 'Mechanical Engineering', '8.57', '100', '0'), (3515, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2011', '800', '670', '1470', '4', '111', 'Manipal Institue of Technology', 'ECE', '9.7', '10', '0'), (3516, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '720', '1510', '4.5', 'None', 'NIT Durgapur', 'Computer Science and Engineering', '8.28', '10', '0'), (3517, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '161', '149', '310', '3.5', '110', 'PESIT', 'ECE', '8.64', '100', '0'), (3518, 'Arizona State University', '6', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2013', '164', '151', '315', '5', '110', 'None', 'Biomedical Engg', '8.1', '10', '0'), (3519, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '163', '153', '316', '4', '114', 'Anna University', 'EEE', '9.25', '10', '12'), (3520, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '151', '317', '3.5', 'None', 'VJTI', 'computer science', '8.4', '10', '0'), (3521, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '590', '1390', '4', '109', 'Manipal Institue of Technology', 'Computer Science and Engineering', '7.71', '10', '0'), (3522, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '163', '163', '326', '4.5', '112', 'None', '0', '0', '0', '0'), (3523, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '165', '149', '314', '4', '106', 'IIITDM Kancheepuram', 'Computer Engineering', '8.61', '10', '0'), (3524, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '155', '167', '322', '3.5', '102', 'NIT Hamirpur', 'Electrical Engg', '7.38', '10', '56'), (3525, 'Arizona State University', '6', 'Admit', 'MS', 'energy', 'Fall ', '2012', '760', '450', '1210', '3', '104', 'VIT Pune', 'Instrumentation & Control', '8.61', '10', '0'), (3526, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2014', '168', '154', '322', '3.5', '105', 'PSG College of Technology', 'Electrical and Electronics Engineering', '9.23', '10', '0'), (3527, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '590', '1390', '3', '111', 'K J Somaiya College of Engiineering', 'Computer Engineering', '75.12', '100', '0'), (3528, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '166', '154', '320', '3.5', '104', 'VNIT Nagpur', 'Electrical and Electronics Engg.', '8.52', '10', '0'), (3529, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '164', '147', '311', '3', '102', 'PICT', 'EnTC', '3', '4', '0'), (3530, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2009', '800', '550', '1350', '4.5', '109', 'K J Somaiya College of Engiineering', 'computer', '72', '100', '0'), (3531, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '170', '157', '327', '4', 'None', 'LNMIIT', 'COMPUTER SCIENCE', '8.2', '10', '0'), (3532, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '580', '1360', '3.5', '114', 'Osmania University', 'IT', '73', '100', '0'), (3533, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering/Comp Science', 'Fall ', '2014', '167', '149', '316', '3', '98', 'NIT Hamirpur', 'Computer Science and Engineering', '8.11', '10', '0'), (3534, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '560', '1360', '3.5', '107', 'IIT BHU', 'Electrical Engineering', '7.3', '10', '0'), (3535, 'Arizona State University', '6', 'Admit', 'MS', 'CS', 'Fall ', '2014', '164', '146', '310', '3', '91', 'VTU', 'CSE', '71.8', '100', '0'), (3536, 'Arizona State University', '6', 'Admit', 'MS', 'Metallurgy and Materials Engineering', 'Fall ', '2013', '167', '151', '318', '4', '106', 'Delhi College Of Engineeing', 'Mechanical Engineering', '70', '100', '0'), (3537, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '165', '147', '312', '3', '91', 'B V Bhoomaraddi College of Engg & Tech (Affiliated to VTU)', 'ELECTRONICS AND COMMUNICAION', '9.48', '10', '0'), (3538, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '162', '147', '309', '3.5', '90', 'JSS Noida', 'INDUSTRIAL ENGINEERING AND MANAGEMENT', '71.4', '100', '16'), (3539, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '550', '1350', '3', '102', 'PEC University of Technology', 'Computer Science', '7.46', '10', '0'), (3540, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '640', '1440', '3.5', '97', 'IIIT Hyderabad', 'Computer Science', '8.22', '10', '0'), (3541, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '151', '315', '3.5', '105', 'SASTRA', 'ICT', '9.11', '10', '0'), (3542, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '154', '317', '3', '107', 'University of Mumbai', 'Computer Engineering', '69.68', '100', '0'), (3543, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics & Communication', 'Fall ', '2012', '800', '400', '1200', '3.5', '108', 'YCCE', 'Electronics and Telecommunication', '78.91', '100', '0'), (3544, 'Arizona State University', '6', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall', 'None', '154', '146', '300', 'None', '94', 'None', '0', '0', '0', '0'), (3545, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2007', '790', '640', '1430', '5', '117', 'PESIT', 'Electronics and Communication', '85', '100', '0'), (3546, 'Arizona State University', '6', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '163', '153', '316', '4', '111', 'RNSIT', 'Computer Science', '84.17', '100', '0'), (3547, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', 'None', 'None', '0', 'None', 'None', 'Pondicherry University', 'ELECTRONICS & COMMUNICATION', '7.8', '10', '0'), (3548, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '158', '151', '309', '3', '101', 'PSG College of Technology', 'MECHANICAL ENGINEERING', '8', '10', '0'), (3549, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '780', '580', '1360', '3', '98', 'SRM', 'Mechanical Engineering', '7.74', '10', '0'), (3550, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2016', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (3551, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '163', '160', '323', '4', '115', 'SRM', 'ECE', '9.157', '10', '0'), (3552, 'Arizona State University', '6', 'Admit', 'MS', 'Computational Science', 'Spring ', '2015', '164', '148', '312', '3.5', '106', 'Amrita School of Engineering', 'CSE', '7.81', '10', '36'), (3553, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '155', '317', '4', '111', 'Mahatma Gandhi University Kerala', 'Computer Science And Engineering', '75', '100', '0'), (3554, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2006', '800', '650', '1450', '4', '283', 'CEG', 'ECE', '8.6', '10', '0'), (3555, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '165', '145', '310', '3', '95', 'CEG', 'Computer Science', '8.33', '10', '60'), (3556, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '167', '149', '316', '3', '99', 'Northern India Engg College (GGSIPU)', 'Information Technology', '77.45', '100', '29'), (3557, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2013', '770', '440', '1210', '3', '97', 'Valliammai Engineering College', 'ELECTRONICS AND INSTRUMENTATION ENGINEERING', '8.59', '10', '0'), (3558, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2013', '160', '146', '306', '3.5', '101', 'Osmania University', 'Mechanical(Industrial Production Engineering)', '70', '100', '0'), (3559, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '780', '450', '1230', '3', '92', 'SASTRA', 'ECE', '7.39', '10', '0'), (3560, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '168', '160', '328', '3.5', '108', 'Walchand College Of Engineering', 'Computer Science and Engg', '7.5', '10', '0'), (3561, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '162', '158', '320', '3', '111', 'NIT Warangal', 'Electronics and Communication Engineering', '8.19', '10', '30'), (3562, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '800', '350', '1150', '3.5', '273', 'Anna University', 'Electronics and Communication', '78', '100', '0'), (3563, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '750', '570', '1320', '3.5', '97', 'SASTRA', 'ELECTRONICS AND COMMUNICATION', '8.47', '10', '0'), (3564, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '168', '335', '4', '115', 'VNIT Nagpur', 'ECE', '8.83', '10', '0'), (3565, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '550', '1350', '4', '107', 'VESIT', 'Instrumentation engg', '72.02', '100', '0'), (3566, 'Arizona State University', '6', 'Admit', 'MS', 'Business Analytics', 'Fall ', '2015', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (3567, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '790', '640', '1430', '3.5', '104', 'Mar Athanasius College of Engineering Kerala', 'Electronics and Communication', '71', '100', '0'), (3568, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '170', '154', '324', '4', '110', 'GGSIPU', 'Computer Science', '78', '100', '0'), (3569, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '161', '158', '319', '3.5', '106', 'Chaitanya Bharathi Institute of Technology', 'MECHANICAL', '83.91', '100', '0'), (3570, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '156', '317', '3', '110', 'VJTI', 'Computer', '8.1', '10', '0'), (3571, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '167', '148', '315', '3.5', '90', 'COEP', 'Mechanical engineering', '7.45', '10', '30'), (3572, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '159', '161', '320', '3.5', '113', 'West Bengal University Of Technology', 'ECE', '8.7', '10', '0'), (3573, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '156', '148', '304', '3', '101', 'PICT', 'Information Technology', '3.63', '4', '0'), (3574, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '780', '550', '1330', '3.5', '103', 'Sardar Patel College of Engineering', 'Mechanical', '68', '100', '0'), (3575, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', 'None', 'None', '0', '4', 'None', 'VTU', 'Information Science', '85', '100', '0'), (3576, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '155', '317', '3.5', '115', 'Biju Patnaik University of Technology', 'Electronics and Telecommunication', '9.07', '10', '0'), (3577, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2007', '770', '460', '1230', '1230', '270', 'VTU', 'Instrumentation Technology', '82.4', '100', '0'), (3578, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '570', '1350', '3', '98', 'WBUT', 'CSE', '8.46', '10', '0'), (3579, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '149', '312', '3', '86', 'CBIT', 'CSE', '80.8', '100', '0'), (3580, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '153', '314', '4', '111', 'SASTRA', 'Information Technology', '7.99', '10', '0'), (3581, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '168', '154', '322', '3', '103', 'IIT Guwahati', 'Mechaanical', '8.6', '10', '3'), (3582, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '159', '148', '307', '3', '307', 'Osmania University', 'CSE', '85', '100', '0'), (3583, 'Arizona State University', '6', 'Admit', 'MS', 'Sustainable enrgy and environment', 'Fall ', '2012', '161', '152', '313', '3.5', '97', 'NIT Nagpur', 'Mechanical', '6.9', '10', '0'), (3584, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '157', '322', '4', '110', 'NITK Surathkal', 'Computer Engineering', '0', '0', '0'), (3585, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '760', '530', '1290', '2.5', '98', 'Sri Sairam Engineering College', 'CS', '7.72', '10', '0'), (3586, 'Arizona State University', '6', 'Admit', 'MS', 'Embedded systems', 'Fall ', '2013', '168', '152', '320', '3.5', '106', 'None', '0', '8.56', '10', '0'), (3587, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '165', '148', '313', '2.5', '97', 'NIT Allahabad', 'Mechanical Engineering', '7.26', '10', '0'), (3588, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '147', '145', '292', '2.5', '90', 'Bharati Vidyapeeth', 'Mechanical', '67.65', '100', '0'), (3589, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '740', '510', '1250', 'None', 'None', 'Jaypee Institute of Information Technology', 'ECE', '8.2', '10', '0'), (3590, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '590', '1390', '3', '106', 'NIT Calicut', 'ECE', '8.34', '10', '0'), (3591, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '760', '550', '1310', '4', '110', 'Pune University', 'Computer Engineering', '63.39', '100', '0'), (3592, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '163', '157', '320', '3', '97', 'YMCA', 'Electronics & Instrumentation & Control', '8.44', '10', '36'), (3593, 'Arizona State University', '6', 'Admit', 'MS', 'MEMS & NANOTECHNOLOGY', 'Fall ', '2012', '680', '620', '1300', '4.5', '115', 'Mahrishi Dayanand University', 'Instrumentation and controls engg.', '69.58', '100', '0'), (3594, 'Arizona State University', '6', 'Admit', 'MS', 'Chemical Engineering', 'Fall ', '2015', '166', '158', '324', '4', '115', 'Panjab University', 'Dr SSB university Inst. of Chemical Engg. and Tech.', '9.098', '10', '0'), (3595, 'Arizona State University', '6', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2013', '156', '150', '306', '2.5', '98', 'Manipal Institue of Technology', 'Electrical and Electronics', '8.76', '10', '0'), (3596, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '800', '600', '1400', '4', '108', 'Delhi College Of Engineeing', 'Mechanical Engineering', '74.33', '100', '0'), (3597, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '166', '143', '309', '3', '92', 'VTU', 'Electronics and Communication', '87', '100', '0'), (3598, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '800', '620', '1420', '3.5', '103', 'MSRIT', 'Mechanical', '9.34', '10', '0'), (3599, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall', 'None', '800', '440', '1240', '3', '97', 'MU', 'mech', '71', '100', '0'), (3600, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '760', '480', '1240', 'None', '113', 'GGSIPU', 'Mechanical and Automation', '0', '0', '0'), (3601, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '170', '148', '318', '3', '112', 'NIT Delhi', 'CSE', '8.23', '10', '0'), (3602, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '167', '155', '322', '3', '101', 'IP University Delhi', 'Computer Science', '83', '100', '0'), (3603, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '770', '510', '1280', '4.5', '273', 'Atharva College', 'Computer Engineering', '60.11', '100', '0'), (3604, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '148', '309', '3.5', '105', 'VTU', 'Computer Science', '72', '100', '6'), (3605, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '570', '1360', '4', '110', 'PESIT', 'Telecommunications', '8.33', '10', '0'), (3606, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '520', '1320', '4.5', '112', 'VTU', 'ECE', '75', '100', '0'), (3607, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '650', '1450', '4.5', '111', 'MU', 'Electronics & Telecommunication', '72.34', '100', '0'), (3608, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '550', '1330', '4.5', '112', 'University of Kerala', 'Electronics and Communication Engineering', '84', '100', '0'), (3609, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '790', '560', '1350', '3', '100', 'Panjab University', 'Mechanical Engineering', '65.63', '100', '0'), (3610, 'Arizona State University', '6', 'Admit', 'MS', 'Business Analytics', 'Fall ', '2015', '159', '151', '310', '3', '99', 'GGSIPU', 'Chemical Engineering', '72.53', '100', '26'), (3611, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '168', '148', '316', '3', '102', 'VIT', 'ECE', '9.14', '10', '0'), (3612, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '530', '1300', '3', '111', 'VIT', 'Information Technology', '64.24', '100', '0'), (3613, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '660', '1410', '4', '113', 'NIT', 'computer', '8.92', '10', '0'), (3614, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '167', '152', '319', '3.5', '108', 'Amrita School of Engineering', 'EEE', '9.01', '10', '24'), (3615, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '164', '152', '316', '3', '97', 'BITS Pilani', 'Mechanical', '7.35', '10', '0'), (3616, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '800', '640', '1440', '3.5', '108', 'IIT Roorkee', 'Industrail Eng', '7.1', '100', '0'), (3617, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '146', '306', '4.5', '100', 'Chandigarh Engineering College Landran', 'Information Technology', '73', '100', '0'), (3618, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '160', '152', '312', '4', '101', 'MU', 'Mechanical Engg.', '68', '100', '0'), (3619, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '159', '150', '309', '4', '114', 'VTU', 'CSE', '74.6', '100', '24'), (3620, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '720', '1520', '4', '103', 'KIIT', 'Electronics and Electrical', '8.82', '10', '0'), (3621, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '167', '153', '320', '3.5', '110', 'NIT Kurukshetra', 'Electronics and Communication', '8.847', '10', '12'), (3622, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '740', '620', '1360', '3.5', '104', 'MU', 'Mechanical', '59.29', '100', '0'), (3623, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2014', '165', '152', '317', '4.5', '112', 'GITAM', 'Civil engineering', '7.48', '10', '0'), (3624, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '317', '155', '472', '3', '106', 'MS uni', 'electronics', '3.91', '4', '0'), (3625, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '167', '156', '323', '4', '116', 'University of Mumbai', 'Computer Engineering', '65.55', '100', '16'), (3626, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Spring ', '2012', '760', '380', '1140', '3', '97', 'VITU', 'SENSE', '8.7', '10', '0'), (3627, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '164', '152', '316', '3.5', '100', 'University of Kerala', 'Electrical & Electronics Engineering', '9.06', '10', '0'), (3628, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '164', '147', '311', '2.5', '99', 'Osmania University', 'mechanical engineering', '8.3', '10', '0'), (3629, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '165', '149', '314', '3', '95', 'RGPV', 'Mechanical Engineering', '7', '10', '0'), (3630, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '159', '319', '4.5', '118', 'SSN College of Engineering', 'CSE', '8.6', '10', '0'), (3631, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '166', '157', '323', '3.5', '115', 'PESIT', 'Electronics and Communication', '9.03', '10', '0'), (3632, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '660', '1460', '3.5', '104', 'None', '0', '7.22', '10', '0'), (3633, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '510', '1310', '3.5', '94', 'CVRCE', 'ECE', '84', '100', '0'), (3634, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '156', '316', '3.5', '100', 'VTU', '0', '79', '100', '0'), (3635, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '163', '151', '314', '3.5', '116', 'Sri Jayachamarajendra College of Engineering', 'Electronics and Communication', '9.17', '10', '0'), (3636, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '142', '303', '3.5', '95', 'VTU', 'CS', '8.57', '10', '0'), (3637, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '700', '1450', '4', '110', 'VTU', 'CS', '79', '100', '0'), (3638, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '151', '311', '3', 'None', 'VTU', 'Computer Science', '81.8', '100', '0'), (3639, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '167', '161', '328', '4', '108', 'IIT Kharagpur', 'Industrial Engineering', '8.09', '10', '0'), (3640, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Spring ', '2012', '800', '560', '1360', '4.5', '111', 'None', '0', '0', '0', '0'), (3641, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '163', '155', '318', '3', '109', 'VIT University', 'Mechanical Engineering', '8.64', '10', '0'), (3642, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '152', '311', '4', '110', 'MU', 'Computer engg', '62', '100', '0'), (3643, 'Arizona State University', '6', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '157', '165', '322', '4', '110', 'PESIT', 'CSE', '8.34', '10', '0'), (3644, 'Arizona State University', '6', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '800', '650', '1450', '4', '115', 'University of Mumbai', 'Computer Engg', '70', '100', '0'), (3645, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '750', '630', '1380', '3', '97', 'University of Enngineering and Technology Taxila', 'Electrical', '90.5', '100', '0'), (3646, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '154', '322', '4', '112', 'VTU', 'Computer Science', '70', '100', '45'), (3647, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '800', '680', '1480', '4.5', '277', 'PESIT', 'EC', '77', '100', '0'), (3648, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '740', '440', '1180', '3', '103', 'Anna University', 'ece', '82', '100', '0'), (3649, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '640', '1440', '3.5', '110', 'University of Mumbai', 'Computer Engineering Department', '61', '100', '0'), (3650, 'Arizona State University', '6', 'Admit', 'MS', 'Materials Science & Engineering', 'Fall ', '2011', '800', '540', '1340', '4', '107', 'NIT Nagpur', 'Metallurgy and Material Science', '8.86', '10', '0'), (3651, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '160', '324', '4.5', '115', 'K J Somaiya College of Engiineering', 'Computer Science', '74.5', '100', '0'), (3652, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '170', '161', '331', '4.5', '115', 'BITS Pilani', 'Electrical and Electronics', '8.04', '10', '0'), (3653, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and computer science', 'Fall ', '2011', '740', '520', '1260', 'None', '86', 'BMSCE', 'E&C;', '79.45', '100', '0'), (3654, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '155', '321', '3.5', '111', 'None', 'Computer Science', '9.06', '10', '0'), (3655, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '159', '150', '309', '3', '92', 'New Horizon College of Engineering', 'computer science', '79', '100', '48'), (3656, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '166', '156', '322', '4', '109', 'WBUT', 'CSE', '8.18', '10', '62'), (3657, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '160', '150', '310', '3.5', '104', 'VTU', 'Computer Science', '76', '100', '0'), (3658, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2006', '710', '510', '1220', '4', '270', 'Punjab Technical University', 'PRODUCTION ENGINEERING', '76', '100', '0'), (3659, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Spring ', '2012', '770', '530', '1300', '4', '93', 'Punjab Engineering College', 'Mechanical Engineering', '8.04', '10', '0'), (3660, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '160', '155', '315', '4', '101', 'Guru Gobind Singh Indraprashta University', 'Mechanical & Automation Engineering', '75', '100', '0'), (3661, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '154', '320', '4', '107', 'WBUT', '0', '7.7', '10', '0'), (3662, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '168', '154', '322', '3', '103', 'Institute of Engineering & Management', 'Computer Science & Engineering', '8.2', '10', '0'), (3663, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '530', '1330', '3', '94', 'Uttarakhand Technical University', 'Computer Science Engineering', '75.2', '100', '0'), (3664, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '168', '162', '330', '3', '111', 'BIT Mesra', 'Electronics and Communication', '7.72', '10', '0'), (3665, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '157', '318', '3', '105', 'UPTU', 'IT', '71', '100', '0'), (3666, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '170', '148', '318', '3', '100', 'PEC University of Technology', 'Electrical Engg.', '7', '10', '0'), (3667, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '166', '156', '322', '4', '114', 'RMK Engineering College', 'BE CSE', '7.85', '10', '15'), (3668, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '166', '334', '3.5', '107', 'University School of Technology IP Univ Delhi', 'Information Technology', '74', '100', '0'), (3669, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '660', '1460', '3', 'None', 'SSN College of Engineering', 'CSE', '77.3', '100', '0'), (3670, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '154', '321', '4', '113', 'The LNM Institute of Information Technology', 'Electrocnics and Communication', '9.2', '10', '0'), (3671, 'Arizona State University', '6', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2011', '700', '360', '1060', 'None', '105', 'Softvision College', 'Bioinformatics', '78', '100', '0'), (3672, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '164', '156', '320', '3.5', '110', 'Graphic Era University', 'Computer Science', '83', '100', '24'), (3673, 'Arizona State University', '6', 'Admit', 'MS', 'Materials Science', 'Fall ', '2015', '166', '151', '317', '3', '108', 'BITS Pilani', 'Mechanical &Physics;', '6.26', '10', '0'), (3674, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '162', '158', '320', '4', '115', 'Amrita Vishwa Vidhyapeetham', 'CSE', '8.1', '10', '0'), (3675, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '147', '308', '3.5', '91', 'Manipal Institue of Technology', 'Computer Science', '8.54', '10', '0'), (3676, 'Arizona State University', '6', 'Admit', 'MS', 'Management Information System', 'Fall ', '2014', '800', '540', '1340', '3', '106', 'RTM Nagpur University', 'Electronics', '73.63', '100', '0'), (3677, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '760', '440', '1200', '4', '107', 'Rajarshi Shahu College of Enginneering', 'Computer Science', '66', '100', '0'), (3678, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '760', '630', '1390', '3', 'None', 'VJTI', 'IT', '7.7', '10', '0'), (3679, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '154', '314', '3', '107', 'SIES Graduate School of Technology', 'CE', '67', '100', '0'), (3680, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '170', '159', '329', '4.5', '113', 'MSRIT', 'EC', '9.1', '10', '0'), (3681, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '168', '159', '327', '3.5', '115', 'Anna University', 'Electronics and Communication Engineering', '7.9', '10', '0'), (3682, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '160', '163', '323', '4', '109', 'None', 'EC', '77.75', '100', '0'), (3683, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '151', '311', '3.5', '103', 'GNDU', 'CS', '71', '100', '0'), (3684, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '166', '152', '318', '3', '110', 'Sikkim Manipal Institute of Technology', 'Computer Science', '7.19', '10', '51'), (3685, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '157', '316', '3.5', '104', 'MNMJEC', 'CSE', '8.48', '10', '0'), (3686, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '152', '314', '3.5', 'None', 'SASTRA', 'ICT', '7.17', '100', '0'), (3687, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Fall', 'None', '165', '157', '322', '3.5', '110', 'None', 'Civil Engineering', '8.19', '10', '0'), (3688, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '165', '154', '319', '4', '115', 'DA-IICT', 'ICT ( Information and Communication Technology)', '7.75', '10', '0'), (3689, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Summer ', '2013', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (3690, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '540', '1340', '4', '112', 'RNSIT', 'Electronics and Communication', '75', '100', '0'), (3691, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '146', '308', '3', 'None', 'CEG', 'Computer Science', '8.59', '10', '0'), (3692, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '158', '146', '304', '3.5', 'None', "St Joseph's College of Engineering", 'electronics and instrumentation engg', '8.92', '10', '0'), (3693, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '690', '510', '1200', '4', '102', 'PESIT', 'CS', '0', '0', '0'), (3694, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2016', '157', '145', '302', '3.5', '103', 'VIT University', 'Computer Science & Engineering', '7.85', '10', '0'), (3695, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '146', '307', 'None', '95', 'Govt. College of Engg Amravati(Autonomous Institute)', 'Computer Science & Engineering', '7.99', '10', '0'), (3696, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '163', '159', '322', '4.5', '115', 'MSRIT', 'Telecommunications Engineering', '9.07', '10', '0'), (3697, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '164', '153', '317', '3', '102', 'DSCE', 'CS', '77', '100', '0'), (3698, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '159', '324', '4', '112', 'Maharaja Sayajirao University Of Baroda', 'Computer Science and Engineering', '3.74', '4', '0'), (3699, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2012', '680', '470', '1150', '3.5', '99', 'Anna University', 'EIE', '80', '100', '0'), (3700, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '460', '1260', '3.5', '99', 'Mahatma Gandhi University Kerala', 'Electronics & Communication', '79.5', '100', '0'), (3701, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2008', '800', '560', '1360', '5.5', '117', 'University of Calicut', 'Electronics and Communication Engg', '79', '100', '0'), (3702, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2013', '168', '154', '322', '3.5', '108', 'VTU', 'Electronics and Communication', '85', '100', '0'), (3703, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '165', '164', '329', '4', '113', 'JSSATE', 'IT', '72', '100', '0'), (3704, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '760', '440', '1200', '3', '110', 'University of Pune', 'Computer Science', '66.81', '100', '0'), (3705, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '152', '313', '4', '101', 'Goa University', 'Information Technology', '74', '100', '0'), (3706, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '770', '550', '1320', '4', '105', 'Coimbatore Insitute of Technology', 'EEE', '8.4', '10', '0'), (3707, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '520', '1310', '3', '113', 'SJCE', 'EEE', '74', '100', '0'), (3708, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '167', '165', '332', '4', '107', 'NIT Calicut', 'Electrical and Electronics Engineering', '7.54', '10', '0'), (3709, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '163', '154', '317', '4', '100', 'BITS Hyderabad', 'Mechanical Engineering', '9.35', '10', '0'), (3710, 'Arizona State University', '6', 'Admit', 'MS', 'MSIM', 'Fall', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (3711, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '660', '1460', '3.5', '103', 'JNTU', 'CS', '76', '100', '0'), (3712, 'Arizona State University', '6', 'Admit', 'MS', 'physics', 'Fall ', '2011', '800', '530', '1330', '4.5', '115', 'BITS Pilani', 'Physics Electrical and Electronics', '9.17', '10', '0'), (3713, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2014', '170', '142', '312', '3', '92', 'NIT Surat', 'Mechanical engineering', '7.32', '10', '0'), (3714, 'Arizona State University', '6', 'Admit', 'MS', 'ASTRONOMY / ASTROPHYSICS', 'Fall ', '2013', '780', '610', '1390', 'None', '112', 'Univ of Mumbai', 'Mech. Eng.', '0', '0', '0'), (3715, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '730', '600', '1330', '3.5', '109', 'Amrita Vishwa Vidhyapeetham', 'Computer Science', '7.73', '10', '0'), (3716, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '166', '153', '319', '3.5', '115', 'COEP', 'Electronics and Telecommunication Engineering', '9.1', '10', '0'), (3717, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '700', '580', '1280', '3.5', '108', 'SSN College of Engineering', 'Computer Science', '78.5', '100', '0'), (3718, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '750', '500', '1250', '3.5', '112', 'VTU', 'Mechanical', '76.66', '100', '0'), (3719, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '730', '490', '1220', '3', '93', 'Meenakshi Sundararajan Engineering College', 'cse', '80', '100', '0'), (3720, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '770', '610', '1380', '4.5', '287', 'RAIT', 'CE', '62', '100', '0'), (3721, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2006', '800', '510', '1310', '4', '270', 'Kerala University', 'Electronics and Communication', '79', '100', '0'), (3722, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '170', '162', '332', '3', '107', 'IIT Mandi', 'Computer Science', '6.74', '10', '16'), (3723, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '590', '1380', '3', '110', 'NIT Silchar', 'Computer Science', '7.52', '10', '0'), (3724, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '740', '620', '1360', '4', '106', 'Anna University', 'computer science', '81', '100', '0'), (3725, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '159', '326', '3.5', '114', 'R V College of Engineering', 'electrical and Electronics', '8.76', '10', '0'), (3726, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '760', '580', '1340', '4', '111', 'CEG', 'ECE', '8.47', '10', '0'), (3727, 'Arizona State University', '6', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '790', '510', '1300', 'None', '105', 'Thadomal Shahani Engineering College', 'Information Technology', '3.9', '4', '0'), (3728, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '166', '162', '328', '3', '103', 'None', 'computer science', '7.68', '10', '0'), (3729, 'Arizona State University', '6', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (3730, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '152', '316', '3', '91', 'CBIT', 'Computer Science', '84.3', '100', '12'), (3731, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '164', '151', '315', '4', 'None', 'None', 'CS', '9.26', '10', '0'), (3732, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '159', '321', '3', '110', 'SRM', 'Mechatronics', '8.57', '10', '0'), (3733, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '164', '153', '317', '4', '112', 'SSN College of Engineering', 'ECE', '8.72', '10', '0'), (3734, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '162', '143', '305', '3.5', '99', 'GITAM', 'ECE', '8.74', '10', '0'), (3735, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '168', '152', '320', '3.5', '113', 'PSG College of Technology', 'MEchanical', '8.4', '10', '4'), (3736, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '800', '640', '1440', '5', '114', 'COEP', 'Production Engineering', '7.88', '10', '0'), (3737, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '161', '156', '317', '4', 'None', 'BMSCE', 'Industrial Engineering', '71', '100', '0'), (3738, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '800', '580', '1380', '3', '112', 'BITS Pilani', 'Electronics and Instrumentation', '7.76', '10', '0'), (3739, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '163', '147', '310', '3', 'None', 'Osmania University', 'mechanical engineering', '87', '100', '1'), (3740, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '155', '157', '312', '3.5', '110', 'R V College of Engineering', 'Instrumentation Technology', '9.42', '100', '0'), (3741, 'Arizona State University', '6', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2013', '790', '430', '1220', '3', '93', 'VIT University', 'ECE', '8.62', '10', '0'), (3742, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '170', '160', '330', '4', 'None', 'BITS Pilani', 'EEE', '8.7', '10', '0'), (3743, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '163', '147', '310', '3.5', '104', 'SRM', 'Electronics and Communication', '7.72', '10', '35'), (3744, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '163', '149', '312', '2.5', '91', 'Institute of Technology Nirma University', 'Computer Science', '7.49', '10', '0'), (3745, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '168', '154', '322', '3', '90', 'VJTI', 'Mechanical', '8', '10', '0'), (3746, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '800', '630', '1430', '660', '293', 'Nirma Institute of Technology', 'Information Technology', '79.38', '100', '0'), (3747, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '162', '151', '313', '4', '109', 'Anna University', 'IT', '7.92', '10', '0'), (3748, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '155', '317', '3', '101', 'NIT Alld', 'CSE', '7.7', '10', '48'), (3749, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '160', '324', '3', '108', 'RGPV', 'Computer Science', '74.13', '100', '0'), (3750, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '164', '145', '309', '3', '97', 'PESIT', 'ECE', '8.72', '10', '0'), (3751, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '151', '312', '3', 'None', 'Medicaps Institute of Science & Technology Indore', 'CS', '77', '100', '0'), (3752, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '560', '1360', '3', '93', 'SLC', 'ECE', '84.2', '100', '0'), (3753, 'Arizona State University', '6', 'Admit', 'MS', 'Electronic and Telecommunication Engineering', 'Fall ', '2011', '800', '500', '1300', '3.5', '100', 'West Bengal University Of Technology', 'ECE', '8.53', '10', '0'), (3754, 'Arizona State University', '6', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2012', '800', '650', '1450', '4.5', '115', 'SSN College of Engineering', 'Biomedical Engineering', '8.38', '10', '0'), (3755, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2007', '800', '720', '1520', '5', '280', 'PESIT', 'Electronics and Communication', '86', '100', '0'), (3756, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2015', '166', '163', '329', '4', '117', 'Medicaps Institute of Science & Technology Indore', 'ECE', '80.4', '100', '24'), (3757, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2007', '800', '660', '1460', '3.5', '112', 'VTU', 'ECE', '0', '0', '0'), (3758, 'Arizona State University', '6', 'Admit', 'MS', 'Operations Research', 'Fall ', '2015', '165', '157', '322', '3', '111', 'BITS Pilani', 'MECHANICAL ENGINEERING', '7.56', '10', '0'), (3759, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '510', '1310', '3.5', '94', 'BITS Goa', 'E.E', '7.21', '10', '0'), (3760, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '162', '156', '318', '4', '112', 'VTU', 'Instrumentation Technology', '9.57', '10', '0'), (3761, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '800', '590', '1390', '4', '113', 'Amrita School of Engineering', 'ECE', '7.73', '10', '0'), (3762, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '166', '150', '316', '3.5', 'None', 'NITK Surathkal', '0', '8.73', '10', '0'), (3763, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '154', '317', '3', '108', 'VTU', 'Computer Science', '78', '100', '0'), (3764, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '730', '560', '1290', '4', '115', 'SSN College of Engineering', 'ECE', '80', '100', '0'), (3765, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '770', '590', '1360', '3', '102', 'Rajiv Gandhi Institute Of Technology', 'MECHANICAL ENGINEERING', '63', '100', '0'), (3766, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '163', '154', '317', '3.5', '100', 'Anna University', 'Electronics and Communication', '81.74', '100', '0'), (3767, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '580', '1380', '3.5', '109', 'NIT Karnataka', 'Electrical and Electronics', '7.81', '10', '0'), (3768, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '161', '156', '317', '4', '105', 'Sathyabama University', 'Mechanical Engineering', '7.456', '10', '0'), (3769, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '161', '151', '312', '3.5', '104', 'Anna University', 'IT', '6.82', '10', '24'), (3770, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '167', '151', '318', 'None', '98', 'BITS Pilani', 'EEE', '6.92', '10', '0'), (3771, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '162', '145', '307', '4', '102', 'VTU', 'telecommunication', '9.24', '10', '36'), (3772, 'Arizona State University', '6', 'Admit', 'MS', 'CS', 'Fall ', '2014', '161', '149', '310', '3.5', '102', 'Manipal Institue of Technology', 'Computer Science', '8.96', '10', '0'), (3773, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2012', '165', '149', '314', '3', '91', 'BITS Goa', 'EEE', '6.43', '10', '0'), (3774, 'Arizona State University', '6', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (3775, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '149', '312', '3.5', '102', 'Coimbatore Insitute of Technology', 'CSE', '8.6', '10', '20'), (3776, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '800', '630', '1430', '3.5', '112', 'BITS Pilani', 'Electrical and Electronics', '7.95', '10', '0'), (3777, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2006', '800', '610', '1410', '4.5', '277', 'Crescent Engineering College', 'ECE', '84.5', '100', '0'), (3778, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '165', '149', '314', '3.5', '107', 'CEG', 'Electronics and communication', '8.67', '10', '0'), (3779, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '161', '157', '318', '3', '103', 'Anna University', 'Mechanical Engineering', '8.31', '10', '0'), (3780, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '147', '311', '3', 'None', 'NIE', 'CSE', '8.87', '10', '0'), (3781, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2012', '800', '480', '1280', '3', '100', 'NIT Warangal', 'Mechanical', '8.08', '10', '0'), (3782, 'Arizona State University', '6', 'Admit', 'MS', 'Business Analytics', 'Fall ', '2014', 'None', 'None', '0', 'None', '108', 'IIT Guwahati', '0', '0', '0', '0'), (3783, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '500', '1260', '3', '102', 'VIT University', 'BTECH/CSE', '8.94', '10', '0'), (3784, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '450', '1230', '4', '105', 'VTU', 'CSE', '74.5', '100', '0'), (3785, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '161', '146', '307', '3', '93', 'VIT', 'ece', '7.23', '10', '18'), (3786, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '150', '311', '3', '106', 'SSN College of Engineering', 'EEE', '7.98', '10', '0'), (3787, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '164', '155', '319', '4.5', '115', 'VJTI', 'PRODUCTION', '8.3', '10', '0'), (3788, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2013', '165', '152', '317', '3', '102', 'SASTRA', 'ECE', '8.18', '10', '0'), (3789, 'Arizona State University', '6', 'Admit', 'MS', 'Aerospace Engineering', 'Spring ', '2014', '760', '600', '1360', '4', '112', 'SIT', 'Mech', '71', '100', '0'), (3790, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '510', '1260', '4', '108', 'Amrita Vishwa Vidhyapeetham', 'Computer Science and Engineering', '8.36', '10', '0'), (3791, 'Arizona State University', '6', 'Admit', 'MS', 'Chemical Engineering', 'Fall ', '2014', '165', '161', '326', '3.5', '113', 'VTU', 'Chemical Engineering', '7.59', '10', '0'), (3792, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '590', '1370', '4', '104', 'Kakatiya University', 'ECE', '74', '100', '0'), (3793, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '170', '153', '323', '3.5', '108', 'Gujarat Technological University', 'Electrical Engineering', '8.2', '10', '0'), (3794, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Spring ', '2014', '161', '144', '305', '3', 'None', 'Osmania University', 'production engineering', '75', '100', '0'), (3795, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '168', '156', '324', '3.5', '113', 'NITK Surathkal', 'ECE', '8.3', '10', '0'), (3796, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '168', '155', '323', '3.5', '110', 'VTU', 'Electronics and Communication', '8.74', '10', '0'), (3797, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '750', '460', '1210', '3.5', '113', 'Manipal Institue of Technology', 'E&C;', '8.7', '10', '0'), (3798, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '149', '314', '3', '100', 'Model Engineering College', 'Computer Science', '75', '100', '0'), (3799, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '160', '146', '306', '3', 'None', 'None', 'ECE', '74', '100', '0'), (3800, 'Arizona State University', '6', 'Admit', 'MS', 'Business Analytics', 'Summer ', '2015', '165', '148', '313', '2.5', '101', 'MU', 'Telecommunication', '66', '100', '49'), (3801, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '169', '159', '328', '3', '113', 'MSRIT', 'E & C', '9.23', '10', '0'), (3802, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '750', '500', '1250', '4', '110', 'VTU', 'Telecommunication', '74', '100', '0'), (3803, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2012', '750', '550', '1300', '4', '106', 'NIT Nagpur', 'Civil', '7.5', '10', '0'), (3804, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', 'None', 'None', '0', 'None', 'None', 'Cochin University of Science and Technology', 'Computer Science', '82.8', '100', '42'), (3805, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '166', '147', '313', '3', '99', 'SRM', 'ECE', '8.79', '10', '0'), (3806, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '640', '1440', '4', '108', 'NIT Nagpur', 'Electrical and Electronics', '8.25', '10', '0'), (3807, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', 'None', 'None', '0', 'None', 'None', 'None', 'Computer Engineering', '8.82', '10', '0'), (3808, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '168', '149', '317', '3.5', '109', 'BITS Pilani', 'Mechanical', '7.31', '10', '0'), (3809, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '670', '1470', '4', '112', 'NIT Silchar', 'EE', '8.5', '100', '0'), (3810, 'Arizona State University', '6', 'Admit', 'MS', 'Electronic and Telecommunication Engineering', 'Fall ', '2014', '167', '148', '315', '4', '106', 'Veermata Jijabai Technological Institute', 'Electronics and Telecommuniaction', '8.1', '10', '0'), (3811, 'Arizona State University', '6', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '790', '490', '1280', '3.5', '97', 'MU', 'Computer science', '70', '100', '0'), (3812, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '163', '145', '308', '3', '101', 'Nagarjuna University', 'Electronics and Computers', '8.66', '10', '0'), (3813, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '510', '1310', '3.5', '104', 'Jamia Millia Islamia', 'Computer Engineering', '7.95', '10', '0'), (3814, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '520', '1320', '3', '98', 'IEM/WBUT', 'CSE', '8.65', '100', '0'), (3815, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '169', '153', '322', '4.5', '114', 'MDU', 'Applied Electronics and Instrumentation', '74.32', '100', '0'), (3816, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '166', '155', '321', '4', '110', 'VJTI', '0', '0', '0', '20'), (3817, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '160', '148', '308', '2.5', '95', 'GITAM', 'IT', '8.85', '10', '0'), (3818, 'Arizona State University', '6', 'Admit', 'MS', 'Business Analytics', 'Fall ', '2015', '161', '151', '312', '3', 'None', 'VTU', 'Electrical and Electronics Engineering', '70', '100', '42'), (3819, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '780', '650', '1430', '3', '101', 'M.I.T.M(RGTU)', 'Computer Science', '70', '100', '0'), (3820, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '165', '152', '317', '4.5', '111', 'SSN College of Engineering', 'CSE', '8.25', '10', '0'), (3821, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '153', '314', '4', '111', 'NIT', 'CSE', '8.37', '10', '0'), (3822, 'Arizona State University', '6', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '780', '510', '1290', '3', '95', 'MU', 'IT', '62', '100', '0'), (3823, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '161', '160', '321', '4', '110', 'NIT Delhi', 'EEE', '8.38', '10', '0'), (3824, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '161', '151', '312', '4', '98', 'BITS Pilani', 'computer science', '7.08', '10', '0'), (3825, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '154', '316', '4', '106', 'Bangalore University', 'CS', '79.99', '100', '0'), (3826, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '152', '316', 'None', '102', 'CoE Trivandrum', 'Computer Science', '83', '100', '0'), (3827, 'Arizona State University', '6', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '158', '151', '309', '3.5', '100', 'SRM', 'Computer science and engineering', '6.8', '10', '0'), (3828, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '161', '142', '303', '3.5', '101', 'College of Technology Pantnagar', 'production engineering', '7.15', '10', '0'), (3829, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '550', '1330', '3', '112', 'Manipal Institue of Technology', 'Computer Science', '8.01', '10', '0'), (3830, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '1330', '540', '1870', '3', '89', 'VESIT', 'E & TC', '75', '100', '0'), (3831, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '170', '158', '328', '4.5', '116', 'K J Somaiya College of Engiineering', 'Mechanical', '61', '100', '0'), (3832, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2014', '318', '157', '475', '4.5', '113', 'The LNM Institute of Information Technology', 'Electronics and Communication', '8.75', '10', '0'), (3833, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '166', '150', '316', '3', '104', 'K J Somaiya College of Engiineering', 'MECH', '72.14', '100', '0'), (3834, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Spring ', '2013', '163', '148', '311', 'None', '103', 'RNSIT', 'Electronics and Communicati', '80', '100', '0'), (3835, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall', 'None', '160', '151', '311', '4', '107', 'None', '0', '90', '100', '0'), (3836, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '168', '155', '323', '4', '116', 'MU', 'Information Technology', '79.37', '100', '36'), (3837, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '630', '1430', '3.5', '108', 'None', 'School of Management', '0', '0', '0'), (3838, 'Arizona State University', '6', 'Admit', 'MS', 'Business Analytics', 'Fall ', '2015', '162', '158', '320', '4', '116', 'Sardar Patel College of Engineering', 'Information Technology', '65.36', '100', '28'), (3839, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '760', '550', '1310', '3', '94', 'Sir MVIT', 'Information Science', '70', '100', '0'), (3840, 'Arizona State University', '6', 'Admit', 'MS', 'Embedded systems', 'Fall ', '2013', '800', '640', '1440', '4', '104', 'None', '0', '8.83', '10', '0'), (3841, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '164', '154', '318', '4', '112', 'VTU', 'Computer Science', '71.5', '100', '0'), (3842, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '510', '1310', '4.5', '98', 'CoE Trivandrum', 'CSE', '78', '100', '0'), (3843, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '690', '1490', '4.5', '107', 'Indraprastha University', 'Electronics and Communication', '71', '100', '0'), (3844, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '164', '148', '312', '3.5', '96', 'NIT ALLAHABAD', 'Electrical Engineering', '9.05', '10', '0'), (3845, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2013', '750', '450', '1200', '4.5', '110', 'Institute of Technology Nirma University', 'Instrumentation & Control Electrical Department', '6.56', '10', '0'), (3846, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2012', '750', '590', '1340', '3', '91', 'NIT Rourkela', 'CIVIL ENGINEERING', '7.81', '10', '0'), (3847, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '170', '153', '323', '4.5', '114', 'BIT Mesra', 'Computer Science Engineering', '7.5', '10', '30'), (3848, 'Arizona State University', '6', 'Admit', 'MS', 'MIS', 'Fall ', '2014', 'None', 'None', '0', 'None', 'None', 'GITAM', 'Electrical and Electronics', '3.95', '4', '0'), (3849, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '156', '317', '5', '115', 'PESIT', 'Information Science and Engineering', '8.5', '10', '0'), (3850, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '157', '321', '4', '110', 'Model Engineering College', 'Computer Science', '80.2', '100', '0'), (3851, 'Arizona State University', '6', 'Admit', 'MS', 'CS', 'Fall ', '2014', '163', '148', '311', '3', '96', 'MSRIT', 'CSE', '8.71', '10', '0'), (3852, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '166', '152', '318', '4', '91', 'Anna University', 'Computer Science', '8.17', '10', '30'), (3853, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Spring ', '2014', '162', '153', '315', '3.5', '97', 'VTU', 'Electronics and Communications', '83', '100', '0'), (3854, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '750', '580', '1330', '3', '101', 'Pune University', 'Electonics and telecommunication', '72', '100', '0'), (3855, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '800', '490', '1290', '3.5', '106', 'NIT Durgapur', 'electronics and communication engineering', '8.5', '10', '0'), (3856, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '167', '149', '316', '4', '96', 'Mahatma Gandhi University Kerala', 'MECHANICAL ENGINEERING', '7.42', '10', '0'), (3857, 'Arizona State University', '6', 'Admit', 'MS', 'Business Analytics and Project Management', 'Fall ', '2015', '162', '151', '313', '3', '91', 'Anna University', 'Mechanical', '7.26', '10', '30'), (3858, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '168', '157', '325', '4', '114', 'Sardar Patel College of Engineering', 'Electronics', '75.3', '100', '22'), (3859, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2009', '790', '500', '1290', '3.5', '113', 'University of Mumbai', 'Electronics Engineering', '66', '100', '0'), (3860, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '163', '142', '305', '3.5', '100', 'NIT Allahabad', 'Mechanical', '9.11', '10', '0'), (3861, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2015', '165', '147', '312', '3.5', '100', 'Lakshmi Narain College of Technology', 'Computer Science and Engineering', '74.75', '100', '52'), (3862, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '790', '620', '1410', '3.5', '118', 'Anna University', 'EEE', '81', '100', '0'), (3863, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '750', '600', '1350', '3.5', '113', 'Anna University', 'EEE', '8.274', '10', '0'), (3864, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '157', '146', '303', '3', '107', 'RNSIT', 'Electronics and communication', '76.5', '100', '0'), (3865, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '165', '149', '314', '3', '95', 'Swami Vivekananda Institute Of Technology', 'Computer science', '73', '100', '0'), (3866, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '690', '540', '1230', '4', '115', 'VTU', 'Electronics and Communications Engineering', '68.76', '100', '0'), (3867, 'Arizona State University', '6', 'Admit', 'MS', 'Management Information System', 'Fall ', '2013', '48', '32', '80', '5.5', '113', 'University of Pune', 'ENTC', '0', '0', '0'), (3868, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '170', '154', '324', '3', '113', 'NIT Nagpur', 'Electronics and Communication Engineering', '7.4', '10', '24'), (3869, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '153', '315', '3.5', '111', 'VIT', 'Computer Science and Engineering', '7.88', '10', '0'), (3870, 'Arizona State University', '6', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '49', '35', '84', '6', '112', 'BITS Pilani', 'Electronics & Instrumentation', '7.13', '10', '0'), (3871, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '710', '460', '1170', '3', '101', 'VTU', 'CSE', '80.5', '100', '0'), (3872, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '162', '151', '313', '4', '109', 'VTU', 'ECE', '77', '100', '0'), (3873, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2013', '162', '156', '318', '4', '114', 'Techno India College of Technology Rajarhat (West Bengal University of Technology)', 'Electronics and Communication', '8.29', '10', '0'), (3874, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '740', '720', '1460', '6', '293', 'NITK Surathkal', 'EnC', '88', '100', '0'), (3875, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '580', '1360', '4', '112', 'VTU', 'Information Science and Engineering', '77', '100', '0'), (3876, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '152', '311', '4.5', '111', 'Sir MVIT', 'Info Science', '79.82', '100', '0'), (3877, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '161', '152', '313', '3', '108', 'West Bengal University Of Technology', 'ECE', '8.85', '10', '0'), (3878, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '770', '570', '1340', '3', '100', 'WBUT', 'A.E.I.E', '8', '100', '0'), (3879, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '690', '1490', '3.5', '111', 'VTU', 'Mechanical Engineering', '8.85', '10', '0'), (3880, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '161', '145', '306', '3.5', '105', 'R V College of Engineering', 'Mechanical Engineering', '7.65', '10', '0'), (3881, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '800', '680', '1480', '4', '108', 'R V College of Engineering', 'Electronics & Comm', '9.25', '10', '0'), (3882, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '165', '154', '319', '3.5', '111', 'Sardar Patel College of Engineering', 'Information Technology', '68.2', '100', '17'), (3883, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '160', '150', '310', '3', '7', 'Anna University', 'Mechanical Engineering', '7.5', '10', '0'), (3884, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '161', '145', '306', '3', '104', 'Anna University', 'Mechanical Engineering', '8.41', '10', '0'), (3885, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Spring ', '2013', '760', '630', '1390', '4', '114', 'NIT Tirchy', 'Electrical & Electronics', '6.83', '10', '0'), (3886, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '161', '149', '310', '3', '102', 'Sri Venkateswara College of Engineering', 'Electrical and Electronics Engineering', '8.34', '10', '0'), (3887, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '147', '309', '3', '98', 'VIT', 'School of Electronics Engineering', '9.26', '10', '0'), (3888, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '161', '148', '309', '3', '99', 'West Bengal University Of Technology', 'CSE', '7.3', '10', '90'), (3889, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall', 'None', '160', '156', '316', '4', 'None', 'None', 'ECE', '8.87', '10', '0'), (3890, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '790', '650', '1440', '3', '109', 'SGSITS', 'mechanical', '78', '100', '0'), (3891, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '165', '158', '323', '3.5', 'None', 'MU', 'computer', '68', '100', '4'), (3892, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '0', '770', '3.5', '95', 'PESIT', 'Computer SCience', '77', '100', '0'), (3893, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '400', '1200', '4', '112', 'SRM', 'Computer Science', '9.4', '10', '0'), (3894, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '500', '1280', '3', '106', 'WBUT', 'Electrical Engineering', '8.39', '10', '0'), (3895, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '164', '149', '313', '3', '101', 'NIT Durgapur', 'Computer Science', '7.8', '10', '59'), (3896, 'Arizona State University', '6', 'Admit', 'MS', 'Biomedical Engineering', 'Fall', 'None', '163', '143', '306', 'None', '104', 'GGSIPU', 'biotechnology', '0', '0', '0'), (3897, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', 'None', 'None', '0', 'None', 'None', 'Guru Gobind Singh Indraprashta University', 'INDUSTRIAL AND PRODUCTION', '74.5', '100', '0'), (3898, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '164', '152', '316', '4.5', '110', 'BITS Pilani', 'MECHANICAL', '7.31', '100', '0'), (3899, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '162', '323', '4', '114', 'VTU', 'CSE', '9.23', '10', '0'), (3900, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '630', '1420', '3.5', '117', 'SSN College of Engineering', 'ece', '80', '100', '0'), (3901, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2009', '770', '540', '1310', '4.5', '104', 'UPTU', 'Computer Science', '76', '100', '0'), (3902, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '160', '153', '313', '3.5', '95', 'SDM', 'Electrical Engineering', '8.8', '10', '0'), (3903, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '170', '151', '321', '4', '102', 'GITAM', 'ECE', '9.72', '10', '0'), (3904, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '168', '154', '322', '3.5', '105', 'NIT Warangal', 'electrical and electronics', '9.43', '10', '0'), (3905, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '490', '1290', '3', '100', 'Osmania University', 'CSE', '83', '100', '0'), (3906, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '163', '326', '3.5', '116', 'Institue of Engineering And Management', 'Computer science and Engineering', '9.22', '10', '0'), (3907, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '165', '151', '316', '3', '103', 'NIT Allahabad', 'Computer Science and Engineering', '8.7', '10', '36'), (3908, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '800', '710', '1510', '4', '116', 'D J Sanghvi', 'Electronics', '58.5', '100', '16'), (3909, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '170', '155', '325', '4', '107', 'College of Technology Pantnagar', 'ECE', '72.44', '100', '9'), (3910, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '500', '1280', '3.5', '93', 'VTU', 'Electronics and communication', '79', '100', '0'), (3911, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '161', '147', '308', '3', '98', 'Dr. Ambedkar Institute of technology', 'Information Science', '77.67', '100', '0'), (3912, 'Arizona State University', '6', 'Admit', 'MS', 'Embedded systems', 'Fall ', '2012', '800', '580', '1380', '3.5', '110', 'University of Mumbai', 'Electronics and Telecommunication', '72', '100', '0'), (3913, 'Arizona State University', '6', 'Admit', 'MS', 'CS', 'Fall ', '2014', '161', '146', '307', '3', '100', 'BMSCE', 'CS', '74.14', '100', '0'), (3914, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '158', '151', '309', '3.5', '107', "Hautes Etudes d'Ingenieur", 'Electrical Engineering', '3.3', '4', '0'), (3915, 'Arizona State University', '6', 'Admit', 'MS', 'MIS', 'Spring ', '2016', '156', '148', '304', '3', 'None', 'RMK Engineering College', 'Electronics and Instrumentation', '8.97', '10', '19'), (3916, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '790', '530', '1320', '3', '114', 'Anna University', 'Mechanical Engineering', '8.1', '10', '0'), (3917, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '730', '1530', '3.5', '114', 'CEG', 'EEE', '8.66', '10', '0'), (3918, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '155', '314', '4.5', '108', 'VTU', 'IT', '69.7', '100', '0'), (3919, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2011', '800', '620', '1420', '3.5', '117', 'NIT Nagpur', 'civil engineering', '8.96', '10', '0'), (3920, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '162', '148', '310', '3.5', '108', 'Pune University', 'E&TC;', '70', '100', '0'), (3921, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '161', '148', '309', '4', '110', 'Kalpataru Institute of Technology', 'Computer Science', '72', '100', '0'), (3922, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '620', '1420', '4', '107', 'NIT Warangal', 'CIVIL ENGINEERING', '8.45', '10', '0'), (3923, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '152', '319', '3.5', '95', 'KIIT', 'ELECTRICAL ENGINEERING', '7.74', '10', '0'), (3924, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '159', '140', '299', '3', 'None', 'SCSVMV University', 'Mechanical engineering', '9.37', '10', '0'), (3925, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '150', '310', '3.5', '101', 'Charotar University of Science and Technology', 'Information Technology', '7.82', '100', '0'), (3926, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '600', '1370', '4', '104', 'MU', 'Electronics & Telecommunication', '71', '100', '0'), (3927, 'Arizona State University', '6', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2014', '157', '153', '310', '4', '109', 'Engineering', 'Computer Science', '3.7', '100', '0'), (3928, 'Arizona State University', '6', 'Admit', 'MS', 'Business Analytics', 'Fall ', '2014', '47', '35', '82', '4.5', '106', 'Bharati Vidyapeeth', 'Chemical Engineering', '68', '100', '0'), (3929, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '170', '153', '323', '3.5', '105', 'NIT Tirchy', 'Production Engg', '7.77', '10', '34'), (3930, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '12', '720', '530', '1250', '3', '101', 'Anna University', 'mechanical', '8.7', '10', '0'), (3931, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '159', '152', '311', '4', '103', 'JNTU', 'ECE', '82.75', '100', '0'), (3932, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '750', '620', '1370', '3.5', '93', 'Anna University', 'ECE', '78', '100', '0'), (3933, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '149', '311', 'None', '93', 'Anna University', 'CSE', '8.2', '10', '0'), (3934, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '163', '154', '317', '3.5', '95', 'Pune University', 'Mechanical Engineering', '78', '100', '0'), (3935, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '620', '1410', '3', '104', 'Pondicherry Engineering College', 'cse', '7.89', '10', '0'), (3936, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2015', '168', '160', '328', 'None', 'None', 'Anna University', 'Electrical and Electronics', '81', '100', '18'), (3937, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '155', '317', '4', '113', 'Anna University', 'EEE', '9', '10', '0'), (3938, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '169', '150', '319', '4', '105', 'UPTU', 'Electrical Engineering', '76.96', '100', '0'), (3939, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '164', '154', '318', '3', '103', 'MU', 'Electronics', '70.3', '100', '0'), (3940, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '166', '332', '4', '114', 'West Bengal University Of Technology', 'Information Technology', '81.6', '100', '0'), (3941, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2007', '800', '640', '1440', '5', '287', 'SVCE', 'EEE', '85', '100', '0'), (3942, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '800', '580', '1380', '3.5', '105', 'VJTI', 'Computer Engineering', '6.4', '10', '29'), (3943, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '390', '800', '1190', '4', '107', 'Gayatri Vidya Parishad College of Engineering', 'Comp Science Engg', '76.67', '100', '0'), (3944, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering / Electrical Computer Engineering', 'Spring ', '2016', '167', '155', '322', '4', '114', 'PEC University of Technology', 'Electronics and Electrical Communication', '7.82', '10', '0'), (3945, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '710', '1490', '4', '115', 'SASTRA', 'Computer Science', '9.6', '10', '0'), (3946, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '154', '316', '4', '111', 'LD Engineering Gujarat University', 'Computer Engineering', '70', '100', '0'), (3947, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2011', '720', '460', '1180', '3.5', '111', 'Pune University', 'Electronics and Telecommunication', '70', '100', '0'), (3948, 'Arizona State University', '6', 'Admit', 'MS', 'Chemical Engineering', 'Fall ', '2013', '159', '154', '313', '4', '113', 'Sri Venkateswara College of Engineering', 'Chemical Engg', '8.4', '10', '0'), (3949, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '165', '149', '314', '3.5', '104', 'VIT', 'BTech-EEE', '8.89', '10', '24'), (3950, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '164', '160', '324', '3.5', '107', 'Manipal Institue of Technology', 'Mechanical & Manufacturing (Mechatronics)', '6.96', '10', '0'), (3951, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '640', '1440', '4', '112', 'GGSIPU', 'ECE', '66', '100', '0'), (3952, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '600', '1380', '4', '102', 'VJCET (MG University)', 'CSE', '80.34', '100', '0'), (3953, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '750', '530', '1280', '3.5', '106', 'Coimbatore Insitute of Technology', 'Mechanical Engineering', '8.37', '10', '0'), (3954, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2011', '750', '340', '1090', '2.5', '93', 'Anna University', 'EEE', '79.91', '100', '0'), (3955, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '148', '309', '3.5', '110', 'None', '0', '81', '100', '0'), (3956, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '740', '550', '1290', '4', '107', 'Crescent Engineering College', 'Electronics & Communication', '0', '0', '0'), (3957, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '169', '161', '330', '4.5', '114', 'Rajasthan Technical University', 'Computer Science Engineering', '83.1', '100', '0'), (3958, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2010', '800', '580', '1380', '3.5', 'None', 'Anna University', 'Electronics and Communication', '0', '0', '0'), (3959, 'Arizona State University', '6', 'Admit', 'MS', 'Biomedical Engineering', 'Spring ', '2014', '156', '159', '315', '3.5', 'None', 'Chaitanya Bharathi Institute of Technology', 'Biotechnology', '77', '100', '0'), (3960, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '760', '600', '1360', '3.5', '110', 'RIT Shivaji University', 'Mechanical', '74', '100', '0'), (3961, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '170', '165', '335', '4.5', '109', 'None', '0', '70', '100', '0'), (3962, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2014', '165', '152', '317', '4', '104', 'COEP', 'Civil Engineering', '7.51', '10', '21'), (3963, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '168', '161', '329', '4.5', '116', 'Manipal Institue of Technology', 'electronics and communication', '8.71', '10', '0'), (3964, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '162', '159', '321', '3.5', '108', 'PSG College of Technology', 'Electrical and electronics engineering', '9.4', '10', '0'), (3965, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '780', '590', '1370', '4', '115', 'None', '0', '0', '0', '0'), (3966, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall', 'None', '162', '150', '312', '3.5', '100', 'None', 'Electronics', '9.6', '10', '0'), (3967, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '520', '1320', '4.5', '105', 'VTU', 'E&C;', '80.44', '100', '0'), (3968, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '157', '152', '309', '4.5', '111', 'SRM', 'ECE', '9.1', '10', '0'), (3969, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '153', '311', '3.5', '106', 'Anna University', 'Electrical and Electronics', '7.53', '10', '0'), (3970, 'Arizona State University', '6', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (3971, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '167', '155', '322', '3', '101', 'Kurukshetra University', 'Computer Science', '3.26', '4', '106'), (3972, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '162', '142', '304', '3.5', '92', 'None', '0', '9.02', '10', '0'), (3973, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '162', '153', '315', '3.5', 'None', 'Manipal Institue of Technology', 'Electronics and Communication Engineering Department', '9.3', '10', '0'), (3974, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '430', '1230', '3', '93', 'DA-IICT', 'Information & Comm. Tech', '8.27', '10', '0'), (3975, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '580', '1380', '3', '87', 'Sri Jayachamarajendra College of Engineering', 'Electronics and Communication', '9.57', '10', '0'), (3976, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '167', '148', '315', '3', '82', 'BITS Goa', 'Electrical and Electronics', '8.67', '10', '0'), (3977, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '550', '1340', '3', '97', 'VTU', 'Computer Science', '80.5', '100', '0'), (3978, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '163', '151', '314', '4.5', '108', 'SRM', 'Mechatronics', '7.932', '10', '0'), (3979, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '390', '1190', '3.5', '97', 'VIT', 'Computer Science', '82', '100', '0'), (3980, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '155', '314', '3', '106', 'Indraprastha University', 'Computer Science', '81', '100', '0'), (3981, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '164', '157', '321', '4', '114', 'Indira Gandhi Institute Of Technology', 'Electronics and Communication Engineering', '79.5', '100', '0'), (3982, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '168', '155', '323', '4.5', '108', 'The LNM Institute of Information Technology', 'Electronics and Communication Engineering', '8.51', '10', '4'), (3983, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2013', '162', '150', '312', '3.5', '103', 'Sardar Vallabhbhai National Institute of Technology', 'Civil Engineering', '6.95', '10', '0'), (3984, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '580', '1380', '3.5', '107', 'NIT Durgapur', 'Electronics and Communication Engineering', '7.78', '10', '0'), (3985, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '780', '730', '1510', '4', '113', 'COEP', 'Computer Engineering', '7.95', '10', '0'), (3986, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '169', '152', '321', '3.5', '105', 'National Institue Of Technology Karnataka Surathkal', 'Computer Engineering', '8.24', '10', '0'), (3987, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '650', '550', '1200', '3', '102', 'MU', 'electrical', '64', '100', '0'), (3988, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '154', '320', '3', '104', 'VIT University', 'IT', '9.12', '10', '0'), (3989, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '164', '152', '316', '4', '106', 'R V College of Engineering', 'TELECOMMUNICATIONS', '8.75', '10', '0'), (3990, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '168', '164', '332', '4', '110', 'TSEC', 'Electronics and Telecommunication', '64.8', '100', '0'), (3991, 'Arizona State University', '6', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (3992, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '520', '1320', '3.5', '103', 'JNTU', 'EEE', '82', '100', '0'), (3993, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering/Comp Science', 'Fall ', '2013', '163', '146', '309', '3.5', '100', 'Sri Venkateswara College of Engineering', 'Computer Science and Engineering', '9.05', '10', '0'), (3994, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '164', '151', '315', '3', '92', 'PSG College of Technology', 'ECE', '8.96', '10', '0'), (3995, 'Arizona State University', '6', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2011', '690', '660', '1350', '3', '103', 'Anna University', 'Biomedical Engineering', '84', '100', '0'), (3996, 'Arizona State University', '6', 'Admit', 'MS', 'electronics', 'Fall ', '2011', '720', '490', '1210', '3', '109', 'Anna University', 'Electrical and Electronics Engineering', '85.19', '100', '0'), (3997, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '790', '640', '1430', '4.5', '112', 'Thapar University', 'Electrical Engineering', '9.23', '10', '0'), (3998, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '149', '309', '3.5', '104', 'Anna University', 'Computer Science', '74.9', '100', '0'), (3999, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '740', '1520', '4.5', 'None', 'NIT Calicut', 'Electronics & Communication', '7.49', '10', '0'), (4000, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2014', '159', '148', '307', '3.5', '98', 'Cochin University of Science and Technology', 'Computer Science And Engineering', '68.5', '100', '0'), (4001, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '157', '157', '314', '4', '110', 'MU', 'Computer Engineering', '69', '100', '0'), (4002, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '166', '153', '319', 'None', '100', 'NIT Allahabad', 'ECE', '9.08', '10', '36'), (4003, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '170', '160', '330', '4', '112', 'Jaypee Institute of Information Technology', 'Electronics and Communication', '8.6', '10', '0'), (4004, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '162', '155', '317', '3.5', '104', 'VITU', 'ECE', '7.81', '10', '0'), (4005, 'Arizona State University', '6', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2015', '164', '155', '319', '4', '110', 'None', 'Biomedical Engineering', '9.04', '10', '0'), (4006, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '167', '155', '322', '3.5', '106', 'NIT Patna', 'Computer Science', '8.24', '10', '36'), (4007, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '760', '640', '1400', '3.5', '103', 'GITAM', 'COMPUTER SCIENCE', '9.25', '10', '0'), (4008, 'Arizona State University', '6', 'Admit', 'MS', 'Computer engineering VLSI CAD', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'None', '0', '9.14', '10', '0'), (4009, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '730', '540', '1270', '3.5', '103', 'VTU', 'CS', '67', '100', '0'), (4010, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '340', '1130', '4', '103', 'None', '0', '0', '0', '0'), (4011, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '161', '152', '313', '3.5', '101', 'Punjab Technical University', 'Computer Science & Engineering', '71', '100', '0'), (4012, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '164', '152', '316', '3.5', 'None', 'JNTU', 'Mechanical', '83.1', '100', '0'), (4013, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '163', '151', '314', '4.5', '113', 'SRM', 'Electonrics and Communication', '9.52', '10', '0'), (4014, 'Arizona State University', '6', 'Admit', 'MS', 'Telecom management', 'Fall ', '2012', '790', '480', '1270', '3', '106', 'Anna University', 'ECE', '7.872', '10', '0'), (4015, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '470', '1220', '3', '92', 'CEG', 'CSE', '8.76', '10', '0'), (4016, 'Arizona State University', '6', 'Admit', 'MS', 'Business Analytics', 'Fall ', '2015', '161', '144', '305', '3.5', '95', 'SSN College of Engineering', 'Computer Science', '74', '100', '52'), (4017, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '790', '370', '1160', '3', '102', 'Anna University', 'B.Tech-Information Technology', '79', '100', '0'), (4018, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '162', '160', '322', '3', '105', 'BITS Pilani', 'ECE', '8.7', '10', '0'), (4019, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '164', '157', '321', '3.5', '111', 'CEG', 'Manufacturing', '8.96', '10', '0'), (4020, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '166', '156', '322', '3', '104', 'Gautam Buddh Technical University', 'Information Technology', '71', '100', '0'), (4021, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '166', '154', '320', '3', '109', 'Guru Nanak Dev University Amritsar', 'Electronics Technology', '7.57', '10', '11'), (4022, 'Arizona State University', '6', 'Admit', 'MS', 'CS', 'Fall ', '2013', '770', '590', '1360', '3.5', '111', 'VTU', 'ISE', '74.5', '100', '0'), (4023, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2016', '164', '155', '319', '3.5', '101', 'Dharamsinh Desai University', 'Instrumentation And Control', '9.05', '10', '0'), (4024, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '800', '660', '1460', '800', '290', 'MU', 'EE', '72', '100', '0'), (4025, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2011', '790', '670', '1460', '5', '118', 'Madras Institute of Technology', 'Electronics and Instrumentation', '8.9', '10', '0'), (4026, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2010', '780', '320', '1100', '3', '97', 'Osmania University', 'EEE', '4', '100', '0'), (4027, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '149', '310', '3.5', '107', 'VTU', 'ECE', '84', '100', '0'), (4028, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '148', '307', '3.5', '106', 'None', 'computer science', '72', '100', '0'), (4029, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '780', '650', '1430', '3.5', '113', 'Fr.C.R.I.T. Vashi', 'Electronics and Tele Comm', '0', '0', '0'), (4030, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2009', '790', '350', '1140', '3.5', '104', 'Anna University', 'IT', '82', '100', '0'), (4031, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2012', '160', '152', '312', '3.5', '106', 'CoE Trivandrum', 'Electronics and Instrumentation', '7.7', '10', '0'), (4032, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '160', '147', '307', '3', '98', 'VIT University', 'ECE', '9.03', '10', '2'), (4033, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '770', '510', '1280', '3', '113', 'Anna University', 'ECE', '76.3', '100', '0'), (4034, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '770', '680', '1450', '3', '100', 'Vidyalankar Institute of Technology', 'Electronics and Telecommunication', '70.04', '100', '0'), (4035, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '600', '1380', '3', '97', 'Panjab University', 'Electronics and communication', '72.49', '100', '0'), (4036, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '590', '1370', '3', '97', 'Sri Venkateswara College of Engineering', 'Computer Science', '8.2', '10', '0'), (4037, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '165', '149', '314', '3.5', '100', 'Sairam engg college(Anna University)', 'CSE', '7.79', '10', '30'), (4038, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '158', '151', '309', '3.5', '104', 'VTU', 'Computer Science and Engineering', '76', '100', '0'), (4039, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '147', '313', '3', '95', 'IIIT Allahabad', 'IT', '7.95', '10', '0'), (4040, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '168', '157', '325', '3', '106', 'PESIT', 'Computer Science', '8.59', '10', '9'), (4041, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '690', '1490', '4.5', '113', 'ICFAI', 'Computer Science Engineering', '9.48', '10', '0'), (4042, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '167', '165', '332', 'None', '107', 'JNTU', 'EEE WES GPA : 3.9/4.0', '78', '100', '0'), (4043, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '168', '150', '318', '3.5', '111', 'NIT Hamirpur', 'cse', '7.98', '10', '24'), (4044, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '790', '510', '1300', '4', '114', 'NIT Rourkela', 'Electronics and Communication Department', '9.45', '10', '0'), (4045, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '154', '316', '4', '112', 'Sardar Vallabhbhai National Institute of Technology', 'Computer Engineering', '68', '100', '0'), (4046, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '410', '1210', '2', '108', 'JNTU', 'ECE', '73', '100', '0'), (4047, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '165', '151', '316', '3', '93', 'SASTRA', 'ECE', '8.02', '10', '0'), (4048, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2011', '790', '640', '1430', '4', '116', 'Sri Venkateswara College of Engineering', 'Computer Science and Engineering', '79', '100', '0'), (4049, 'Arizona State University', '6', 'Admit', 'MS', 'Business Analytics', 'Fall ', '2014', '167', '149', '316', '3', '7', 'Manipal Institue of Technology', 'ECE', '6.31', '10', '0'), (4050, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '550', '1350', '3.5', '110', 'Anna University', 'ECE', '83', '100', '0'), (4051, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '530', '1320', '3', '88', 'Kakatiya University', 'ECE', '82', '100', '0'), (4052, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '163', '152', '315', '3.5', '113', 'Koneru Lakshmaiah College of Engineering', 'Electronics and Computers', '8.2', '10', '0'), (4053, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '161', '145', '306', '4', '106', 'Sapthagiri College of Engineering', 'Electronics and Communication', '76.53', '100', '0'), (4054, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '169', '153', '322', '3.5', 'None', 'Naional Institute of Technology Raipur', 'Electronics & Telecommunication', '77.1', '100', '0'), (4055, 'Arizona State University', '6', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2013', '165', '157', '322', '3', '111', 'P.U.', 'UIET B.E.-Biotechnology', '72.3', '100', '0'), (4056, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '800', '640', '1440', '3', '106', 'Sreenidhi Institute of Science & Technology', 'cse', '81.7', '100', '0'), (4057, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '760', '640', '1400', '4.5', '113', 'JNTU', 'ECE', '79', '100', '0'), (4058, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '750', '580', '1330', '3.5', '260', 'Gujarat Technological University', 'Information Technology', '71', '100', '0'), (4059, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '770', '490', '1260', '3.5', '101', 'R V College of Engineering', 'electronics', '9.28', '10', '0'), (4060, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2009', '800', '670', '1470', '4', '115', 'NIT Calicut', 'Electrical and Electronics Engg', '8.4', '10', '0'), (4061, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical / Industrial Engg.', 'Fall ', '2014', '162', '150', '312', '3.5', '94', 'Datta Meghe College of Engineering', 'mechanical', '64.33', '100', '0'), (4062, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '169', '154', '323', '4', '109', 'Jaypee Institute of Information Technology', 'Computer Science', '7.5', '10', '0'), (4063, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '169', '158', '327', 'None', '110', 'NITK Surathkal', 'Information Technology', '7.27', '10', '0'), (4064, 'Arizona State University', '6', 'Admit', 'MS', 'Chemical Engineering', 'Fall ', '2015', '162', '154', '316', '3.5', '107', 'NIT Allahabad', 'Chemical Engineering', '7.39', '10', '18'), (4065, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '780', '490', '1270', '3', '96', 'NITK Surathkal', 'EEE', '7.97', '10', '0'), (4066, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '170', '167', '337', '4', '116', 'BITS Pilani', 'Electronics and Communication', '9.47', '10', '0'), (4067, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '161', '153', '314', '4', '107', 'VIT', 'Mechanical Engineering', '8.81', '10', '0'), (4068, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '730', '570', '1300', '5', '110', 'CEC', 'CS', '83', '100', '0'), (4069, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '550', '1330', '4', '114', 'WBUT', 'Computer Science and Engineering', '8.47', '10', '0'), (4070, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2016', '167', '152', '319', '3.5', '95', 'VTU', 'EEE', '69', '100', '0'), (4071, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '1510', 'None', '1510', 'None', '116', 'SRM', 'TCE', '8.2', '10', '0'), (4072, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2012', '800', '560', '1360', '4', '111', 'JNTU', 'EEE', '81.4', '100', '0'), (4073, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '370', '1150', '3.5', '1004', 'None', '0', '0', '0', '0'), (4074, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '660', '490', '1150', '2.5', '80', 'MU', 'Production', '0', '0', '0'), (4075, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '166', '152', '318', '3.5', '110', 'Nirma Institute of Technology', 'Computer Science', '8.89', '10', '0'), (4076, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '720', '540', '1260', '3.5', '107', 'B N M Institute of Technology', 'ISE', '71.72', '100', '0'), (4077, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '580', '1340', '3', '93', 'Sardar Patel College of Engineering', 'IT', '70', '100', '0'), (4078, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '162', '152', '314', '3', '98', 'SASTRA', 'ECE', '8.37', '10', '0'), (4079, 'Arizona State University', '6', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2013', '162', '153', '315', '4.5', '111', 'None', '0', '0', '0', '0'), (4080, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '169', '146', '315', '3.5', '86', 'HUST', 'Information Technology', '7.82', '10', '0'), (4081, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '170', '146', '316', '3.5', '97', 'JNTU', 'Electronics and Communication Engineering', '87.8', '100', '0'), (4082, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '800', '540', '1340', '2.5', '100', 'UPTU', 'Electronics and Telecommunication', '69.4', '100', '0'), (4083, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2016', '160', '140', '300', '3', 'None', 's.r.k.r engineering college', 'civil engineering', '7.7', '10', '0'), (4084, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics & Communication', 'Fall ', '2011', '740', '580', '1320', '4', '113', 'Gujarat Technological University', 'Electronics & Communication', '74', '100', '0'), (4085, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '146', '309', '4', '106', 'MU', 'Computer Engineering', '76', '100', '0'), (4086, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '680', '660', '1340', '3.5', '111', 'IIT Delhi', 'CS', '8.5', '10', '0'), (4087, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2013', '163', '147', '310', '4', '110', 'Amrita School of Engineering', 'Civil', '7.29', '10', '0'), (4088, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '740', '470', '1210', '3', '87', 'Vishwakarma Institute of Technology', 'Industrial Engineering', '9.45', '10', '0'), (4089, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '164', '147', '311', '3', '93', 'BMSCE', 'Electronics and Commuications', '9.42', '10', '22'), (4090, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '153', '313', '3.5', '109', 'None', 'Information Technology', '9.19', '10', '0'), (4091, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '147', '307', '3', '95', 'Jaypee Institute of Information Technology', 'CSE', '72.5', '100', '0'), (4092, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '163', '153', '316', '3.5', '110', 'None', 'ECE', '8', '10', '0'), (4093, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '154', '318', '4', '114', 'VTU', 'CSE', '7.69', '10', '24'), (4094, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and electrical engineering', 'Fall ', '2013', '164', '149', '313', '3', '104', 'Madras Institute of Technology', 'ECE', '8.2', '10', '0'), (4095, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '450', '1250', '3.5', '100', 'NIT Warangal', 'Electronics and Communications Engineering', '7.89', '10', '0'), (4096, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '800', '460', '1260', '3', '103', 'Pune University', 'Mechanical engineering', '60', '100', '0'), (4097, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '760', '490', '1250', '3', '101', 'Madras Institute of Technology', 'ECE', '6.4', '10', '0'), (4098, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '155', '321', '3.5', '107', 'BITS Hyderabad', 'Information Systems', '7.98', '10', '0'), (4099, 'Arizona State University', '6', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '151', '159', '310', '3.5', '114', 'Amrita School of Engineering', 'Computer Science and Engineering', '7.93', '10', '0'), (4100, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '740', '1540', '4', '112', 'Pune University', 'Instrumentation and Control', '64', '100', '0'), (4101, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '450', '1250', '3.5', '100', 'VTU', 'Telecommunication engineering', '8.9', '10', '0'), (4102, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '530', '1330', '4', '109', 'VTU', 'CS', '79', '100', '0'), (4103, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '720', '1520', '4', '114', 'SJCE', 'ELECTRONICS AND COMMUNICATION', '85', '100', '0'), (4104, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '149', '310', '4.5', '100', 'SRM', 'COMPUTER SCIENCE AND ENGINEERING', '9.04', '10', '0'), (4105, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '170', '153', '323', '3.5', '90', 'Osmania University', 'ECE', '77', '100', '0'), (4106, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '159', '326', '5.5', '110', 'BNMIT', 'Electronics and communications', '86.1', '100', '0'), (4107, 'Arizona State University', '6', 'Admit', 'MS', 'CS', 'Spring ', '2015', '161', '149', '310', '4', '105', 'UPTU', 'Computer Scinece', '82.04', '100', '30'), (4108, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '800', '570', '1370', '3.5', '113', 'Govt Rajiv Gandhi Institute of Technology', 'ME', '78', '100', '0'), (4109, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '450', '1250', '3.5', '97', 'NIT Tirchy', 'INSTRUMENTATION & CONTROL ENGG', '7.98', '10', '0'), (4110, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2015', '161', '157', '318', '4.5', '114', 'NUST', 'Electrical and Power Engineering Department - Electronics Engineering', '3.13', '4', '3'), (4111, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '168', '150', '318', '3', '101', 'GGSIPU', 'ECE', '87', '100', '0'), (4112, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '720', '1520', '5.5', '118', 'None', '0', '0', '0', '0'), (4113, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '800', '710', '1510', '5', '277', 'CEG', 'ECE', '8.6', '10', '0'), (4114, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '157', '141', '298', '2.5', '97', "St Joseph's College of Engineering", 'ECE', '8.62', '10', '0'), (4115, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '154', '315', '4', '104', 'VTU', 'Computer Science', '76.65', '100', '46'), (4116, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '145', '159', '304', '3.5', '92', 'CEG', 'EEE', '7.8', '10', '0'), (4117, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Networking', 'Fall ', '2013', '800', '570', '1370', '3', 'None', 'VJTI', 'Electronics', '8.6', '10', '0'), (4118, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics & Communication', 'Fall ', '2014', '165', '145', '310', '3.5', '103', 'NIT MIZORAM', 'ECE', '8.52', '10', '0'), (4119, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '480', '1280', '3', '92', 'MU', 'Electronics', '75.86', '100', '0'), (4120, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '580', '1360', '3.5', '104', 'Jalpaiguri Govt Engg College', 'Electrical', '8.57', '10', '0'), (4121, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '800', '600', '1400', '4', '111', 'Jaypee Institute of Information Technology', 'Electronics and Communications', '8.7', '10', '0'), (4122, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '165', '152', '317', '4', '104', 'University Institute of Engineering & TEch Kurukshetra University', 'Computer Science', '74', '100', '0'), (4123, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '490', '1290', '3.5', '109', 'CEG', 'Electronics and Communication', '9.31', '10', '0'), (4124, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '800', '490', '1290', '5', '283', 'University of Bombay', 'Computer', '65', '100', '0'), (4125, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '690', '1490', '3.5', '110', 'VITS', 'ECE', '82', '100', '0'), (4126, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '670', '1470', '5.5', '117', 'BITS Goa', 'EEE', '8.62', '10', '0'), (4127, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '159', '144', '303', '3', '91', 'GITAM', 'Mechanical Engineering', '9.11', '10', '0'), (4128, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2016', '165', '146', '311', '3', '110', 'Savitribai Phule Pune University', 'Electrical Engineering', '66.5', '100', '0'), (4129, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '740', '590', '1330', '4', '110', 'None', '0', '0', '100', '0'), (4130, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '159', '140', '299', '4', 'None', 'GTU', 'IT', '7.72', '10', '0'), (4131, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2013', '159', '153', '312', '3.5', '104', 'G. H. Patel College of Engineering and Technology', 'Electrical', '7.73', '10', '0'), (4132, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '170', '149', '319', '3.5', '101', 'YMCA', 'Mechanical Engineering', '7.734', '10', '0'), (4133, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '148', '308', '3', 'None', 'BPUT', '0', '7.4', '10', '0'), (4134, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '730', '560', '1290', '4', '113', 'Sri Sairam Engineering College', 'Information technology', '90', '100', '0'), (4135, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '720', '680', '1400', '3', '106', 'VIT', 'elctronics and communication', '6.72', '10', '0'), (4136, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '400', '1200', 'None', '91', 'BITS Goa', 'Computer Science', '7.59', '10', '0'), (4137, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '670', '670', '1340', '4', '101', 'SCE', 'CSE', '3.32', '4', '0'), (4138, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '160', '153', '313', '3', 'None', 'COEP', 'Electronics and Telecom Engg.', '6.71', '10', '0'), (4139, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '390', '1190', '3', '103', 'Pune University', 'Information Technology', '68.92', '100', '0'), (4140, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '161', '157', '318', '3.5', '116', 'MU', 'Mechanical', '72.94', '100', '0'), (4141, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '162', '152', '314', '3.5', '101', 'NIT-Jaipur', 'Computer Science', '7', '10', '0'), (4142, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '163', '150', '313', '3', '102', 'IIITDM Kancheepuram', 'Computer Engineering', '8.31', '10', '0'), (4143, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '12', '800', '330', '1130', '3.5', '99', 'VIT', '0', '8.64', '10', '0'), (4144, 'Arizona State University', '6', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2011', '790', '500', '1290', '3', '100', 'GGSIPU', 'Mechanical and Automation', '75', '100', '0'), (4145, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2014', '720', '560', '1280', '3', '98', 'S.D.B.C.T', 'Computer Science', '72.06', '100', '0'), (4146, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '167', '157', '324', '4', '116', 'Delhi College Of Engineeing', 'Electrical Engg', '75.4', '100', '0'), (4147, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2014', '155', '147', '302', '3.5', '97', 'Lingayas Institute of management and technology', 'school of civi engineering', '57.7', '100', '0'), (4148, 'Arizona State University', '6', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '158', '151', '309', '3', '110', 'Pune University', 'Computer', '66', '100', '0'), (4149, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '590', '1390', '3', '102', 'GITAM', 'Electronics and Communication', '9.02', '10', '0'), (4150, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '560', '1340', '4', '108', 'Pune University', 'Electrical', '69', '100', '0'), (4151, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '146', '305', '3', '95', 'Madras Institute of Technology', 'CSE', '8.3', '10', '0'), (4152, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '157', '146', '303', '4', '110', 'Government Engineering College Thrissur Kerala', 'Mechanical Engineering', '72.5', '100', '0'), (4153, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '167', '163', '330', '4.5', '115', 'Delhi College Of Engineeing', 'Electrical and Electronics Engineering', '70.5', '100', '0'), (4154, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '151', '314', 'None', '96', 'West Bengal University Of Technology', 'Information Technology', '8.14', '10', '0'), (4155, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall', 'None', '167', '150', '317', '3.5', '110', 'KLUNIVERSITY', 'industrial', '8.3', '100', '0'), (4156, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical And Aerospace', 'Fall ', '2014', '163', '160', '323', '4.5', '113', 'University of Pune', 'Mechanical Engineering', '72', '100', '0'), (4157, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '730', '700', '1430', '3.5', '118', 'MNIT', 'electrical', '7.2', '10', '0'), (4158, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '164', '152', '316', '3', '110', 'NIT Durgapur', 'electronics and communication', '8.66', '10', '0'), (4159, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '158', '318', '4', '117', 'Pune University', 'Computer Engineering', '3.23', '4', '0'), (4160, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '770', '530', '1300', '3', '109', 'Gujarat Technological University', 'Electronics & Communication', '3.96', '4', '0'), (4161, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '168', '157', '325', '4', '116', 'Sardar Patel College of Engineering', 'Electrical Engineering', '70.22', '100', '0'), (4162, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '148', '310', '3', '91', 'Govt Model Engineering College', 'Computer Science and Engineering', '72', '100', '0'), (4163, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '159', '147', '306', '3.5', '97', 'Guru Nanak Dev University Amritsar', 'ece', '74', '100', '0'), (4164, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '153', '315', '3', '109', 'PSG College of Technology', 'IT', '9.09', '10', '19'), (4165, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '150', '313', '4', '109', 'VTU', 'CS', '70', '100', '0'), (4166, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '168', '157', '325', '3.5', '110', 'VNIT Nagpur', 'ECE', '9.1', '10', '0'), (4167, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '600', '1400', '3.5', '107', 'Sri Venkateswara College of Engineering', 'Mechanical Engineering', '78', '100', '0'), (4168, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '166', '157', '323', '4.5', '112', 'NIT Calicut', 'Mechanical Engineering', '7.4', '10', '36'), (4169, 'Arizona State University', '6', 'Admit', 'MS', 'optics', 'Fall ', '2014', '165', '160', '325', '4', '110', 'None', 'Physics', '89', '100', '0'), (4170, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '750', '600', '1350', '3.5', '100', 'SSN College of Engineering', 'EEE', '8.61', '10', '0'), (4171, 'Arizona State University', '6', 'Admit', 'MS', 'Robotics', 'Fall ', '2014', '167', '156', '323', '4', '111', 'U.V. Patel College of Engineering Ganpat University', 'Mechatronics engineering', '68.25', '100', '0'), (4172, 'Arizona State University', '6', 'Admit', 'MS', 'Embedded systems', 'Fall ', '2012', '790', '570', '1360', '3.5', '92', 'MU', 'Electronics and Telecommunication', '70.04', '100', '0'), (4173, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2009', '800', '650', '1450', '4.5', '117', 'Nirma Institute of Technology', 'Information Technology', '8.88', '10', '0'), (4174, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '172', '151', '323', '3.5', '105', 'None', '0', '0', '0', '0'), (4175, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '170', '163', '333', '4', '112', 'DU', 'ECE', '78', '100', '0'), (4176, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '160', '152', '312', '3.5', '93', 'Shri Govindram Seksaria institute of technolgy and sciences Indore', 'Electrical Engineering', '80.38', '100', '0'), (4177, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science/ Mgmt', 'Fall ', '2011', '800', '440', '1240', '3', '103', 'VIT University', 'CSE', '9.22', '10', '0'), (4178, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '159', '145', '304', '3', '91', 'JNTU', 'Information Technology', '73.25', '100', '0'), (4179, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '152', '313', '3', '101', 'UPTU', 'CS', '71', '100', '0'), (4180, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '157', '158', '315', '4.5', '116', 'NIT Karnataka', 'Computer Engineering', '6.9', '10', '0'), (4181, 'Arizona State University', '6', 'Admit', 'MS', 'environmental engineering', 'Fall ', '2012', '800', '700', '1500', '4', '112', 'CEG', 'Civil Engineering (Agricultural and Irrigation Engineering Degree)', '7.5', '10', '0'), (4182, 'Arizona State University', '6', 'Admit', 'MS', 'Electronic and Telecommunication Engineering', 'Fall ', '2012', '162', '152', '314', '3', '96', 'Sardar Patel University', 'Electronics and Telecommunication', '8.34', '10', '0'), (4183, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '720', '510', '1230', '3.5', '100', 'COEP', 'Information Technology', '8.05', '10', '0'), (4184, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '162', '151', '313', '4', '97', 'PSG College of Technology', 'Mechanical', '8.04', '10', '0'), (4185, 'Arizona State University', '6', 'Admit', 'MS', 'Chemical/Environmental Engg.', 'Fall ', '2011', '740', '440', '1180', '4', '104', 'NIT Surat', 'Chemical', '9.34', '10', '0'), (4186, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '800', '570', '1370', '3.5', '107', 'CEG', 'ECE', '8.85', '10', '0'), (4187, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engg/Robotics', 'Fall ', '2013', '155', '143', '298', '3', '90', 'RMK Engineering College', 'Electronics and Instrumentation', '72', '100', '0'), (4188, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '159', '327', '3.5', '104', 'University of Calicut', 'Computer Science', '70.1', '100', '30'), (4189, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '164', '157', '321', '3.5', '111', 'BIT Mesra', 'Electronics and Communication Engineering', '8.91', '10', '0'), (4190, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2012', '790', '560', '1350', '4', '101', 'VJTI', 'civil engineering', '7', '10', '0'), (4191, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2010', '790', '550', '1340', '3.5', '112', 'Sathyabama University', 'ICE', '78', '100', '0'), (4192, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '150', '310', '3.5', '102', 'Kurukshetra University', 'Information Technology', '70', '100', '0'), (4193, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '155', '317', '4.5', '114', 'Manipal Institue of Technology', 'Computer Science', '9.46', '10', '12'), (4194, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '157', '319', '3', '107', 'VTU', 'CS', '8.9', '10', '0'), (4195, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '600', '1400', '3.5', '102', 'NIT Tirchy', 'ELECTRONICS AND COMMUNICATION ENGINEERING', '8.53', '10', '0'), (4196, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '163', '148', '311', '3', '104', 'The LNM Institute of Information Technology', 'Communication and Computer Engineering', '7.79', '10', '0'), (4197, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '153', '314', '3', '107', 'GGSIPU', 'Computer Science', '72', '100', '0'), (4198, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2008', '800', '570', '1370', '3', '105', 'TCE', 'ECE', '8.43', '10', '0'), (4199, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '740', '610', '1350', '4', '108', 'Thiagarajar College of engineering', 'Mechanical Engineering', '8.7', '10', '0'), (4200, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2010', '800', '570', '1370', '4', '110', 'BITS Pilani', 'EEE', '8.12', '10', '0'), (4201, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '159', '150', '309', '3', '98', 'NIT Kurukshetra', 'Mechanical Engineering', '8', '10', '0'), (4202, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2014', '163', '148', '311', '3', '102', 'JNTU', 'Electronics and communication engineering', '80', '100', '0'), (4203, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '780', '520', '1300', '3.5', '108', 'PSG College of Technology', 'ECE', '9.17', '10', '0'), (4204, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2007', '800', '640', '1440', '4', '273', 'CEG', 'ECE', '8.79', '10', '0'), (4205, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering/Comp Science', 'Fall ', '2013', '164', '161', '325', '4.5', '113', 'Fr. CRIT Vashi Mumbai University', 'Computer Engineering', '74', '100', '0'), (4206, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '600', '1390', '4', '110', 'RNSIT', 'Computer Science', '76.7', '100', '0'), (4207, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '159', '150', '309', '4', '6', 'Vignan Institute of Technology and Science', 'ECE', '77', '100', '0'), (4208, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '162', '152', '314', '4', '110', 'VIT', 'Electronics and Communication Engineering', '8.89', '10', '0'), (4209, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '148', '307', '3', '104', 'Anna University', 'Computer Science', '78', '100', '0'), (4210, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '160', '150', '310', '4.5', '106', 'UVCE', 'Computer Science', '81', '100', '75'), (4211, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Spring ', '2016', '162', '153', '315', '3.5', '110', 'SASTRA', 'Mechanical Engg', '8.26', '10', '27'), (4212, 'Arizona State University', '6', 'Admit', 'MS', 'CS', 'Fall ', '2013', '150', '160', '310', '3.5', '104', 'Amrita School of Engineering', 'Information Technology', '7.1', '10', '0'), (4213, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '790', '570', '1360', '3', '120', 'BMSCE', 'CS', '81', '100', '0'), (4214, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '165', '154', '319', '3', '112', 'The LNM Institute of Information Technology', 'Computer Science', '8.5', '10', '0'), (4215, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall', 'None', '780', '590', '1370', '4', '112', 'JNTU', 'ece', '85', '100', '0'), (4216, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '790', '330', '1120', '3.5', '91', 'Sathyabama University', 'ECE', '78', '100', '0'), (4217, 'Arizona State University', '6', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (4218, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '154', '318', '4', '104', 'SK University', 'CSE', '77.8', '100', '0'), (4219, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '770', '620', '1390', '3.5', '112', 'Amrita School of Engineering', 'ECE', '7.24', '10', '0'), (4220, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '750', '530', '1280', '3', '97', 'VJTI', 'Electronics', '7.9', '10', '0'), (4221, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '166', '162', '328', '4', '113', 'NIT Tirchy', 'Mechanical', '8.38', '10', '0'), (4222, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '158', '148', '306', '3', '96', 'University of Mumbai', 'Computer Engineering', '70.4', '100', '0'), (4223, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2008', '800', '560', '1360', '3.5', '115', 'K J Somaiya College of Engiineering', 'Electronics and telecommunication', '63', '100', '0'), (4224, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '161', '151', '312', '3', 'None', 'Bharathiar University', 'Electrical and Electronics', '8', '10', '84'), (4225, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '170', '151', '321', '3.5', '109', 'BITS Pilani', 'EEE', '7.49', '10', '15'), (4226, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '151', '312', '4.5', '115', 'Amity University', 'Computer Science', '7.36', '10', '0'), (4227, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '750', '510', '1260', '3.5', '86', 'Anna University', 'Computer Science', '80.4', '100', '0'), (4228, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '161', '149', '310', '3.5', '102', 'VTU', 'Computer Science', '74.95', '100', '25'), (4229, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '760', '470', '1230', '4.5', '97', 'Pune University', '0', '70', '100', '0'), (4230, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '790', '610', '1400', '3.5', '113', 'JNTU', 'ece', '78.7', '100', '0'), (4231, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science/ Mgmt', 'Fall ', '2011', '780', '530', '1310', '3.5', '100', 'Sri manakula vinayagar engg college/Pondicherry university', 'computer science', '8.14', '10', '0'), (4232, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '165', '150', '315', '3.5', '100', 'COEP', 'I.T.', '7.65', '10', '54'), (4233, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2015', '161', '151', '312', '4', '107', 'MSRIT', 'Civil Engineering', '9.35', '10', '0'), (4234, 'Arizona State University', '6', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2014', '164', '157', '321', '4', '109', 'BITS Hyderabad', 'Mechanical Engineering', '7.25', '10', '0'), (4235, 'Arizona State University', '6', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '159', '144', '303', '2', '95', 'None', '0', '0', '0', '0'), (4236, 'Arizona State University', '6', 'Admit', 'MS', 'Computer vision/image-video processing', 'Fall ', '2014', '800', '630', '1430', '3.5', '111', 'BITS Pilani', 'Ekectrical and Electronics', '8.13', '10', '0'), (4237, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Spring ', '2015', '161', '149', '310', '3', '103', 'Anna University', 'ECE', '8.73', '10', '16'), (4238, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '800', '660', '1460', '3.5', '109', 'None', 'Electronics and Communication', '9.45', '10', '0'), (4239, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '800', '610', '1410', '4.5', '283', 'University of Madras', 'Computer Science', '76', '100', '0'), (4240, 'Arizona State University', '6', 'Admit', 'MS', 'analytics', 'Fall ', '2015', '167', '147', '314', '3.5', '103', 'K J Somaiya College of Engiineering', 'Electronics', '55', '100', '0'), (4241, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '148', '309', '3', '94', 'JSSATE India', 'CS', '72.84', '100', '0'), (4242, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '670', '520', '1190', '4', '93', 'MSRIT', 'Industrial Engineering and Management', '70.92', '100', '0'), (4243, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2013', '730', '640', '1370', '4.5', '108', 'L D College Of Engineering', 'Civil', '7.56', '10', '0'), (4244, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '170', '153', '323', '4', '106', 'IIT Roorkee', 'Electrical Engineering', '8.3', '10', '0'), (4245, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical / Industrial Engg.', 'Fall ', '2013', '160', '164', '324', '4.5', '114', 'None', 'Mechanical Engineering', '80.34', '100', '0'), (4246, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '770', '560', '1330', '4', '108', 'Anna University', 'Aeronautical Engineering', '8.33', '10', '0'), (4247, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '164', '152', '316', '3.5', '106', 'NIT Calicut', 'Mechanical Engineering', '8.48', '10', '48'), (4248, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '790', '470', '1260', '5.5', '283', 'NIT Karnataka', 'Electronics and Communication', '82', '100', '0'), (4249, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '570', '1370', '3.5', '108', 'NSS College of Engineering', 'Electronics and Communication', '79', '100', '0'), (4250, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '159', '321', '3.5', '109', 'MIT', 'EEE', '8.85', '10', '0'), (4251, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '158', '143', '301', '3', '98', 'Anna University', 'Mechanical', '7.76', '10', '0'), (4252, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '640', '1440', '4', '111', 'NITK Surathkal', 'ECE', '8.78', '10', '0'), (4253, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2011', '790', '760', '1550', '4.5', '111', 'BITS Pilani', '0', '7.9', '10', '0'), (4254, 'Arizona State University', '6', 'Admit', 'MS', 'Materials Science & Engineering', 'Fall ', '2012', '760', '530', '1290', '3.5', '109', 'NIT Warangal', 'Metallurgical and Materials Engg.', '8.5', '10', '0'), (4255, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '740', '460', '1200', '3', '91', 'MIT/ANNA UNIVERSITY', 'PRODUCTION ENGINEERING', '8.3', '10', '0'), (4256, 'Arizona State University', '6', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2014', '157', '156', '313', '3.5', '107', 'VIT', 'Biomedical EWNgineering', '8.3', '10', '0'), (4257, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '780', '340', '1120', '3', 'None', 'SSN College of Engineering', 'B.E. Mechanical Engineering', '82', '100', '36'), (4258, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '164', '141', '305', '3.5', '98', 'MU', 'Information Technology', '67.96', '100', '0'), (4259, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '550', '1340', '3.5', '100', 'Nirma Institute of Technology', 'Electronics & Communications', '8.47', '10', '0'), (4260, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '170', '151', '321', '3.5', '102', 'JNTU', 'EEE', '73', '100', '0'), (4261, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '600', '1400', '3', '112', 'NIT Calicut', 'ECE', '8.32', '10', '0'), (4262, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '164', '159', '323', '4', '109', 'MU', 'Electronics & Telecommunication', '68.88', '100', '0'), (4263, 'Arizona State University', '6', 'Admit', 'MS', 'Business Analytics', 'Fall ', '2014', '167', '157', '324', '3', '110', 'IIT', 'Electronics and Communication', '7.94', '10', '0'), (4264, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '440', '1230', '3.5', '101', 'KLCE', 'Electonics and communications', '8.68', '100', '0'), (4265, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '163', '149', '312', '3', '99', 'JNTU', 'ECE', '7.26', '10', '0'), (4266, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science/ Mgmt', 'Fall ', '2011', '800', '410', '1210', '350', '111', 'None', '0', '0', '0', '0'), (4267, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '150', '315', '3', '106', 'Sri Venkateswara College of Engineering', 'Information Technology', '78', '100', '0'), (4268, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '162', '153', '315', 'None', '103', 'PSG College of Technology', 'MECHANICAL SANDWICH', '8.71', '10', '0'), (4269, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '167', '148', '315', '3.5', '109', 'IIT Delhi', 'Electrical Engineering', '8.06', '10', '0'), (4270, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '640', '1440', '3', '100', 'CVRCE', 'ece', '81', '100', '0'), (4271, 'Arizona State University', '6', 'Admit', 'MS', 'EE / CS', 'Fall ', '2013', '800', '410', '1210', '3', '115', 'RKNEC', 'EC', '74.55', '100', '0'), (4272, 'Arizona State University', '6', 'Admit', 'MS', 'Construction Management', 'Fall ', '2013', '153', '146', '299', '3', '7', 'Osmania University', 'civil', '0', '0', '0'), (4273, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '590', '1370', '3', '98', 'CEG', 'Electronics and Communication', '7.03', '10', '0'), (4274, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '800', '550', '1350', '3.5', '102', 'None', 'CS', '72', '100', '0'), (4275, 'Arizona State University', '6', 'Admit', 'MS', 'Business Analytics', 'Fall ', '2014', '165', '155', '320', '3', '109', 'IIT (BHU) Varanasi', 'Mechanical Engineering', '7.01', '10', '0'), (4276, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics Engineering', 'Fall ', '2015', '168', '156', '324', '3', '96', 'Velammal Engineering College', 'Electronics and Communication Engineering', '9.01', '10', '0'), (4277, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '167', '146', '313', '3.5', '93', 'VTU', 'ECE', '85.5', '100', '0'), (4278, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '168', '142', '310', '3', '90', 'IIT Bhubaneswar', 'Electrcial Engineering', '8.14', '10', '0'), (4279, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '163', '152', '315', '3', '103', 'CoE Trivandrum', 'Applied Electronics and Instrumentation', '7.69', '10', '0'), (4280, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2014', '161', '152', '313', '4', '112', 'MNIT', 'Civil Engineering', '7.67', '10', '0'), (4281, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '169', '160', '329', '4', '106', 'IIT Madras', 'Engineering Physics', '0', '0', '0'), (4282, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2013', '164', '157', '321', '4', '113', 'Manipal Institue of Technology', 'EEE', '8.08', '10', '0'), (4283, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2016', '161', '146', '307', '4', '103', 'NMAM Institute of technology', 'Electronics and Communication Engineering', '8.73', '10', '0'), (4284, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '770', '610', '1380', '3.5', '112', 'NIT Bhopal', 'ECE', '8.27', '10', '0'), (4285, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '159', '147', '306', '3', '99', 'The National Institute of Engineering', 'Mechanical Engg.', '8.91', '10', '34'), (4286, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '161', '157', '318', '4.5', '105', 'University of Pune', 'Mechanical', '68', '100', '0'), (4287, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '750', '450', '1200', '4', '106', 'VTU', 'CS', '8.7', '10', '0'), (4288, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '440', '1220', '3', '96', 'Sreenidhi Institute of Science & Technology', 'Electronics & Communications', '79.6', '100', '0'), (4289, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2009', '800', '410', '1210', '3.5', '107', 'MIST JNTU -HYD', 'ECE', '0', '0', '0'), (4290, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '750', '650', '1400', '4', '110', 'Crescent Engineering College', 'CSE', '72', '100', '0'), (4291, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '730', '490', '1220', '3', '94', 'MU', 'Comp. Engg', '77', '100', '0'), (4292, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '163', '156', '319', '3.5', '107', 'VIT', 'Mechanical engineering', '8.93', '10', '29'), (4293, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '14', '161', '147', '308', '3.5', '99', 'SRM', 'CSE', '7.98', '10', '33'), (4294, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2007', '780', '370', '1150', '5', '270', 'College of Technology Pantnagar', 'Electronics and Communication Engineering', '7.922', '10', '0'), (4295, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '158', '322', '4', '105', 'BITS Pilani', 'Computer Science', '7.64', '10', '35'), (4296, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '161', '157', '318', '3.5', '95', 'AMU Aligarh', 'Mech.', '9.67', '10', '0'), (4297, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '580', '1380', '4', '107', 'MS University Baroda', 'Electronics', '78.14', '100', '0'), (4298, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2015', '169', '155', '324', '3', '99', 'NIT Kurukshetra', 'ECE', '8.53', '10', '0'), (4299, 'Arizona State University', '6', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '47', '33', '80', '4.5', '97', 'Pune University', '0', '67.3', '100', '0'), (4300, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '167', '160', '327', '4', '110', 'Amrita School of Engineering', 'ECE', '8.06', '10', '0'), (4301, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '161', '155', '316', '3.5', '103', 'None', 'Mechanical Engineering', '82.78', '100', '0'), (4302, 'Arizona State University', '6', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2013', '154', '162', '316', '4', '112', 'SWEC Hyd', 'Electronics and Instrumentation', '76', '100', '0'), (4303, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '310', '159', '469', '151', '98', 'NIT Calicut', 'Computer Science', '8.07', '10', '0'), (4304, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '159', '152', '311', '3', '100', 'Amrita School of Engineering', 'Mechanical', '8.34', '10', '0'), (4305, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '160', '151', '311', '3', '86', 'Thapar University', 'electronics and comm. engg', '9.1', '10', '0'), (4306, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '740', '560', '1300', '3.5', '106', 'HKBKCE', 'Electronics and Communication', '79', '100', '0'), (4307, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '620', '1420', '4.5', '109', 'Guru Gobind Singh Indraprashta University', 'Computer Science', '84', '100', '0'), (4308, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2016', '157', '156', '313', '3', '105', 'College Of Engg Chengannur', 'ECE', '73.2', '100', '55'), (4309, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '163', '150', '313', '3', '107', 'VIT University', 'EEE', '8.68', '10', '0'), (4310, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '590', '1350', '4.5', '115', 'Anna University', 'Electrical and Electronics/ Information Technology', '85', '100', '0'), (4311, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '162', '324', '3.5', '113', 'SASTRA', 'ICT', '8.32', '10', '24'), (4312, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '151', '316', '4.5', '110', 'VTU', 'Computer Science', '79', '100', '0'), (4313, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '740', '700', '1440', '4', '104', 'Sri Venkateswara College of Engineering', 'EEE', '77', '100', '0'), (4314, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '169', '145', '314', '4', '106', 'BNMIT', 'Electrical and Electronics', '77.32', '100', '0'), (4315, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '164', '147', '311', '3.5', '93', 'JNVU/MBM Engg College Jodhpur Rajasthan', 'CSE', '67', '100', '0'), (4316, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '166', '145', '311', '3', '100', 'None', '0', '0', '0', '0'), (4317, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2014', '800', '570', '1370', '3.5', '109', 'MSRIT', 'Electrical and Electronics', '8.74', '10', '24'), (4318, 'Arizona State University', '6', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (4319, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '670', '1470', '3.5', '113', 'R V College of Engineering', 'Electronics and Communication Engineering', '74.19', '100', '0'), (4320, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '166', '154', '320', '4.5', '108', 'NIT Allahabad', 'Computer Science and Engineering', '7.67', '10', '0'), (4321, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '470', '1240', '4', '108', 'VTU', 'Infosmation Science & Engineering', '75.67', '100', '0'), (4322, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '166', '148', '314', '3', '102', 'VIT University', 'Mechanical engineering', '9', '10', '0'), (4323, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '790', '490', '1280', '3.5', '110', 'MU', 'Mechanical', '73', '100', '0'), (4324, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2012', '750', '650', '1400', '4', '114', 'MU', 'Electronics and Telecommunication', '69', '100', '0'), (4325, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '167', '148', '315', '4', '99', 'VTU', 'Mechanical Engineering', '9.23', '10', '20'), (4326, 'Arizona State University', '6', 'Admit', 'MS', 'CS', 'Spring ', '2015', '164', '153', '317', '3.5', 'None', 'Manipal Institue of Technology', 'Information Technology', '7.67', '10', '0'), (4327, 'Arizona State University', '6', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2013', '158', '147', '305', '3', '103', 'Anna University', 'Aeronautical Engineering', '8.24', '10', '0'), (4328, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '700', '540', '1240', '3.5', '101', 'BIT Mesra', 'ECE', '0', '0', '0'), (4329, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '800', '660', '1460', '3.5', '113', 'None', '0', '73', '100', '0'), (4330, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '530', '1330', '4', '108', 'Anna University', 'Computer Science and Engineering', '81', '100', '0'), (4331, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '167', '160', '327', '4', '112', 'MU', 'CS', '68.64', '100', '0'), (4332, 'Arizona State University', '6', 'Admit', 'MS', 'Environmental Science', 'Fall ', '2014', '170', '157', '327', '4', '110', 'ISM Dhanbad', 'Environmental Science and Engineering', '7.09', '10', '0'), (4333, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '160', '150', '310', '4', '99', 'VJTI', 'Production Engineering', '8.2', '10', '36'), (4334, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '150', '311', '3.5', '101', 'WBUT', 'Information Technology', '8.38', '10', '0'), (4335, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '159', '151', '310', '3.5', '92', 'Punjab Technical University', 'ece', '78', '100', '0'), (4336, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '570', '1370', '3.5', '107', 'None', '0', '0', '0', '0'), (4337, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '800', '600', '1400', '4.5', '114', 'BITS Pilani', 'Electrical and Electronics', '8', '10', '0'), (4338, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '155', '315', '4.5', '112', 'SSN College of Engineering', 'Computer Science and Engineering', '8.04', '10', '0'), (4339, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '149', '310', '3', '99', 'Sri Jayachamarajendra College of Engineering', 'Electronics and Communication', '9.52', '10', '0'), (4340, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '640', '1440', '3', '109', 'COEP', 'Electrical', '7.73', '10', '0'), (4341, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '170', '150', '320', '3.5', '110', 'Dhirubhai Ambani Institute of Information & Communication Technology', 'Information and Communication Technology', '7.23', '10', '0'), (4342, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Spring ', '2011', '780', '570', '1350', '3.5', '112', 'Bapatla Engineering College', 'Civil Engineering', '89.9', '100', '0'), (4343, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '168', '155', '323', '3.5', '105', 'NIT Warangal', 'Electronics and Communication Engineering', '8.88', '10', '36'), (4344, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '148', '308', '3', '92', 'VTU', 'Information science & Engineering', '72', '100', '0'), (4345, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '162', '155', '317', '3', 'None', 'MU', 'Computer Engineering', '61', '100', '0'), (4346, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '620', '1420', '4', '109', 'SSN College of Engineering', 'Electronics & Communication', '89', '100', '0'), (4347, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '165', '149', '314', '3', '7', 'SRM', 'Computer Science', '8.3', '10', '0'), (4348, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '157', '153', '310', '3', '107', 'SRM', 'Electronics and instrumentation', '7.92', '10', '0'), (4349, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '540', '1320', '4', '113', 'NIT Tirchy', 'Instrumentation and Control Engineering', '8.07', '10', '0'), (4350, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '163', '323', 'None', '111', 'MU', 'Computer Engg', '72.87', '100', '0'), (4351, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '168', '156', '324', '3.5', '115', 'NITK Surathkal', 'EEE', '8.64', '10', '0'), (4352, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '165', '156', '321', '4', '116', 'M.V.S.R Engineering College', 'ECE', '87', '100', '0'), (4353, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '153', '318', '4', '104', 'CHARUSAT', 'Computer Engineering', '8.58', '10', '0'), (4354, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '510', '1310', '3', '96', 'IIT Kharagpur', 'ECE', '7.81', '10', '0'), (4355, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '168', '153', '321', '3', '108', 'NIT Surathkal', '0', '7.65', '10', '0'), (4356, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '570', '1350', '4', '108', 'SSN College of Engineering', 'Computer Science', '82.4', '100', '0'), (4357, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '600', '1390', '4', '108', 'Asansol Engineering College', 'Elctrical Engineering', '8.27', '10', '0'), (4358, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '148', '309', '3.5', '103', 'BITS Pilani', 'Information Systems', '7.6', '10', '0'), (4359, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '164', '157', '321', '3.5', '110', 'None', '0', '75', '100', '24'), (4360, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Spring ', '2013', '159', '140', '299', '2.5', '80', 'JNTU', 'ece', '63', '100', '0'), (4361, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '155', '315', '3.5', '107', 'MU', 'Computer Engineering', '3.8', '4', '0'), (4362, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '168', '155', '323', '3.5', '111', 'IIITDM Jabalpur', 'ECE', '8.8', '10', '0'), (4363, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2012', '148', '151', '299', '3.5', '112', 'MU', 'BE Civil', '0', '0', '0'), (4364, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '149', '311', '3.5', '94', 'Nagpur University', 'Computer Science', '70', '100', '0'), (4365, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '560', '1350', '3.5', '108', 'VJTI', 'Electrical Engineering', '7.3', '10', '0'), (4366, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '800', '590', '1390', '4', '287', 'MU', 'IT', '65', '100', '0'), (4367, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2010', '770', '560', '1330', '4.5', '116', 'Atharva College', 'Computer Engineering', '77', '100', '0'), (4368, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics & Communication', 'Fall ', '2012', '790', '440', '1230', '3.5', '96', 'VTU', 'ECE', '77', '100', '0'), (4369, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '167', '143', '310', '3', 'None', 'GITAM', 'ECE', '90', '100', '0'), (4370, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '750', '350', '1100', '3', '87', 'Madras Institute of Technology', 'ECE', '9.5', '10', '0'), (4371, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '780', '450', '1230', '3.5', '106', 'Punjabi University', 'Mechanical Engineering', '8.13', '10', '0'), (4372, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '168', '156', '324', '3', '98', 'SNIST', 'E.C.E', '81', '100', '0'), (4373, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'Manipal Institue of Technology', '0', '0', '0', '0'), (4374, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '157', '150', '307', '4', '105', 'MU', 'Information Technology', '73.5', '100', '0'), (4375, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '154', '315', '3', '103', 'VTU', 'Computer Science', '85', '100', '0'), (4376, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '158', '152', '310', '4', '113', 'Amrita School of Engineering', 'CSE', '8.4', '10', '0'), (4377, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '780', '680', '1460', '3', '106', 'MU', 'electronics', '79', '100', '0'), (4378, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall', 'None', '169', '152', '321', '3', '106', 'IIT Patna', 'EE', '7.6', '10', '0'), (4379, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '151', '314', '3', '103', 'PSG College of Technology', 'Computer science and Engineering', '8.3', '10', '41'), (4380, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '350', '1140', '3', '104', 'PSG College of Technology', 'Electronics and Communications', '9.17', '10', '0'), (4381, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '520', '1290', '305', '105', 'Dr Mahalingam College of Engineering and Technology', 'CSE', '80', '100', '0'), (4382, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '163', '152', '315', '4', 'None', 'NIT Nagpur', 'Electronics & Communication', '9.63', '10', '0'), (4383, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '790', '470', '1260', '3.5', '102', 'Anna University', 'CSE', '68', '100', '0'), (4384, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '163', '160', '323', '3', '106', 'Guru Gobind Singh Indraprashta University', 'Computer Science', '85.79', '100', '0'), (4385, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '720', '510', '1230', '3', '106', 'MU', 'Computer Engineering', '69', '100', '0'), (4386, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '620', '1420', '4', '112', 'PSG College of Technology', 'Information Technology', '9.05', '10', '0'), (4387, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '490', '1290', 'None', '99', 'IIITH', 'Computer Science', '8.37', '10', '0'), (4388, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '161', '153', '314', '3', '110', 'VTU', 'CSE', '83.33', '100', '38'), (4389, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '170', '163', '333', '4.5', '112', 'Netaji Subhas Institute of Technology', 'Information Technology', '72', '100', '36'), (4390, 'Arizona State University', '6', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2013', '157', '150', '307', '3', '100', 'Anna University', 'Biomedical Engineering', '8.58', '10', '0'), (4391, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '165', '150', '315', '3.5', '106', 'JNTU', 'Electronics & Communication Engineering', '76', '100', '0'), (4392, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '164', '162', '326', '4.5', 'None', 'R V College of Engineering', 'Computer Science', '72', '100', '0'), (4393, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '159', '157', '316', '3', '101', "Vidyavardhini\\'s College of Engg and Technology", 'Computer Engineering', '73.22', '100', '0'), (4394, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '170', '156', '326', '3.5', '108', 'COEP', 'Mechanical', '7.18', '10', '15'), (4395, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '163', '151', '314', '3', '106', 'Anna University', 'Information technology', '80', '100', '0'), (4396, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '157', '165', '322', '3.5', 'None', 'VTU', 'Information Science', '76', '100', '0'), (4397, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '166', '149', '315', '4', '107', 'VIT', 'ECE', '8.75', '10', '0'), (4398, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '430', '1190', '3.5', '91', 'srknec', 'electonics', '63', '100', '0'), (4399, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '167', '162', '329', '4', '100', 'Delhi University', 'Electronics and Communication', '73', '100', '0'), (4400, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '158', '318', 'None', '109', 'VTU', 'Computer Science', '81.07', '100', '0'), (4401, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '650', '1430', '4', '111', 'Rajiv Gandhi Prodyogiki Vishwavidyalaya', 'Electronics and Communication', '70', '100', '0'), (4402, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '610', '1410', '3.5', '106', 'Delhi College Of Engineeing', 'IT', '74.1', '100', '0'), (4403, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '170', '162', '332', '4.5', '116', 'Thiagarajar College of engineering', 'EEE', '8.8', '10', '0'), (4404, 'Arizona State University', '6', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '44', '31', '75', '4', '108', 'Sri Venkateswara College of Engineering', 'CSE', '75', '100', '0'), (4405, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '162', '150', '312', '3', '91', 'PSG College of Technology', 'Mechanical', '8.36', '10', '48'), (4406, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '790', '680', '1470', '5', '293', 'Model Engineering College', 'Electronics And Communication', '82', '100', '0'), (4407, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '780', '620', '1400', '4', '110', 'VIT University', '0', '8.4', '10', '0'), (4408, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '165', '150', '315', '4', '106', 'None', 'Mechanical Engineering', '9.1', '10', '0'), (4409, 'Arizona State University', '6', 'Admit', 'MS', 'CS/SE', 'Fall ', '2011', '750', '310', '1060', '3', '82', 'Sakalchand Patel College of Engg', 'Information Technology', '3.83', '4', '0'), (4410, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2015', '161', '153', '314', '4', '111', 'Sri Venkateswara College of Engineering', 'EEE', '8.8', '10', '0'), (4411, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '167', '155', '322', '4', 'None', 'SASTRA', 'Computer science and engineering', '8.48', '10', '0'), (4412, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '168', '159', '327', '4', '112', 'MNM Jain Engineering College', 'Electrical and Electronics Engineering', '90', '100', '0'), (4413, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '153', '316', '3.5', '110', 'VTU', 'Computer Science', '8.86', '10', '0'), (4414, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2013', '161', '147', '308', '3', '97', 'NIT Surat', 'Electronics Engineering', '8.02', '10', '0'), (4415, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '790', '680', '1470', '5', '293', 'D J Sanghvi', 'Computer Engineering', '66', '100', '0'), (4416, 'Arizona State University', '6', 'Admit', 'MS', 'CS', 'Fall ', '2012', '770', '490', '1260', '3', 'None', 'Madras Institute of Technology', 'IT', '7.8', '10', '0'), (4417, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '168', '152', '320', '3.5', '107', 'Medicaps Institute of Science & Technology Indore', 'Electronics & Communication', '71', '100', '0'), (4418, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '147', '309', '3', '110', 'SJCE', 'CSE', '8.86', '10', '0'), (4419, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering/Comp Science', 'Fall ', '2014', '161', '156', '317', '3', '102', 'College Of Engineering Roorkee', 'Information Technology', '71', '100', '30'), (4420, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '168', '161', '329', '4', '110', 'Jamia Millia Islamia', 'Dept of Comp Engg', '8.77', '10', '0'), (4421, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '780', '440', '1220', '3', '97', 'MU', 'Instrumentation Engineering', '65', '100', '0'), (4422, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '158', '150', '308', '4', '110', 'Coimbatore Insitute of Technology', 'ECE', '9.28', '10', '68'), (4423, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '168', '157', '325', '3', '108', 'GBPUAT Pantnagar', 'Electrical', '8.3', '10', '59'), (4424, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '730', '550', '1280', '3.5', '86', 'Anna University', 'mechanical', '78', '100', '0'), (4425, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '540', '1340', '3.5', '108', 'Manipal Institue of Technology', 'Mechanical', '8.73', '10', '0'), (4426, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '800', '640', '1440', '4', '108', 'Amrita School of Engineering', 'Electrical and Electronics', '7.73', '10', '0'), (4427, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '167', '157', '324', '4', '102', 'SASTRA', 'CSE', '6.9', '10', '0'), (4428, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '151', '149', '300', '3.5', '91', 'Iowa State University', 'Electrical Engineering', '3.5', '100', '0'), (4429, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '750', '660', '1410', '3.5', '107', 'Anna University', 'EEE', '81', '100', '0'), (4430, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '170', '153', '323', '3', '107', 'Assam Engineering College', 'Computer Science and engineering', '76', '100', '12'), (4431, 'Arizona State University', '6', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '160', '149', '309', '3', '101', 'GGSIPU', 'CSE', '79', '100', '0'), (4432, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '170', '145', '315', '3.5', '99', 'IIT Madras', 'Electrical Engineering', '7.16', '10', '0'), (4433, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '780', '620', '1400', '4', '113', 'Univ. of Pune', 'Computer Engineering', '61.55', '100', '0'), (4434, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '158', '139', '297', '3', '87', 'RTU/Government Engineering College Ajmer', 'Computer Science', '80', '100', '6'), (4435, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '164', '160', '324', '4', '114', 'VTU', 'CS', '75', '100', '0'), (4436, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '168', '152', '320', '3.5', '103', 'Sardar Patel University', 'Mechanical', '9.18', '10', '0'), (4437, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '770', '670', '1440', '6', '293', 'Anna University', 'CSE', '80', '100', '0'), (4438, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '163', '148', '311', '3', '102', 'Osmania University', 'ECE', '92', '100', '0'), (4439, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '158', '150', '308', '3.5', '107', 'VTU', 'ECE', '8.99', '10', '0'), (4440, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '360', '1160', '3', '107', 'Anna University', 'Electronics and Communication Engg', '75', '100', '0'), (4441, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '153', '148', '301', '3.5', '110', 'Sethu Institute of Technology AU', 'Instrumentation and Control Engineering', '65', '100', '0'), (4442, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '167', '156', '323', '4', '113', 'BITS Pilani', 'EEE', '6.45', '10', '25'), (4443, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '163', '141', '304', '4', '103', 'R V College of Engineering', 'Computer Science', '72', '100', '0'), (4444, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '167', '146', '313', '3.5', '95', 'B V Bhoomaraddi College of Engg & Tech (Affiliated to VTU)', 'Electronics and Communication', '76', '100', '0'), (4445, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '150', '316', '3', '103', 'Walchand College Of Engineering', 'CSE', '8.45', '10', '0'), (4446, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '800', '630', '1430', '4', '113', 'University of Mumbai', 'Electronics and Telecommunication', '73', '100', '0'), (4447, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2012', '770', '600', '1370', '3.5', '104', 'Pune University', 'Electronics and Telecom', '72.86', '100', '0'), (4448, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '151', '313', '4.5', '108', 'Shivaji University', 'Computer Science', '67', '100', '0'), (4449, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '620', '1420', '4', '108', 'NIT Bhopal', 'Computer Science and Engineering', '7.95', '10', '0'), (4450, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '162', '151', '313', '3', '101', 'Pune University', 'Computer Science', '68', '100', '25'), (4451, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '670', '1470', '4', '110', 'BITS Pilani', 'Computer Science and Engineering', '6.93', '10', '0'), (4452, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '170', '153', '323', '3.5', '90', 'Osmania University', 'ECE', '77', '100', '0'), (4453, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '162', '153', '315', '4', '104', 'Bangalore Institute of Technology', 'Electronics and Communication', '72.86', '100', '0'), (4454, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '540', '1310', '3.5', '98', 'SSN College of Engineering', 'IT', '77', '100', '0'), (4455, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '163', '153', '316', '3.5', '101', 'GGSIPU', 'Computer science and Engg', '73.4', '100', '0'), (4456, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '560', '1360', '3', '107', 'Anna University', 'Electronics and Communication', '8.9', '10', '0'), (4457, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2012', '780', '500', '1280', '3.5', '92', 'BIT Mesra', 'Electical and Electronics Engineering', '6.28', '10', '0'), (4458, 'Arizona State University', '6', 'Admit', 'MS', 'Information Security', 'Fall ', '2011', '770', '520', '1290', '3', '105', 'NIT Patna', 'IT', '9.18', '10', '0'), (4459, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '161', '328', '3', '103', 'COEP', 'Instrumentation and Control', '9.38', '10', '12'), (4460, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '750', '650', '1400', '3.5', '110', 'SASTRA', 'CSE', '9.1', '10', '0'), (4461, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '560', '1360', '3', '104', 'None', '0', '67', '100', '0'), (4462, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '480', '1280', '2.5', '81', 'G.Narayanamma Institute of Technology and Science', 'computer science', '78', '100', '0'), (4463, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2011', '800', '580', '1380', '4.5', '117', 'Osmania University', 'Electronics and Communication Engg.', '79', '100', '0'), (4464, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '750', '560', '1310', '4', '112', 'Faculty of Technology Dharmsinh Desai University', 'Computer Engineering', '68', '100', '0'), (4465, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '170', '148', '318', '3.5', '101', 'Nirma Institute of Technology', 'Electronics and communication', '8.28', '10', '0'), (4466, 'Arizona State University', '6', 'Admit', 'MS', 'Civil and Environmental Engg', 'Fall ', '2015', '164', '149', '313', '4', '113', 'Pondicherry University', 'Civil Engg', '7.7', '10', '0'), (4467, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2013', '164', '153', '317', '4', '108', 'RGTU', 'Electronics & Communication Engineering', '75', '100', '0'), (4468, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '168', '153', '321', '3.5', '108', 'NIT Rourkela', 'Electrical', '8.74', '10', '0'), (4469, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '154', '316', '3.5', '107', 'WBUT', 'CSE', '8.4', '10', '0'), (4470, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '161', '326', '3.5', '108', 'Jadavpur University', 'Information Technology', '8.99', '10', '0'), (4471, 'Arizona State University', '6', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2014', '161', '154', '315', '4', '110', 'NUAA', '0', '4.3', '5', '0'), (4472, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '163', '157', '320', '3', '100', 'ACCET', 'Electronics and Coomunication', '80.04', '100', '45'), (4473, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '149', '309', '4', '114', 'COEP', 'Information Technology', '9.04', '10', '0'), (4474, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '580', '1380', '3', '92', 'None', '0', '0', '0', '0'), (4475, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '167', '157', '324', '4.5', '110', 'NIT Calicut', 'Mechanical Engineering', '7.11', '10', '0'), (4476, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '151', '310', '3', '89', 'JNTU', 'Computer Science & Engineering', '78.45', '100', '0'), (4477, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '670', '1470', '4', '108', 'VJTI', 'CS', '7.5', '10', '0'), (4478, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '161', '154', '315', '4.5', '106', 'MU', 'Information Technology', '67.23', '100', '24'), (4479, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '163', '149', '312', '3', '108', 'BMSCE', 'ECE', '8.9', '10', '0'), (4480, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '170', '155', '325', '3.5', '97', 'ISM Dhanbad', 'ELECTRONICS ENGINEERING', '7.06', '10', '0'), (4481, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '163', '146', '309', '3.5', '107', 'PSG College of Technology', 'Electronics and Communication', '9.24', '10', '0'), (4482, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '800', '550', '1350', '4.5', '280', 'G.B. Pant Univ of Agril. & Tech.', 'Computer Engineering', '72.3', '100', '0'), (4483, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '160', '319', '4', 'None', 'RGPV', 'Computer Science', '71', '100', '0'), (4484, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '157', '319', '4', '112', 'PESIT', 'Computer science and Engineering', '8.21', '10', '25'), (4485, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '159', '151', '310', '3', 'None', 'VTU', 'Electronics and communication', '8.9', '10', '0'), (4486, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '770', '660', '1430', '3', '111', 'None', 'Electrical and Electronics Engineering', '8.73', '10', '0'), (4487, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '164', '139', '303', '3', '90', 'JNTU', 'ELECTRONICS AND COMMUNICATION ENGINEERING', '74.44', '100', '0'), (4488, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '770', '470', '1240', '4', '108', 'JNTU', 'Electronics and Computer Engineering', '83.1', '100', '36'), (4489, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '161', '155', '316', '4', '107', 'Sri Sairam Engineering College', 'Instrumentation and Control Engineering', '77', '100', '27'), (4490, 'Arizona State University', '6', 'Admit', 'MS', 'Business Analytics', 'Fall ', '2014', 'None', 'None', '0', 'None', 'None', 'NIT Tirchy', '0', '0', '0', '0'), (4491, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall', 'None', '151', '159', '310', '3', '107', 'NIT Tirchy', 'Production Engg', '7.37', '10', '0'), (4492, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '163', '147', '310', '4', '88', 'NITK Surathkal', 'ECE(Mtech)', '7.33', '10', '0'), (4493, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '460', '1240', '2.5', '95', 'Manipal Institue of Technology', 'Electronics and Communication', '8.69', '10', '0'), (4494, 'Arizona State University', '6', 'Admit', 'MS', 'None', 'Spring ', '2016', '163', '146', '309', '2.5', 'None', 'SRM', 'computer science and engineering', '8', '10', '30'), (4495, 'Arizona State University', '6', 'Admit', 'MS', 'Information technology management', 'Spring ', '2013', '165', '154', '319', '4', '107', 'Rajiv Gandhi Prodyogiki Vishwavidyalaya', 'Computer Science', '73.72', '100', '0'), (4496, 'Arizona State University', '6', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2013', '164', '149', '313', '3.5', '95', 'Anna University', 'computer science', '81', '100', '0'), (4497, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '680', '1480', '4.5', '115', 'Amrita School of Engineering', 'ECE', '8.32', '10', '0'), (4498, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '720', '1520', '3.5', '106', 'DU', 'EE', '71', '100', '0'), (4499, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '162', '150', '312', '3', '107', 'VTU', 'Electronics & communication', '9.25', '10', '0'), (4500, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '150', '312', '3', '99', 'CBIT', 'CSE', '89', '100', '0'), (4501, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '160', '145', '305', '3', '98', 'Anna University', 'Mechanical Engineering', '8.2', '10', '0'), (4502, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2011', '790', '560', '1350', '3', '102', 'Velammal Engineering College', 'ECE', '80', '100', '0'), (4503, 'Arizona State University', '6', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (4504, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '730', '1530', '3.5', '108', 'CBIT', 'EEE', '81.3', '100', '0'), (4505, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '168', '147', '315', '3.5', '99', 'None', 'Computer Science', '9.74', '10', '0'), (4506, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '160', '151', '311', '3', '101', 'UPTU', 'Information Techonoly', '76.28', '100', '36'), (4507, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '152', '314', '3', 'None', 'None', 'CSE', '8.23', '10', '24'), (4508, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '147', '307', '3', '92', 'NIT Warangal', 'Chemical Engineering', '8.36', '10', '0'), (4509, 'Arizona State University', '6', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2011', '680', '520', '1200', '3.5', '101', 'Maulana Azad National Institute of Technology', 'Bioinformatics', '8.04', '10', '0'), (4510, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '162', '154', '316', '4', '115', 'University of Calicut', 'Electronics and Communication', '9.54', '10', '0'), (4511, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '159', '144', '303', '3', '96', 'Symbiosis Institute of Technology', 'Mechanical', '2.984', '4', '0'), (4512, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '610', '1400', '4', '114', 'PICT', 'Computer Engineering', '3.5', '4', '0'), (4513, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '167', '158', '325', '3', '110', 'VIT University', 'Mechanical', '8.73', '10', '0'), (4514, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '600', '1370', '4', '105', 'Pune University', 'Computer', '64.24', '100', '0'), (4515, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '780', '500', '1280', '4', '100', 'Maharaja Agrasen Institute Of Technology', 'Electronics and communication', '74', '100', '0'), (4516, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '770', '510', '1280', '3.5', '94', 'BITS Pilani', '0', '8.17', '10', '0'), (4517, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'Bangalore Institute of Technology', 'Information Science', '78.8', '100', '0'), (4518, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '800', '620', '1420', '4.5', '108', 'VJTI', 'electrical', '8', '10', '0'), (4519, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '164', '153', '317', '4', '109', 'Amrita School of Engineering', 'ECE', '8.88', '10', '0'), (4520, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics & Communication', 'Fall ', '2013', '162', '151', '313', '4', '99', 'VIT', 'Electronics & Communication', '8.76', '10', '0'), (4521, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '720', '380', '1100', '3.5', '88', 'Anna University', 'Computer Science', '8', '10', '0'), (4522, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '150', '315', '3.5', '109', 'UPTU', 'Computer Science', '73.12', '100', '0'), (4523, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '163', '149', '312', '3.5', '93', 'Maharishi Dayanand University', 'Computer Science', '75', '100', '0'), (4524, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2010', '770', '530', '1300', '4.5', '118', 'Anna University', 'Electronics and Communication Engineering', '73', '100', '0'), (4525, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '520', '1300', '3', '104', 'U.P Technical University', 'Computer Science', '62', '100', '0'), (4526, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '770', '490', '1260', '3.5', '95', 'RNSIT', 'Electronics and Comm', '77', '100', '0'), (4527, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '420', '1200', '4', '100', 'MSRIT', 'Electronics & Communications', '79', '100', '0'), (4528, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '165', '158', '323', '2.5', '100', 'NIT Rourkela', 'Mechanical Engg.', '8.17', '10', '0'), (4529, 'Arizona State University', '6', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2013', '158', '157', '315', '4.5', '110', 'Moscow Aviation Institute(National Research University) Moscow Russia', 'Aerospace', '4.3', '5', '0'), (4530, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2016', '165', '152', '317', '4', '109', 'NIT Tirchy', 'Electrical & Electronics Engineering', '7.7', '10', '36'), (4531, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '166', '155', '321', '4', 'None', 'VTU', 'CS', '76', '100', '0'), (4532, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '163', '156', '319', '4', '119', 'National Insititute of Technology Karnataka', 'Electrical Engineering', '7.13', '10', '0'), (4533, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '500', '1250', '3', 'None', 'LNMIIT', 'computer science', '7.93', '10', '0'), (4534, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '800', '620', '1420', '3.5', '101', 'UIET Panjab University', 'Computer science', '72.7', '100', '0'), (4535, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '170', '143', '313', '4', '97', 'MU', 'Computer Engineering', '74', '100', '0'), (4536, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '166', '153', '319', '4', 'None', 'Anna University', 'ece', '7.04', '10', '0'), (4537, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '154', '313', '3.5', 'None', 'JSSATE', 'InformationScience', '67', '100', '0'), (4538, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '800', '610', '1410', '4', '109', 'PEC University of Technology', 'Mechanical Engineering', '8.61', '10', '0'), (4539, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '168', '157', '325', '4.5', '115', 'R V College of Engineering', 'Electronics and Communication', '9.06', '10', '0'), (4540, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '164', '150', '314', '3.5', '109', 'BITS Pilani', 'E&I;', '7.4', '10', '0'), (4541, 'Arizona State University', '6', 'Admit', 'MS', 'CS', 'Fall ', '2015', '161', '155', '316', '4', '100', 'VTU', 'Computer Science', '73', '100', '61'), (4542, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2011', '720', '580', '1300', '3.5', '106', 'VTU', 'EEE', '78.86', '100', '0'), (4543, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '161', '147', '308', '3.5', '113', 'MSRIT', 'Information Science', '9.31', '10', '24'), (4544, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '150', '315', '4', '94', 'FCRIT', 'IT', '77.7', '100', '0'), (4545, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '161', '158', '319', '4.5', 'None', 'VTU', 'Industrial Engg. & Management', '73', '100', '0'), (4546, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '170', '152', '322', '4', '110', 'VIT University', 'Energy Division', '8.62', '10', '0'), (4547, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '780', '460', '1240', '3', '92', 'JNEC', 'CS', '66', '100', '0'), (4548, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '155', '316', '3.5', '112', 'K J Somaiya College of Engiineering', 'EXTC', '70', '100', '0'), (4549, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '164', '143', '307', '3', '94', 'NITK Surathkal', 'Mechanical Engineering', '7.41', '10', '0'), (4550, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '164', '155', '319', '3.5', '99', 'Osmania University', 'Computer Science', '78', '100', '0'), (4551, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '430', '1210', '4', '105', 'VTU', 'CS', '75.2', '100', '0'), (4552, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '163', '151', '314', '4.5', '108', 'Sri Jayachamarajendra College of Engineering', 'EEE', '9.4', '10', '17'), (4553, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '167', '157', '324', '3.5', '102', 'None', 'Mechanical', '80', '100', '29'), (4554, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '770', '640', '1410', '5.5', '283', 'NIT Calicut', 'ECE', '9.2', '10', '0'), (4555, 'Arizona State University', '6', 'Admit', 'MS', 'MIS', 'Fall', 'None', '162', '150', '312', 'None', '100', 'Nirma Institute of Technology', 'ECE', '7.74', '10', '0'), (4556, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '165', '158', '323', '3.5', '112', 'Dharamsinh Desai University', 'computer engineering', '8.3', '10', '12'), (4557, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '167', '152', '319', '4', '101', 'BITS Goa', 'Computer Science', '8.76', '10', '0'), (4558, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '670', '1430', '3.5', '107', 'JNTU', 'ECE', '78', '100', '0'), (4559, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '550', '1350', '3', '104', 'JNTU', 'EIE', '73', '100', '0'), (4560, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '500', '1270', '3.5', '104', 'PSG College of Technology', 'CS', '9.43', '10', '0'), (4561, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '610', '1410', '3.5', '108', 'VTU', 'Computer Science', '75', '100', '0'), (4562, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '770', '450', '1220', '3', '88', 'Sir MVIT', 'EC', '8.2', '100', '0'), (4563, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '154', '315', '3.5', 'None', 'Osmania University', 'I.T', '86', '100', '34'), (4564, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '710', '1500', '4.5', 'None', 'D J Sanghvi', 'IT', '67', '100', '0'), (4565, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '570', '1330', '3', '109', 'VTU', 'Electronics and Communication', '74', '100', '0'), (4566, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '750', '620', '1370', '4.5', '100', 'VESIT', 'Electronics and Telecomm.', '78', '100', '0'), (4567, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '770', '280', '1050', '3.5', '97', 'JNTU', 'Mechanical Engineering', '84.8', '100', '0'), (4568, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '580', '1360', '4', '113', 'RNSIT', 'ISE', '75', '100', '0'), (4569, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and computer science', 'Fall ', '2011', '1460', '670', '2130', '4', '114', 'University Institute of Engineering and Technology Kurukshetra University', 'Electronics and Communication', '71.11', '100', '0'), (4570, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '800', '530', '1330', '4', '280', 'NIT Tirchy', 'ECE', '8.2', '10', '0'), (4571, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '149', '312', '4', '106', 'YMCA', 'Information Technology', '8.27', '10', '0'), (4572, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '161', '148', '309', '3', '102', 'R V College of Engineering', 'Information Science', '9.05', '10', '40'), (4573, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '142', '305', '3', 'None', 'Panjab University', 'ECE', '65.38', '100', '0'), (4574, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '168', '156', '324', '3', '103', 'IIIT Allahabad', 'ECE', '9', '10', '0'), (4575, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '318', '155', '473', '163', '107', 'JNTU', 'Electronics and communications', '86.12', '100', '0'), (4576, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2014', '160', '143', '303', '3', '6', 'LDCE', '0', '7.2', '10', '0'), (4577, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '164', '154', '318', '3', 'None', 'CEG', 'ECE', '9.62', '10', '24'), (4578, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '161', '152', '313', '3.5', '109', 'Amrita Vishwa Vidhyapeetham', 'EEE', '9.16', '10', '24'), (4579, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '790', '570', '1360', '3.5', '116', 'JNTU', 'Electronics and Communication', '81', '100', '0'), (4580, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '780', '510', '1290', '2.5', 'None', 'Anna University', 'EEE', '8.01', '10', '0'), (4581, 'Arizona State University', '6', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2013', '170', '162', '332', '4.5', '118', 'IIT Madras', 'Aerospace', '9.4', '100', '0'), (4582, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '162', '152', '314', '4.5', '109', 'Pune University', 'Electronics', '58', '100', '0'), (4583, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '170', '160', '330', '4.5', '110', 'IIITDM Kancheepuram', 'Eledctronics Design and Manufacturing', '9.25', '10', '18'), (4584, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Spring ', '2012', '790', '530', '1320', '3.5', '101', 'IIT Guwahati', 'Mech', '7.65', '10', '0'), (4585, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '760', '520', '1280', '4', '104', 'Amrita School of Engineering', 'ece', '8.02', '10', '0'), (4586, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '730', '560', '1290', '4', '108', 'JNTU', 'CSE', '76', '100', '0'), (4587, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '162', '157', '319', '4', '110', 'Gujarat Technological University', 'Mech', '8.3', '10', '0'), (4588, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '166', '156', '322', '3.5', '109', 'Veermata Jijabai Technological Institute', 'Computer Technology', '8.3', '10', '22'), (4589, 'Arizona State University', '6', 'Admit', 'MS', 'HCI / CS', 'Fall ', '2013', '157', '151', '308', '4.5', '109', 'Loyola College', 'Visual communications', '0', '0', '0'), (4590, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '149', '312', '3.5', '97', 'Pune University', 'Computer Engineering', '71', '100', '0'), (4591, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and computer science', 'Fall ', '2011', '800', '540', '1340', '3', '107', 'University of Mumbai', 'Electronics', '73.08', '100', '0'), (4592, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '154', '314', '2.5', '91', 'SSN College of Engineering', 'IT', '79.2', '100', '0'), (4593, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '162', '152', '314', '4', '106', 'NMIMS', 'IT', '3.04', '4', '0'), (4594, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '161', '159', '320', '4', '117', 'Datta Meghe College of Engineering', 'Mechanical Engineering', '70.5', '100', '0'), (4595, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '168', '161', '329', '3.5', '117', 'MU', 'Production Engineering', '74.8', '100', '0'), (4596, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '580', '1370', '3', '83', 'Sinhgad College of Engineering', 'CS', '74', '100', '0'), (4597, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2013', '770', '540', '1310', '4', '109', 'VTU', 'Civil Engineering', '7.46', '10', '0'), (4598, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '790', '400', '1190', '3', '102', 'VIT', 'Electronics', '8.52', '10', '0'), (4599, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '168', '149', '317', '4', '105', 'IIT BHU', 'Electrical Engineering', '7.68', '10', '10'), (4600, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '162', '157', '319', '3.5', 'None', 'Arizona State University', 'Electrical Engineering', '3', '4', '0'), (4601, 'Arizona State University', '6', 'Admit', 'MS', 'Chemical Engineering', 'Fall ', '2013', '162', '150', '312', '3', '100', 'VIT Pune', 'CHEMICAL ENGINEERING', '8.5', '10', '0'), (4602, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical & Computer Engg/MIS/Industrial/Systems Engg', 'Fall ', '2012', '166', '158', '324', '3', '111', 'Amrita Vishwa Vidhyapeetham', 'Electronics & Intrumentation', '8.04', '10', '0'), (4603, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '165', '155', '320', '4', '105', 'IIT Patna', 'Department of EEE', '8.23', '10', '0'), (4604, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '580', '1360', '4', '104', 'University of Mumbai', 'Computer Engineering', '65', '100', '0'), (4605, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '145', '305', '3', '100', 'VTU', 'Computer Science', '74', '100', '0'), (4606, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '166', '158', '324', '3', '105', 'RGPV', 'Information Technology', '77.09', '100', '0'), (4607, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (4608, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (4609, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '165', '151', '316', '3.5', '100', 'None', '0', '71.75', '100', '42'), (4610, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2014', '160', '146', '306', '3', '99', 'NIT Surat', 'Mechanical', '7.39', '10', '0'), (4611, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '570', '1370', '3.5', '104', 'JNTU', 'ECE', '84', '100', '0'), (4612, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '162', '149', '311', '3', 'None', 'JNTU', 'Computer Science and Engineering', '73', '100', '36'), (4613, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2015', '163', '140', '303', '3', '88', 'Sree Vidyanikethan Engineering College', 'Civil Engineering', '76.2', '100', '0'), (4614, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2011', '800', '550', '1350', '3.5', '102', 'VTU', 'CSE', '86', '100', '0'), (4615, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2011', '800', '540', '1340', '3.5', '107', 'NIT Trichy', 'CSE', '7.31', '10', '0'), (4616, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '155', '143', '298', '3', 'None', 'Coimbatore Insitute of Technology', 'mechanical', '7.7', '10', '0'), (4617, 'Arizona State University', '6', 'Admit', 'MS', 'CS', 'Fall ', '2013', '161', '152', '313', '3.5', '104', 'Madras Institute of Technology', 'Information Technology', '7.5', '10', '0'), (4618, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '480', '1260', '3.5', '98', 'West Bengal University Of Technology', 'Electrical Engg.', '8.36', '10', '0'), (4619, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '150', '313', '3', '97', 'None', '0', '0', '0', '0'), (4620, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '161', '148', '309', '3', '107', 'PESIT', 'Electronics and Communication', '8.94', '10', '31'), (4621, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '540', '1330', '3', '101', 'R V College of Engineering', 'ECE', '76.57', '100', '0'), (4622, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '770', '650', '1420', '4', '110', 'Birla Vishvakarma Mahavidyalaya', 'CS', '9.19', '10', '0'), (4623, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '170', '152', '322', '3', '100', 'RVR & JC College of Engineering', 'electrical and electronics engineering', '83.69', '100', '0'), (4624, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '158', '152', '310', '3.5', '111', 'None', 'ECE', '90.04', '100', '0'), (4625, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '161', '153', '314', '3', '104', 'Bangalore Institute of Technology', 'Computer Science', '73', '100', '12'), (4626, 'Arizona State University', '6', 'Admit', 'MS', 'analytics', 'Fall ', '2013', '155', '150', '305', '3.5', '107', 'Nagpur University', '0', '0', '0', '0'), (4627, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2015', '167', '157', '324', '4', '108', 'Anna University', 'ECE', '9', '10', '0'), (4628, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '165', '159', '324', '4', '112', 'NIT Rourkela', 'Electronics and Communication', '8.18', '10', '0'), (4629, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '770', '420', '1190', '3', '99', 'Sri Venkateswara College of Engineering', 'Electrical And Electronics Engineering', '75', '100', '0'), (4630, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '151', '314', '3', 'None', 'IIIT Allahabad', 'IT', '8.78', '10', '18'), (4631, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '570', '1340', '3', '100', 'West Bengal University Of Technology', 'CSE', '8.44', '10', '0'), (4632, 'Arizona State University', '6', 'Admit', 'MS', 'CS', 'Fall ', '2015', '163', '153', '316', '3', '101', 'GGSIPU', 'CSE', '75.6', '100', '18'), (4633, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '166', '158', '324', '3.5', '114', 'Maharaja Agrasen Institute Of Technology', 'ECE', '72.6', '100', '2'), (4634, 'Arizona State University', '6', 'Admit', 'MS', 'Manufacturing Engineering', 'Fall ', '2012', '163', '148', '311', '3', '105', 'BVP Pune', 'production', '77', '100', '0'), (4635, 'Arizona State University', '6', 'Admit', 'MS', 'Materials Science & Engineering', 'Fall ', '2013', '163', '156', '319', '4', '109', 'VIT University', 'Mechanical', '8.98', '10', '0'), (4636, 'Arizona State University', '6', 'Admit', 'MS', 'EE / CS', 'Fall ', '2013', '167', '159', '326', '3.5', '109', 'Pune University', 'Electronics and Telecommunications', '78.78', '100', '36'), (4637, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '164', '147', '311', '3.5', '101', 'DA-IICT', 'ICT', '8.2', '10', '0'), (4638, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '750', '580', '1330', '3.5', '101', 'Bharati Vidyapeeth', 'EEE', '69.38', '100', '0'), (4639, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '162', '152', '314', '4', '109', 'SRM', 'Electrical and Electronics', '9.8', '100', '0'), (4640, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Spring ', '2016', '161', '152', '313', '3.5', 'None', 'University of Bristol', 'Civil Engineering', '3.2', '4', '0'), (4641, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '440', '1240', '3', '96', 'Dhirubhai Ambani Institute of Information & Communication Technology', 'Computer Science', '9.17', '10', '0'), (4642, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '790', '690', '1480', '5', '290', 'MU', 'Information Technology', '70', '100', '0'), (4643, 'Arizona State University', '6', 'Admit', 'MS', 'Materials Science & Engineering', 'Fall ', '2015', '164', '161', '325', '4', '112', 'COEP', 'Metallurgy and Material Science', '8.71', '10', '0'), (4644, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '143', '305', '3', '92', 'JBIT (Afflliated to JNTU)', 'Information Technology', '71.75', '100', '0'), (4645, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2007', '800', '650', '1450', '5', '297', 'PESIT', 'Electronics & Communication', '82.3', '100', '0'), (4646, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2007', '750', '560', '1310', '4.5', '273', 'GRIET', 'ECE', '70', '100', '0'), (4647, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '650', '1450', '4', '109', 'Dhirubhai Ambani Institute of Information & Communication Technology', 'Information & Communication Technology', '9.35', '10', '0'), (4648, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '161', '329', '4', '114', 'Institute of Technical Education and Research', 'Computer Science', '9.1', '10', '0'), (4649, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '165', '156', '321', '3', '114', 'BMSCE', 'Telecom', '9.5', '10', '18'), (4650, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '730', '570', '1300', '3', 'None', 'KIIT', 'ELECTRICAL ENGINEERING', '8.5', '10', '0'), (4651, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '770', '550', '1320', '3.5', '94', 'Madhav Institue of Technology and Science R.G.P.V. Bhopal', 'Electrical Engineering', '73.43', '100', '0'), (4652, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '770', '550', '1320', '3.5', '94', 'Madhav Institute of Technology & Science Gwalior', 'Electrical Engineering', '73.43', '100', '0'), (4653, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '760', '530', '1290', '3', '91', 'IIT Allahabad', 'Information Technology', '8.11', '10', '0'), (4654, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '165', '155', '320', '3', '96', 'VJTI', 'ETRX', '8.7', '10', '0'), (4655, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '161', '323', '4', '113', 'VIT', 'School of Electrical Sciences', '8.17', '10', '0'), (4656, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '165', '151', '316', '3.5', '111', 'Govt. College Of Engg. Aurangabad', 'Computer Science', '80.5', '100', '0'), (4657, 'Arizona State University', '6', 'Admit', 'MS', 'CS', 'Fall ', '2013', '159', '146', '305', '3', '91', 'University of Pune', 'Computer Science', '63', '100', '0'), (4658, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '149', '311', '3.5', 'None', 'Manipal Institue of Technology', 'Computer Science', '7.97', '10', '24'), (4659, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '163', '147', '310', '3', '106', 'PSG College of Technology', 'Production Engineering', '8.46', '10', '0'), (4660, 'Arizona State University', '6', 'Admit', 'MS', 'Materials Science & Engineering', 'Fall ', '2015', '166', '160', '326', '4', 'None', 'PEC University of Technology', 'Materials and Metallurgical Engineering', '7.5', '10', '2'), (4661, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '169', '157', '326', '4', '112', 'BITS Pilani', 'Electronics & Instrumentation', '7.5', '10', '0'), (4662, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring', 'None', '167', '149', '316', '2.5', '90', 'NIT Warangal', 'ECE', '7.36', '10', '26'), (4663, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '159', '149', '308', '3', '104', 'VTU', 'ECE', '81.23', '100', '0'), (4664, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '460', '1220', '3.5', '102', 'PSG College of Technology', 'Computer Science', '8.61', '10', '0'), (4665, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '580', '1380', '3.5', '101', 'NIT Silchar', 'CSE', '8.23', '10', '0'), (4666, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '149', '312', '3', '105', 'University of Mumbai', 'Computer Engineering', '67.68', '100', '6'), (4667, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '163', '150', '313', '3.5', '98', 'SSN College of Engineering', 'Computer science', '8', '10', '25'), (4668, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '730', '510', '1240', '3', '104', 'Sri Siddhartha Institute of technology', 'Information Science', '9.24', '10', '0'), (4669, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '770', '470', '1240', '3', '94', 'VIT University', 'B.Tech - IT', '8.87', '10', '0'), (4670, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2011', '800', '760', '1560', '4', '112', 'VTU', 'Information Science and Engineering', '79', '100', '0'), (4671, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '163', '152', '315', '4', '112', 'FCRIT', 'EXTC', '66.47', '100', '0'), (4672, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '165', '148', '313', '4', '105', 'SSN College of Engineering', 'Computer Science and Engineering', '8.34', '10', '22'), (4673, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Spring ', '2015', '161', '159', '320', '3.5', '106', 'IIT Mandi', 'Mechanical Engineering', '7.09', '10', '0'), (4674, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '163', '149', '312', '3.5', '99', 'VIT University', 'Electronics and communication Engineering', '8.75', '10', '0'), (4675, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '168', '156', '324', '3.5', '112', 'SASTRA', 'ELECTRICAL & ELECTRONICS', '7.7', '10', '0'), (4676, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '149', '313', '3', '93', 'Gayatri College of Engineering', 'Computer Science Engineering', '74.73', '100', '0'), (4677, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2015', '162', '148', '310', '3.5', '95', 'CVRCE', 'Civil Engineering', '75', '100', '0'), (4678, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2013', '166', '145', '311', '3', '92', 'BITS Pilani', 'Civil', '8.15', '10', '0'), (4679, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '790', '550', '1340', '2.5', '94', 'JNTU', 'EEE', '77', '100', '0'), (4680, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '147', '310', '3.5', '106', 'Sinhgad College of Engineering', 'Computer', '67.14', '100', '0'), (4681, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2015', '159', '149', '308', '3', '104', 'SRM', 'Civil Engineering', '9.1', '10', '16'), (4682, 'Arizona State University', '6', 'Admit', 'MS', 'analytics', 'Fall ', '2015', '159', '157', '316', '4.5', '108', 'BITS Pilani', 'Chemical Engg', '6.76', '10', '66'), (4683, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Spring ', '2016', '168', '152', '320', '3.5', '102', 'NIT Rourkela', 'ECE', '7.75', '10', '48'), (4684, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '750', '470', '1220', '3', 'None', 'Crescent Engineering College', 'Mechanical Engineering', '7.98', '10', '24'), (4685, 'Arizona State University', '6', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2011', '770', '580', '1350', '4', '115', 'PESIT', 'Mechanical', '8.73', '10', '0'), (4686, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '630', '1430', '3.5', '106', 'Bangalore Institute of Technology', 'Information Science', '70', '100', '0'), (4687, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '165', '152', '317', '3', '103', 'BMSCE', 'Electronics and communication', '9.14', '10', '0'), (4688, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '168', '164', '332', '4.5', '118', 'BITS Pilani', 'Mechanical Engineering', '8.09', '10', '0'), (4689, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '165', '143', '308', '3.5', '103', 'NIT Rourkela', 'Mechanical Engineering', '8.19', '10', '0'), (4690, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '600', '1400', '3.5', '110', 'Guru Gobind Singh Indraprashta University', 'Computer Science', '79', '100', '0'), (4691, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2010', '800', '630', '1430', '4', '109', 'NIT Durgapur', 'ECE', '7.93', '10', '0'), (4692, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '650', '1420', '4', '109', 'COEP', 'IT', '8.22', '10', '0'), (4693, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '165', '149', '314', '3.5', '109', 'Univ Of Pune', 'Mechanical', '58', '100', '0'), (4694, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '166', '164', '330', '4.5', '117', 'IIT BHU', 'Electronics', '7.92', '10', '0'), (4695, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '159', '159', '318', '4', '112', 'Sir MVIT', 'Industrial Engineering and Management', '79', '100', '0'), (4696, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '770', '550', '1320', '3.5', '113', 'UPTU', 'Electronics and Communication', '76.56', '100', '0'), (4697, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '159', '321', '3', '104', 'U.P.Technical University', 'Information Technology', '68', '100', '0'), (4698, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '164', '151', '315', '3', '102', 'MU', 'Electrical', '79.8', '100', '0'), (4699, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2016', '160', '158', '318', '3', '106', 'S.D.M.C.E.T', 'electronics an communication engineering', '8.63', '10', '0'), (4700, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '150', '312', '3', '107', 'VTU', 'Computer Science', '73', '100', '0'), (4701, 'Arizona State University', '6', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (4702, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '159', '154', '313', '4', '111', 'MU', 'Mechanical Engineering', '70', '100', '0'), (4703, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '420', '1220', '4', '108', 'MU', 'Computer Engineering', '74.6', '100', '0'), (4704, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '162', '151', '313', '3.5', '101', 'Sinhgad College of Engineering', 'Mechanical engineering', '66', '100', '0'), (4705, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '380', '1180', 'None', '99', 'VTU', 'ECE', '82', '100', '0'), (4706, 'Arizona State University', '6', 'Admit', 'MS', 'civil', 'Fall ', '2014', '157', '148', '305', '2.5', '91', 'MSRIT', 'Civil', '8.15', '10', '0'), (4707, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Spring ', '2014', '157', '142', '299', '3', '90', 'JNTU', 'ece', '73', '100', '0'), (4708, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '760', '540', '1300', '3', '88', 'Sri Sairam Engineering College', 'EEE', '80', '100', '0'), (4709, 'Arizona State University', '6', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '800', '610', '1410', '3', '104', 'MU', 'Information Technology', '77', '100', '0'), (4710, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '760', '620', '1380', '4', '116', 'MU', 'Information Technology', '66.71', '100', '0'), (4711, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '680', '1480', '4', '105', 'Manipal Institue of Technology', 'Electronics and Communication', '9.06', '10', '0'), (4712, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '660', '1430', '2.5', 'None', 'Guru Nanak Dev University Amritsar', 'Computer Science and Engineering', '78.2', '100', '0'), (4713, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '600', '1390', '3', '104', 'Anna University', 'CSE', '84.5', '100', '0'), (4714, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '163', '150', '313', '3.5', '98', 'BITS Goa', 'Electrical Engineering', '7.84', '10', '0'), (4715, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '150', '310', '3.5', '107', 'GGSIPU', 'Information technology', '77.4', '100', '0'), (4716, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '800', '510', '1310', '3.5', '108', 'GITAM', 'ECE', '7.83', '10', '0'), (4717, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2012', '164', '156', '320', '4', '114', 'R V College of Engineering', 'CIVIL ENGINEERING', '9.8', '10', '0'), (4718, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '750', '580', '1330', '4', '103', 'Anna University', 'ECE', '78', '100', '0'), (4719, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', 'None', 'None', '0', 'None', 'None', 'D J Sanghvi', 'EXTC', '0', '0', '0'), (4720, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '670', '1470', '3.5', '102', 'JBIET', 'ece', '76', '100', '0'), (4721, 'Arizona State University', '6', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2016', '166', '144', '310', '3.5', 'None', 'Indraprastha University', 'ELECTRONICS AND COMMUNICATION', '72', '100', '0'), (4722, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2014', '157', '155', '312', '3.5', '116', 'SRM', 'EEE', '7.9', '10', '0'), (4723, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '720', '560', '1280', '3.5', '102', 'Univ--West Bengal University Of Technology/College--Institute Of Engineering And Management Kolkata', 'Computer Science Engineering', '8.52', '10', '0'), (4724, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '800', '460', '1260', '3.5', '99', 'GITAM', 'Mechanical Engineering', '8.07', '10', '0'), (4725, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2014', '165', '150', '315', '3', '105', 'Kerala University', 'EEE', '7.88', '10', '30'), (4726, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '157', '149', '306', '3', 'None', 'A D Patel Institute Of Technology', 'IT', '7.71', '10', '0'), (4727, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '168', '153', '321', '3.5', '104', 'University of Pune', 'E&TC;', '69', '100', '0'), (4728, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall', 'None', '162', '160', '322', '3.5', '106', 'None', '0', '7.57', '10', '0'), (4729, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '163', '146', '309', '4', '93', 'JNTU', 'CSE', '70.09', '100', '0'), (4730, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2015', '151', '151', '302', '3.5', '93', 'VIT University', 'Civil Engineering', '7.64', '10', '0'), (4731, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '780', '510', '1290', '3', '97', 'Velammal Engineering College', 'ECE', '80', '100', '0'), (4732, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '169', '156', '325', '4.5', '109', 'NIT Karnataka', 'Mechanical Engineering', '7.23', '10', '0'), (4733, 'Arizona State University', '6', 'Admit', 'MS', 'analytics', 'Fall ', '2013', '160', '151', '311', '3.5', '106', 'NMIMS', 'Computer Engineering', '2.98', '4', '0'), (4734, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '164', '161', '325', '4', '109', 'BPUT', 'Electrical Engineering', '9.03', '10', '0'), (4735, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '170', '154', '324', '4', '114', 'MDU', 'EECE', '83.4', '100', '24'), (4736, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '139', '300', '3', '95', 'Guru Gobind Singh Indraprashta University', 'Information Technology', '75.28', '100', '0'), (4737, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '170', '161', '331', '5', '113', 'Manipal Institue of Technology', 'CSE', '7.73', '10', '31'), (4738, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '159', '149', '308', '3', '105', 'SATHAGIRI COLLEGE OF ENGINEERING VTU', 'ECE', '78.93', '100', '0'), (4739, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (4740, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical & Computer Engg/MIS/Industrial/Systems Engg', 'Fall ', '2014', '147', '141', '288', '2', 'None', 'kshatriya college of engineering JNTU-HYD', 'EEE', '65.98', '100', '0'), (4741, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2012', '780', '710', '1490', '4', '112', 'SPCE', 'Electronics', '70', '100', '0'), (4742, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '800', '550', '1350', '2.5', '108', 'JNTU', 'CSE', '81', '100', '0'), (4743, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '151', '313', '3.5', '109', 'Guru Gobind Singh Indraprashta University', 'Electronics And Communications Engg', '72.11', '100', '0'), (4744, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2011', '760', '630', '1390', '3', '102', 'CoE Trivandrum', '0', '7.3', '10', '0'), (4745, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '154', '315', '3', '115', 'Abhinav Hi-Tech College Of Engineering', 'Electronics and Communicaton Engineering', '71', '100', '0'), (4746, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '790', '510', '1300', '3.5', '105', 'GITAM', 'Electronics and Communication', '8.78', '10', '0'), (4747, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '158', '320', '3.5', '112', 'MU', 'Computer', '65', '100', '0'), (4748, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '160', '160', '320', '6', '120', 'MU', 'ME', '99', '100', '0'), (4749, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '157', '320', 'None', '103', 'VIT', 'Information Technology', '9.02', '10', '23'), (4750, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '162', '155', '317', '3.5', '106', 'Anna University / Sri Ramakrishna Engineering College', 'Mechanical Engineering', '8.45', '10', '33'), (4751, 'Arizona State University', '6', 'Admit', 'MS', 'Manufacturing Systems Engineering', 'Fall ', '2014', '164', '152', '316', 'None', '104', 'SIT', 'ECE', '9.4', '10', '0'), (4752, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '154', '318', '3.5', '104', 'VNR VJIET', 'CSE', '72', '100', '0'), (4753, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '740', '560', '1300', '4.5', '113', 'Pune University', 'Computer Engineering', '70.15', '100', '0'), (4754, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '149', '310', '3.5', '106', 'Maharaja Agrasen Institute Of Technology', 'Computer Science', '76', '100', '0'), (4755, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '620', '1420', '3.5', '111', 'College Of Engineering Roorkee', 'Computer Science', '76', '100', '0'), (4756, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '164', '152', '316', '3.5', '114', 'VIT', 'B.Tech - IT', '8.2', '10', '0'), (4757, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '540', '1330', '3.5', '93', 'Pune University', 'Computer Engineering', '63', '100', '0'), (4758, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2013', '168', '155', '323', '3', '115', 'Valliammai Engineering College', 'e.c.e', '76', '100', '0'), (4759, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '480', '1280', '3.5', '105', 'Anna University', 'ECE', '82', '100', '0'), (4760, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '166', '161', '327', '3.5', '114', 'K J Somaiya College of Engiineering', 'Mechanical Engineering', '67', '100', '0'), (4761, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '160', '149', '309', '3', '107', 'PSG College of Technology', 'Production Engineering', '7.94', '10', '0'), (4762, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '520', '1280', '4', '101', 'Coimbatore Insitute of Technology', 'CSE', '8.23', '10', '0'), (4763, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '790', '600', '1390', '3.5', '117', 'Madras Institute of Technology', 'RUBBER AND PLASTICS TECHNOLOGY', '8.48', '10', '0'), (4764, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '167', '156', '323', '3', '107', 'NIT Allahabad', 'Electrical', '7.04', '10', '50'), (4765, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '750', '610', '1360', '4', '113', 'Pune University', 'Electronics and telecomm', '0', '0', '0'), (4766, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '480', '1250', '4', '102', 'Fr. Agnel Bandra', 'Computer Engg', '73', '100', '0'), (4767, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '470', '1270', '3.5', '100', 'MU', 'I.T.', '61', '100', '0'), (4768, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '800', '370', '1170', '3', 'None', 'Govt. Engg. College Jabalpur', 'Mechanical Engineering', '75.78', '100', '0'), (4769, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '730', '410', '1140', '4', '108', 'KLESCET Belgaum', 'Computer science', '75.2', '100', '0'), (4770, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '780', '610', '1390', '3', '96', 'PICT', 'Electronics & Telecommunications', '66', '100', '0'), (4771, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '165', '152', '317', '3', '103', 'NIT Durgapur', 'MCA', '8.67', '10', '0'), (4772, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '165', '160', '325', '4', '109', 'Calicut University', 'Mechanical Engineering', '7.96', '10', '0'), (4773, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '164', '148', '312', '3.5', '93', 'BSAITM', 'Computer Science', '72', '100', '0'), (4774, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '148', '307', '3.5', '96', 'VTU', 'Computer Science', '0', '0', '0'), (4775, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '390', '1180', '4', 'None', 'Bangalore Institute of Technology', 'Electronics & Communications', '77', '100', '0'), (4776, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2007', '790', '490', '1280', '4.5', '280', 'PSG College of Technology', 'ECE', '8.82', '10', '0'), (4777, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '165', '158', '323', '4', '110', 'MU', 'Electronics', '64.96', '100', '0'), (4778, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '163', '156', '319', '3.5', 'None', 'Datta Meghe College of Engineering', 'Mechanical', '68', '100', '0'), (4779, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '157', '318', '3.5', '104', 'GGSIPU', 'CSE', '73.28', '100', '0'), (4780, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '158', '317', '3.5', '111', 'Vidyavardhaka College of Engineering', 'Computer Science', '74.28', '100', '0'), (4781, 'Arizona State University', '6', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '162', '146', '308', '3.5', '95', 'National Institute of Science and Technology B.P.U.T Orissa', 'ELectronics & Communication', '7.56', '10', '0'), (4782, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2009', '780', '450', '1230', '3', '100', 'GGSIPU', 'COMPUTER', '81.1', '100', '0'), (4783, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '168', '157', '325', '4', '109', 'Anna University', 'Information Technology', '7.99', '10', '51'), (4784, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '164', '155', '319', '3.5', '110', 'Anna University', 'Mech', '8.95', '10', '0'), (4785, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '154', '314', '3', '107', 'Gujarat Technological University', 'Computer Engineering', '81.61', '100', '0'), (4786, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '142', '306', '3', '99', 'VTU', 'IS', '8.49', '10', '0'), (4787, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '163', '146', '309', '3.5', '109', 'Sri Sairam Engineering College', 'Computer Science', '8', '10', '0'), (4788, 'Arizona State University', '6', 'Admit', 'MS', 'Manufacturing Systems Engineering', 'Fall ', '2013', '163', '157', '320', '4.5', '115', 'University of Calicut', 'MECHANICAL ENGINEEIRNG', '78.2', '100', '0'), (4789, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '162', '149', '311', '3', '112', 'Anna University', 'CSE', '8', '10', '0'), (4790, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '740', '520', '1260', '3', '95', 'R V College of Engineering', 'CSE', '76', '100', '0'), (4791, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '630', '1430', '3.5', '106', 'MU', 'Computer Engineering', '73', '100', '0'), (4792, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '168', '157', '325', '3.5', '114', 'NIT Tirchy', 'Electrical and Electronics', '9.1', '10', '19'), (4793, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '560', '1330', '3.5', '90', 'S.G.S.I.T.S. Indore RGPV Univ', 'Computer Engineering', '68', '100', '0'), (4794, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '770', '520', '1290', '3', '104', 'PSG College of Technology', 'EEE', '9.12', '10', '0'), (4795, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '163', '154', '317', '3', '103', 'SSN College of Engineering', 'EEE', '8.37', '10', '0'), (4796, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '570', '1370', '3.5', '101', 'IIIT Hyderabad', 'Computer Science', '8.01', '10', '0'), (4797, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '165', '145', '310', '3', '89', 'NIT Warangal', 'cse', '8.38', '10', '24'), (4798, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '159', '151', '310', '4', '96', 'R V College of Engineering', 'ISE', '8.45', '10', '43'), (4799, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '520', '1310', '4', '107', 'PESIT', 'Electronics and communication', '77.27', '100', '0'), (4800, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '168', '143', '311', '3', '96', 'CEG', 'Computer Science', '7.25', '10', '48'), (4801, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '740', '550', '1290', '3.5', '111', 'VTU', 'ECE', '80', '100', '0'), (4802, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '510', '1310', '3.5', '103', 'BITS Goa', 'EEE', '7.81', '10', '0'), (4803, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '162', '142', '304', '3', '88', 'JNTU', 'ECE', '72', '100', '0'), (4804, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '162', '153', '315', '3.5', '110', 'SRM', 'Electronics and Instrumentation', '8.71', '10', '0'), (4805, 'Arizona State University', '6', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2013', '159', '151', '310', '3.5', '107', 'SSN College of Engineering', 'BIOMEDICAL ENGINEERING', '8.9', '10', '0'), (4806, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '166', '157', '323', '3', '102', 'IIITDM', 'electronics engg', '9.27', '10', '0'), (4807, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '167', '327', '4.5', '116', 'VTU', 'CS', '80', '100', '0'), (4808, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '160', '146', '306', '2.5', '92', 'SGGSIE&T; Nanded', 'Information Technology', '7.8', '10', '0'), (4809, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '560', '1340', '3', '99', 'BMSCE', 'EC', '75', '100', '0'), (4810, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '167', '141', '308', '3', '98', 'NIT Warangal', 'CSE', '8.5', '10', '48'), (4811, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2011', '780', '540', '1320', '3.5', '105', 'NIT Surathkal', 'Civil Engineering', '8.8', '10', '0'), (4812, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '162', '162', '324', '4.5', '114', 'Amity University', 'Electrical & Electronics (EEE)', '8.69', '10', '0'), (4813, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2016', '160', '150', '310', '3', '102', 'Biju Patnaik University of Technology', 'Electrical Engineering', '8.71', '10', '0'), (4814, 'Arizona State University', '6', 'Admit', 'MS', 'CS / MSIS / ITM', 'Fall', 'None', '760', '550', '1310', '4', '110', 'Model Engineering College', 'Computer Science and Engineering', '76.1', '100', '0'), (4815, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '550', '1340', '2.5', '90', 'COEP', 'Electronics and Telecommunications', '7.3', '10', '0'), (4816, 'Arizona State University', '6', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (4817, 'Arizona State University', '6', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2013', '163', '149', '312', '3.5', '99', 'NIT Rourkela', 'Biomedical Engineering', '7.03', '10', '0'), (4818, 'Arizona State University', '6', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2011', '800', '430', '1230', '3', '92', 'BITS Pilani', 'Marine Engineering', '9.27', '10', '0'), (4819, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '165', '151', '316', '3.5', '104', 'NIT Warangal', 'ECE', '7.78', '10', '0'), (4820, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (4821, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics & Communication', 'Fall', 'None', '800', '620', '1420', '3.5', '108', 'VIT University', 'ECE', '8.8', '10', '0'), (4822, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '162', '148', '310', '3.5', '95', 'NIT Warangal', 'Mechanical Engineering', '8.77', '10', '24'), (4823, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '148', '311', '3', '93', 'GITAM', 'Information Technology', '8.4', '10', '0'), (4824, 'Arizona State University', '6', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (4825, 'Arizona State University', '6', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '159', '146', '305', '3.5', 'None', 'JNTU', 'Electronics and Communication Engineering', '82.6', '100', '0'), (4826, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '169', '153', '322', '3', '98', 'NIT Warangal', 'ece', '8.05', '10', '0'), (4827, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '550', '1350', '3', '97', 'Rajiv Gandhi Institute Of Technology', 'Computer Engineering', '65.92', '100', '0'), (4828, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '153', '312', '3', '98', 'PSG College of Technology', 'Information Technology', '8.85', '10', '0'), (4829, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '430', '1230', '4', '113', 'BITS Goa', 'Electrical and Electronics', '8.3', '10', '0'), (4830, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '710', '590', '1300', '3', '107', 'VTU', 'Computer science', '80', '100', '0'), (4831, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '600', '1400', '4', '106', 'Govt. College of Technology Coimbatore (Anna University)', 'Computer Science and Engineering', '8.6', '10', '0'), (4832, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '159', '321', '4.5', '113', 'NIT Durgapur', 'Information Technology', '7.81', '10', '0'), (4833, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '390', '1180', '3.5', '94', 'VIT University', 'ECE', '8.9', '100', '0'), (4834, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '159', '152', '311', '4', '109', 'VTU', 'electrical', '76', '100', '0'), (4835, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '150', '315', '3', '101', 'IPS Academy Indore [RGPV University Bhopal]', 'CSE', '75', '100', '0'), (4836, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '800', '630', '1430', '4', '109', 'NITK Surathkal', 'Mechanical Engg', '8.4', '10', '0'), (4837, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2013', '170', '154', '324', '3.5', '107', 'NIT Calicut', 'EEE', '7.4', '10', '0'), (4838, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '750', '520', '1270', '2.5', '110', 'SSN College of Engineering', 'ECE', '80', '100', '0'), (4839, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '163', '158', '321', '4.5', '105', 'Pune University', 'Computer Engineering', '67', '100', '0'), (4840, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '770', '380', '1150', '3.5', '100', 'Osmania University', 'CSE', '79', '100', '0'), (4841, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '410', '1210', '2', '108', 'JNTU', 'ECE', '70', '100', '0'), (4842, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '164', '159', '323', '3.5', '103', 'PESIT', 'Computer Science', '77', '100', '54'), (4843, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '161', '149', '310', '3', '102', 'SASTRA', 'ECE', '8', '10', '0'), (4844, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '160', '149', '309', '4', '99', 'WCE Sangli', 'IT', '79', '100', '0'), (4845, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '650', '1450', '3', '96', 'Thapar University', 'Electrical Engineering', '9.14', '10', '0'), (4846, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (4847, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '157', '317', '4', '109', 'NIT Silchar', 'Computer Science and Engineering', '8.23', '10', '0'), (4848, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '680', '1480', '3.5', '114', 'Jabalpur Engineering College (Govt.)', 'Information Technology', '71.5', '100', '0'), (4849, 'Arizona State University', '6', 'Admit', 'MS', 'CS', 'Fall ', '2015', '164', '153', '317', '3', '103', 'NIT Rourkela', 'Computer Science & Engineering', '8.44', '10', '34'), (4850, 'Arizona State University', '6', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (4851, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '157', '151', '308', '3.5', '102', 'RGPV', 'MECHANICAL ENGINEERING', '3.45', '4', '0'), (4852, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '152', '315', '4.5', '109', 'Amity School of Engineering and Technology', 'Computer Science', '8', '10', '58'), (4853, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '650', '1450', '4.5', '116', 'Pune University', 'Computer Engineering', '3.4', '4', '0'), (4854, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2007', '800', '430', '1230', '4', '237', 'CEG', 'Electronics and Communication', '9.03', '10', '0'), (4855, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '143', '304', '3', '94', 'Sree Vidyanikethan Engineering College', 'INFORMATION TECHNOLOGY', '74.34', '100', '0'), (4856, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '162', '153', '315', '3', '104', 'RGUKT', 'Electronics and Communication', '9.11', '10', '0'), (4857, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '166', '151', '317', '3', '92', 'NMREC', 'ECE', '71', '100', '0'), (4858, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2012', '159', '145', '304', '3', '99', 'NIT Warangal', 'civil engineering', '8.19', '10', '0'), (4859, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '161', '329', '3.5', '113', 'Jaypee Institute of Information Technology', 'Computer Science & IT', '8.3', '10', '0'), (4860, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '168', '147', '315', '3', '95', 'COEP', 'Computer Science', '7.99', '10', '36'), (4861, 'Arizona State University', '6', 'Admit', 'MS', 'Instrumentation and Control', 'Fall ', '2012', '800', '620', '1420', '4', '104', 'VIT Pune', 'Instrumentation and Control', '8.5', '10', '0'), (4862, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '153', '317', '4.5', '113', 'Bangalore Institute of Technology', 'Computer Science', '83.6', '100', '0'), (4863, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '161', '155', '316', '4', '108', 'Rajiv Gandhi Technical University', 'Information Technology', '72.06', '100', '50'), (4864, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '149', '313', '3', '103', 'Amrita School of Engineering', 'CSE', '7.2', '10', '0'), (4865, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '157', '149', '306', '3.5', '94', 'BVBCET', 'Computer Science', '7.26', '10', '0'), (4866, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '168', '148', '316', '3.5', '101', 'IIT Kanpur', 'Electrical Engineering', '8.8', '10', '0'), (4867, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '800', '600', '1400', '3', '96', 'IPU/MAIT', 'ECE', '76', '100', '0'), (4868, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '750', '660', '1410', '3.5', '112', 'SSN College of Engineering', 'EEE', '8.787', '10', '0'), (4869, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '153', '315', '4', '108', 'R V College of Engineering', 'Computer Science', '74.93', '100', '0'), (4870, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '640', '1440', 'None', '107', 'COEP', 'Computer Engineering', '8.45', '10', '0'), (4871, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '164', '155', '319', '3.5', '109', 'Pune University', 'Mechanical Engineering', '8.83', '10', '0'), (4872, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '164', '154', '318', '3.5', '112', 'Nagarjuna University', 'IT', '89.3', '100', '0'), (4873, 'Arizona State University', '6', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2013', '169', '157', '326', '4', '108', 'None', 'Mechanical', '8.46', '10', '0'), (4874, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '790', '800', '1590', '4.5', '290', 'Dharamsinh Desai University', 'Computer Engineering', '76.2', '100', '0'), (4875, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '600', '1400', '4.5', '111', 'VTU', 'Electronics and Communications', '75', '100', '0'), (4876, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '800', '480', '1280', '4', '283', 'Model Engineering College', 'Electronics and Comunication', '79.4', '100', '0'), (4877, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '167', '149', '316', 'None', 'None', 'Manipal Institue of Technology', 'CSE', '8.53', '10', '0'), (4878, 'Arizona State University', '6', 'Admit', 'MS', 'Instrumentation and Control', 'Fall ', '2011', '700', '540', '1240', '3', '109', 'CoE Trivandrum', 'Applied Electronics and Instrumentation', '7.97', '10', '0'), (4879, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '161', '153', '314', 'None', 'None', 'UPTU', 'Computer Science', '75', '100', '0'), (4880, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '790', '360', '1150', '3', '89', 'YCCE', 'electronics engineering', '64', '100', '0'), (4881, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '510', '1300', '4.5', '117', 'Model Engineering College', 'Electronics and Communication', '77.71', '100', '0'), (4882, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '170', '157', '327', '3', '101', 'NIT Jamshedpur', 'Electronics and Comm. Engg.', '8.55', '10', '0'), (4883, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '155', '317', '4', '110', 'Anna University', 'CS', '7.25', '10', '0'), (4884, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '150', '311', '3.5', '109', 'Jalpaiguri Government Engineering College', 'Electronics & Communication Engg', '8.14', '10', '0'), (4885, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '800', '570', '1370', '4', '283', 'VTU', 'Electronics and Communication Engineering', '83', '100', '0'), (4886, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '169', '151', '320', '3.5', '105', 'IIT', 'Mechanical', '8', '10', '0'), (4887, 'Arizona State University', '6', 'Admit', 'MS', 'Business Analytics', 'Fall ', '2015', '167', '147', '314', '4', '101', 'Shiv Nadar University', 'Mathematics', '8.5', '10', '0'), (4888, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '164', '146', '310', '3', '96', 'Anna University', 'E&I;', '7.82', '10', '0'), (4889, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '150', '312', '3', '96', 'Nirma Institute of Technology', 'Computer Science and Engineering', '7.88', '10', '0'), (4890, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '770', '450', '1220', 'None', 'None', 'COEP', 'production', '7', '10', '0'), (4891, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '770', '600', '1370', '4', '111', 'COEP', 'Information Techology', '7.74', '10', '0'), (4892, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall', 'None', '164', '149', '313', 'None', '109', 'GNITS', 'ETM', '89.37', '100', '0'), (4893, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '165', '168', '333', '3.5', '107', 'VTU', 'Electronics and Communication', '74.7', '100', '0'), (4894, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '770', '540', '1310', '3.5', '111', 'None', 'Electronics and comm. engg', '76.92', '100', '0'), (4895, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2012', '800', '450', '1250', '2.5', '106', 'JNTU', 'ECE', '76.1', '100', '0'), (4896, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '159', '149', '308', '3', '100', 'None', '0', '0', '0', '0'), (4897, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '161', '143', '304', '3', 'None', 'NIT Surat', 'Electronics', '8.64', '10', '0'), (4898, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2010', '780', '630', '1410', '3', '102', 'Acharya Nagarjuna University', 'EEE', '80', '100', '0'), (4899, 'Arizona State University', '6', 'Admit', 'MS', 'Biomedical Engineering', 'Spring ', '2014', '760', '650', '1410', '3', '105', 'VITU Vellore', 'Biotechnology', '8.25', '10', '0'), (4900, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '580', '1370', '4.5', '115', 'VTU', 'Computer Science', '71', '100', '0'), (4901, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '162', '152', '314', '3', '105', 'VIT University', 'SELECT', '8.34', '100', '0'), (4902, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '420', '1180', '3.5', '96', 'Ramrao Adik Institute of Technology', 'Electronics', '67', '100', '0'), (4903, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2011', '750', '550', '1300', '3', '98', 'Kurukshetra University', 'Electronics & Instrumentation', '71', '100', '0'), (4904, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '157', '143', '300', '3', '91', 'Nitte Meenakshi Institute of Technology (Autonomous) / VTU', 'Mechanical Engineering', '8.71', '10', '0'), (4905, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '790', '570', '1360', '5', '114', 'NIT Karnataka', 'Mechanical Engineering', '8.66', '10', '0'), (4906, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '700', '510', '1210', '3.5', '98', 'SRM', 'EIE', '77', '100', '0'), (4907, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '160', '151', '311', '4', 'None', 'Anna University', 'Information Technology', '82', '100', '0'), (4908, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2012', '750', '500', '1250', '2.5', '98', 'VIT University', 'I.T', '8.2', '10', '0'), (4909, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '730', '650', '1380', '4', '103', 'Sardar Patel College of Engineering', 'electronics and telecommunication', '79.04', '100', '0'), (4910, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '170', '149', '319', '3.5', '108', 'SRMSCET Bareilly (affiliated to Uttar Pradesh Technical University)', 'Computer Science and Engineering', '71.26', '100', '38'), (4911, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '166', '160', '326', '3.5', '111', 'VJTI', 'electronics', '8.4', '10', '0'), (4912, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '800', '520', '1320', '3', '105', 'SVIT', 'computers', '68', '100', '0'), (4913, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '167', '153', '320', '4', '110', 'B M S College of Engineering', 'Computer science', '77', '100', '0'), (4914, 'Arizona State University', '6', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2013', '167', '158', '325', '4', '118', 'Goa University', 'Mechanical Engineering', '69', '100', '0'), (4915, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Fall', 'None', '163', '147', '310', '3.5', '105', 'NIT Tirchy', 'Civil engineering', '8.6', '10', '0'), (4916, 'Arizona State University', '6', 'Admit', 'MS', 'CS', 'Fall ', '2013', '800', '650', '1450', '4', '111', 'K J Somaiya College of Engiineering', 'IT', '67', '100', '0'), (4917, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Spring ', '2016', '158', '151', '309', 'None', '105', 'GITAM', 'ECE', '8.84', '10', '0'), (4918, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics & Communication', 'Fall ', '2013', '790', '630', '1420', '3', '101', 'nitw', 'elcetronics', '8.6', '10', '0'), (4919, 'Arizona State University', '6', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (4920, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '166', '164', '330', '4', '119', 'MNM Jain Engineering College', 'CSE', '8.6', '10', '0'), (4921, 'Arizona State University', '6', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '740', '570', '1310', '4', '112', 'RMK Engineering College', 'computer science', '85', '100', '0'), (4922, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '164', '152', '316', '4', '110', 'Anna University', 'Information Technology', '8.252', '10', '0'), (4923, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '167', '153', '320', '3.5', '109', 'SSN College of Engineering', 'ECE', '8.3', '10', '0'), (4924, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '152', '316', '3', '106', 'JNTU', 'ECE', '78', '100', '0'), (4925, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '770', '650', '1420', '2.5', 'None', 'NIT Durgapur', 'Mechanical engineering', '8.28', '10', '0'), (4926, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '163', '159', '322', '4.5', '110', 'Vasavi College of Engineering', 'Information Technology', '89', '100', '16'), (4927, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '162', '156', '318', '3.5', '112', 'CEG', 'computer science', '7.3', '10', '0'), (4928, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '168', '159', '327', '3', '105', 'NIT Jamshedpur', 'Electronics & Communication Engineering', '8.68', '10', '48'), (4929, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '167', '152', '319', '4', '113', 'Manipal Institue of Technology', 'ECE', '8.87', '10', '0'), (4930, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '166', '148', '314', '3', '110', 'BIT Mesra', 'Computer Science and Engineering', '7.68', '10', '0'), (4931, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2011', '720', '520', '1240', '4', '106', "St Joseph's College of Engineering", 'EEE', '75.31', '100', '0'), (4932, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '163', '152', '315', '4', '98', 'Coimbatore Insitute of Technology', 'ECE', '8.78', '10', '26'), (4933, 'Arizona State University', '6', 'Admit', 'MS', 'Materials Science & Engineering', 'Fall ', '2014', '165', '161', '326', '4', '115', 'Visvesvaraya NIT Nagpur', 'Metallurgical and Materials Engineering', '8.34', '10', '0'), (4934, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '550', '1310', '3.5', '105', 'Amity University', 'CS', '7.9', '10', '0'), (4935, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (4936, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '530', '1330', '3.5', '103', 'CBIT', 'EEE', '80', '100', '0'), (4937, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '164', '145', '309', '3.5', '101', 'University of Mumbai', 'Mechanical Engineering', '65.5', '100', '0'), (4938, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '730', '530', '1260', '4', '112', 'None', 'Mechanical Engineering', '3.75', '4', '0'), (4939, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '800', '730', '1530', '5', '119', 'MU', 'Electronics and Telecommunication', '71.9', '100', '0'), (4940, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2007', '740', '520', '1260', '4', '263', 'MDU', 'MEchanical', '74', '100', '0'), (4941, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '146', '310', '3', '107', 'Sir MVIT', 'computer science', '78', '100', '0'), (4942, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '400', '1190', '3', '98', 'JSSATE / VTU', 'CS', '74', '100', '0'), (4943, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '510', '1270', '3', '104', 'VIT University', 'EIE', '8.57', '10', '0'), (4944, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '800', '590', '1390', '3.5', '110', 'Universiity College of Engineering Osmania University.', 'EEE', '75', '100', '0'), (4945, 'Arizona State University', '6', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (4946, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '760', '450', '1210', '3', '106', 'Dhirubhai Ambani Institute of Information & Communication Technology', 'ICT', '9.06', '10', '0'), (4947, 'Arizona State University', '6', 'Admit', 'MS', 'Computational Science', 'Fall ', '2014', '166', '150', '316', '3.5', '94', 'VIT', 'Computer Science', '7.88', '10', '0'), (4948, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '700', '650', '1350', '4.5', '105', 'VTU', 'CS', '78', '100', '0'), (4949, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '164', '151', '315', '3.5', 'None', 'None', 'CSE', '81.4', '100', '0'), (4950, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '143', '306', '3.5', '95', 'University of Mumbai', 'Information Technology', '66', '100', '0'), (4951, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '157', '319', '4', '116', 'Bangalore Institute of Technology', 'Computer Science', '82', '100', '21'), (4952, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '156', '320', '4', '114', 'Manipal Institue of Technology', 'Computer Science', '8.09', '10', '0'), (4953, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '480', '1280', '3', 'None', 'PESIT', 'E & C', '78.4', '100', '0'), (4954, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '146', '305', '3.5', '98', 'VTU', 'Computer Science', '74', '100', '0'), (4955, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2014', '780', '550', '1330', '3', '90', 'JNTU', 'eee', '0', '0', '0'), (4956, 'Arizona State University', '6', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '46', '25', '71', '5', '102', 'IIITM', 'IT', '8.17', '10', '120'), (4957, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '166', '144', '310', '2.5', '102', 'VTU', 'EnC', '74.5', '100', '0'), (4958, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '520', '1320', '3', '94', 'Thiagarajar College of engineering', 'Computer science', '7.86', '10', '0'), (4959, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '770', '550', '1320', '3.5', '94', 'Madhav Institute of Technology & Science Gwalior', 'Electrical Engineering', '73.43', '100', '0'), (4960, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '160', '152', '312', '3.5', '97', 'Sharif university of Technology', 'Industrial engineering', '3.92', '4', '0'), (4961, 'Arizona State University', '6', 'Admit', 'MS', 'Materials Science & Engineering', 'Fall ', '2015', '163', '153', '316', '4', '111', 'SRM', 'Mechanical', '8', '10', '0'), (4962, 'Arizona State University', '6', 'Admit', 'MS', 'software engineering', 'Fall ', '2014', '162', '150', '312', '4', '107', 'SSN College of Engineering', 'Information Technology', '7.8', '10', '0'), (4963, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '480', '1260', '3', '97', 'SRM', 'Electrical & Electronics Engineering', '8.35', '10', '0'), (4964, 'Arizona State University', '6', 'Admit', 'MS', 'CS', 'Fall ', '2013', '164', '153', '317', '4.5', '109', 'VTU', 'CS', '82.6', '100', '0'), (4965, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '740', '660', '1400', '3.5', '111', 'NED University Karachi', 'Electronic Engineering', '83', '100', '0'), (4966, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '149', '314', '3', '112', 'UPTU', 'CSE', '73.78', '100', '0'), (4967, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '150', '311', '4.5', '98', 'NIT Durgapur', 'Computer Science and Engineering', '7.52', '10', '0'), (4968, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '440', '1210', '4', '104', 'New Horizon College of Engineering', 'Computer Science and Engineering', '78.8', '100', '0'), (4969, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '660', '1460', '4.5', '115', 'IIT Delhi', 'Electrical (Power)', '6.78', '10', '0'), (4970, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '169', '148', '317', '3', '97', 'GITAM', 'cse', '8.22', '10', '0'), (4971, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '161', '149', '310', '3.5', '109', 'VIT University', 'mechanical- energy', '8.3', '10', '0'), (4972, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '164', '146', '310', '3', '110', 'BITS Goa', 'Mechanical', '6.7', '10', '0'), (4973, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '167', '149', '316', '3.5', '97', 'BIT Mesra', 'cse', '7.51', '10', '36'), (4974, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '640', '1420', '4', '116', 'NIT Tirchy', 'Instrumentation and control', '8.78', '10', '0'), (4975, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '560', '1330', '4.5', '117', 'Pondicherry Engineering College', 'CS', '77', '100', '0'), (4976, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '170', '157', '327', '4', '110', 'BITS Hyderabad', 'Mechanical Engineering', '8.31', '10', '12'), (4977, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '146', '309', '3', '104', 'JNTU', 'CSE', '79.18', '100', '0'), (4978, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '390', '1180', '3', '88', 'SSN College of Engineering', 'EEE', '84', '100', '0'), (4979, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '159', '318', '4', '115', 'JNTU', 'Computer Science and Enigneering', '77.43', '100', '0'), (4980, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '163', '147', '310', '3', '94', 'West Bengal University Of Technology', 'ECE', '9.18', '10', '0'), (4981, 'Arizona State University', '6', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2013', '161', '146', '307', '3', '99', 'K J Somaiya College of Engiineering', 'mechanical', '9.12', '10', '0'), (4982, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '160', '161', '321', '3', '112', 'University of Pune', 'Electronics and Telecommunications', '59.07', '100', '42'), (4983, 'Arizona State University', '6', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2013', '166', '148', '314', '2', '101', 'Maharaja Sayajirao University Of Baroda', 'Mech eng', '3.94', '4', '0'), (4984, 'Arizona State University', '6', 'Admit', 'MS', 'EE / CS', 'Fall ', '2013', '163', '160', '323', '4.5', '111', 'VIT', 'ECE', '8.48', '10', '0'), (4985, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '145', '307', '3', '106', 'Government Engineering College ajmer', 'Computer Engineering', '66.7', '100', '0'), (4986, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '800', '660', '1460', '3.5', '104', 'Anna University', 'mechanical', '75', '100', '0'), (4987, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '164', '148', '312', '3', '94', 'BITS Goa', 'Mechanical', '6.5', '10', '0'), (4988, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering / Electrical Computer Engineering', 'Fall ', '2015', '161', '147', '308', '3', '105', 'MU', 'Electronics and Telecommunication engineering', '72', '100', '0'), (4989, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '161', '154', '315', '3', '98', 'MU', 'IT', '63', '100', '17'), (4990, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '167', '154', '321', '4.5', '114', 'KIIT', 'Electronics and Electrical', '9.08', '10', '0'), (4991, 'Arizona State University', '6', 'Admit', 'MS', 'Civil and Environmental Engg', 'Fall ', '2015', '162', '154', '316', '3.5', '111', 'Kathmandu University', 'Civil', '3.42', '4', '7'), (4992, 'Arizona State University', '6', 'Admit', 'MS', 'analytics', 'Summer ', '2014', '165', '154', '319', '4', '109', 'Siddaganga Institue of Technology', 'Electronics and Communications Engineering', '8.82', '10', '0'), (4993, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Spring ', '2015', '161', '151', '312', '3.5', '102', 'Sardar Patel College of Engineering', 'Civil', '72', '100', '24'), (4994, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '161', '146', '307', '4', '100', 'University of Pune', 'IT', '75.56', '100', '0'), (4995, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '159', '148', '307', '3', '104', 'Jadavpur University', 'Electrical Engineering', '8.17', '10', '0'), (4996, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '161', '153', '314', '4', '102', 'Netaji Subhas Institute of Technology', 'Electrical Engineering', '8.02', '10', '0'), (4997, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '159', '158', '317', '3.5', '113', 'Sri Venkateswara College of Engineering', 'CSE', '7.99', '10', '0'), (4998, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '170', '151', '321', '4', '102', 'IIT Kharagpur', 'ECE', '8.64', '10', '0'), (4999, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '159', '147', '306', '3.5', '100', 'Model Engineering College', 'Computer science', '80', '100', '0'), (5000, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '156', '319', '3.5', '103', 'SGSITS', 'Electronics & Instrumentation', '8', '10', '0'), (5001, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Spring ', '2011', '450', '800', '1250', '3.5', '92', 'NUDT(China)', 'CS', '0', '0', '0'), (5002, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '154', '315', '3.5', '104', 'BVBCET', 'Information Science', '8.7', '10', '0'), (5003, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '168', '147', '315', '2.5', '90', 'BITS Pilani', 'Electronics and Instrumentation', '7.44', '10', '0'), (5004, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '166', '152', '318', '3.5', '100', 'M.V.S.R Engineering College', 'Electronics & Communication', '76.23', '100', '0'), (5005, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '157', '320', '3.5', 'None', "St Joseph's College of Engineering", 'Information Technology', '7.52', '10', '0'), (5006, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2015', '167', '148', '315', '3', '101', 'ISM Dhanbad', 'electronics and communication engineering', '8.2', '10', '0'), (5007, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '640', '1400', '3.5', '110', 'SASTRA', 'ECE', '8.54', '10', '0'), (5008, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2006', '790', '540', '1330', '5.5', '277', 'K J Somaiya College of Engiineering', 'Mechanical Engineering', '73.14', '100', '0'), (5009, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '170', '149', '319', '3.5', '96', 'Heritage Institute of Technology', 'Computer Science and Engineering', '88', '100', '54'), (5010, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '164', '153', '317', '3.5', '108', 'VIT', 'Electronics and instrumentation', '8.58', '10', '0'), (5011, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '730', '590', '1320', '3', '107', 'Manipal Institue of Technology', 'ECE', '7.47', '10', '0'), (5012, 'Arizona State University', '6', 'Admit', 'MS', 'software engineering', 'Fall ', '2013', '159', '150', '309', '3', '102', 'JNTU', 'Computer Science and Engineering', '67.48', '100', '0'), (5013, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '790', '620', '1410', 'None', '100', 'K J Somaiya College of Engiineering', 'Electronics and Telecommunication', '65', '100', '0'), (5014, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '400', '1180', '3.5', '103', 'MU', 'Electronics and telecommunication', '73', '100', '0'), (5015, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '760', '620', '1380', '3', '96', 'Panjab University', 'Computer Science', '80.67', '100', '0'), (5016, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '165', '161', '326', '3', '110', 'Jaypee Institute of Information Technology', 'IT', '6.2', '10', '0'), (5017, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '740', '360', '1100', '3.5', 'None', 'Madras Institute of Technology', 'production engineering', '8.6', '10', '0'), (5018, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '740', '620', '1360', '3', '99', 'Zakir husain college AMU', 'Electronics engg', '8.65', '10', '0'), (5019, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '168', '155', '323', '3.5', '110', 'IIT Allahabad', 'Computer Science', '8.9', '10', '0'), (5020, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '164', '157', '321', '3.5', '108', 'CEG', 'computer science', '8.82', '10', '36'), (5021, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '550', '1330', '4', '103', 'University of Kerala', 'Computer Science', '7.3', '10', '0'), (5022, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '740', '650', '1390', '3', '93', 'Sreenidhi Institute of Science & Technology', 'electronics and computers', '72', '100', '0'), (5023, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '470', '1260', '3', '96', 'MVSR', 'Information Technology', '78', '100', '0'), (5024, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '170', '152', '322', '3', 'None', 'BITS Pilani', 'E&I;', '7.58', '10', '24'), (5025, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '720', '500', '1220', '3.5', '105', 'VTU', 'Information Science', '82', '100', '0'), (5026, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '170', '154', '324', '3', '97', 'ISM Dhanbad', 'Electrical Enfineering', '7.67', '10', '0'), (5027, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '157', '323', '3.5', '98', 'Thapar University', 'Computer Science', '7.96', '10', '0'), (5028, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '155', '149', '304', '3.5', '106', 'JNTU', 'CS', '66', '100', '0'), (5029, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '800', '550', '1350', '3.5', '110', 'SASTRA', 'Electrical & Electronics Engineering', '9.00427', '10', '0'), (5030, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '570', '1370', '4', '110', 'The LNM Institute of Information Technology', 'Computer Science', '7.6', '10', '0'), (5031, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '168', '154', '322', '3', '105', 'MDU', 'ECE(Hons)', '71', '100', '45'), (5032, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '148', '313', 'None', '108', 'Amrita School of Engineering', 'cse', '9.59', '100', '0'), (5033, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '155', '148', '303', '3', '98', 'GITAM', 'Electrical and Electronics Engineering', '8.32', '10', '0'), (5034, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '790', '590', '1380', '4', '273', 'None', '0', '0', '0', '0'), (5035, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '153', '315', '4', '107', 'Inderprastha engineering college(Affiliated to Uttar Pradesh Technical university)', 'Computer Science and Engineering', '82.74', '100', '0'), (5036, 'Arizona State University', '6', 'Admit', 'MS', 'CS', 'Fall ', '2012', '790', '670', '1460', '4.5', '111', 'Manipal Institue of Technology', 'Electronics and Comm.', '8.48', '10', '0'), (5037, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '720', '760', '1480', '4.5', '293', 'VTU', 'Info Sc and Engg', '76', '100', '0'), (5038, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '163', '158', '321', 'None', '110', 'NIT Hamirpur', 'Electronics & Communication Engg.', '9', '10', '0'), (5039, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall', 'None', '730', '580', '1310', '3', 'None', 'NIT Warangal', 'ECE', '7.84', '10', '0'), (5040, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '148', '309', '3.5', '107', 'Banasthali University', 'Information Technology', '79.2', '100', '0'), (5041, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '170', '154', '324', '4.5', '110', 'VIT University', 'Electronics And Communication', '9.21', '10', '0'), (5042, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring', 'None', '167', '147', '314', '3', '94', 'NIT Rourkela', 'Computer Science', '9.6', '10', '26'), (5043, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '168', '152', '320', '4', '104', 'NIT Kurukshetra', 'Mechanical Engineering', '8.53', '10', '0'), (5044, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '630', '1430', '3', '111', 'NIT Surat', 'Electronics Engg.', '8.57', '10', '0'), (5045, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2007', '800', '630', '1430', '4', '283', 'Osmania University', 'Electronics and Communication', '82.92', '100', '0'), (5046, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '162', '154', '316', '4', '109', 'VTU', 'CS', '81', '100', '53'), (5047, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '168', '162', '330', '4', '114', 'Thapar University', 'Mechanical Engineering', '8.31', '10', '0'), (5048, 'Arizona State University', '6', 'Admit', 'MS', 'environmental engineering', '81', 'None', '159', '0', '159', '0', '107', 'Nagpur University', 'Civil Engg', '58', '100', '0'), (5049, 'Arizona State University', '6', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (5050, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '800', '660', '1460', '4', '114', 'PICT', 'Information Technology', '3.51', '4', '0'), (5051, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '164', '157', '321', '4.5', '109', 'Amrita Vishwa Vidhyapeetham', 'Information Technology', '8.8', '10', '24'), (5052, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '164', '157', '321', '4.5', '113', 'Dr. Babasaheb Ambedkar Technological University Lonere', 'Chemical Engineering', '8.49', '10', '0'), (5053, 'Arizona State University', '6', 'Admit', 'MS', 'Aerospace Engineering', 'Spring ', '2012', '760', '330', '1090', '3', '90', 'MSRIT', 'MECHANICAL', '9.42', '100', '0'), (5054, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '160', '146', '306', '3', '97', 'BMSCE', 'IEM', '8.77', '10', '0'), (5055, 'Arizona State University', '6', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2012', '710', '640', '1350', '3.5', '115', 'Anna University', 'biomedical engineering', '8.68', '10', '0'), (5056, 'Arizona State University', '6', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2014', '161', '153', '314', '3.5', '107', 'SRM', 'Biotechnology', '8.58', '10', '0'), (5057, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '151', '314', '4', '107', 'PESIT', 'CS', '7.69', '10', '0'), (5058, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '165', '152', '317', '4', '112', 'Vishwakarma Institute of Technology', 'Electronics', '8.72', '10', '0'), (5059, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '168', '159', '327', 'None', '109', 'Delhi College Of Engineeing', 'Mechanical Department', '68.7', '100', '10'), (5060, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '164', '166', '330', '4.5', 'None', 'VIT', 'ECE', '8.65', '10', '0'), (5061, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '790', '450', '1240', '3', '97', 'VITU', 'Mechanical', '8.5', '10', '0'), (5062, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '450', '1250', '4', '99', 'IIIT Hyderabad', 'ECE', '7.56', '10', '0'), (5063, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall', 'None', '164', '146', '310', '3', '97', 'VIT', 'ECE', '9.1', '10', '50'), (5064, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '161', '145', '306', '3.5', '105', 'Anna University', 'Mechanical Engineering', '8.33', '10', '0'), (5065, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Spring ', '2013', '158', '159', '317', '3', '111', 'VTU', 'Electronics and Communication', '80.17', '100', '0'), (5066, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '144', '308', '3', '101', 'G.H Patel colg of Engg. Sardar Patel University', 'Information Technology', '8.88', '10', '0'), (5067, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '141', '301', '4', '98', 'Jaya Engineering College', 'Computer Science and Engineering', '80', '100', '29'), (5068, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '166', '158', '324', '3', '102', 'KIIT', 'Electrical', '8.2', '10', '0'), (5069, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '800', '500', '1300', '4.5', '283', 'IP University Delhi', 'CSE', '81.61', '100', '0'), (5070, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '770', '570', '1340', '3', 'None', 'WBUT', 'applied electronics and instrumentation', '8', '10', '0'), (5071, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '167', '155', '322', '4', '112', 'PICT', 'IT', '3.8', '4', '0'), (5072, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '160', '149', '309', '3.5', '104', 'Chaitanya Bharathi Institute of Technology', 'Mechanical Production', '76', '100', '0'), (5073, 'Arizona State University', '6', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2012', '780', '650', '1430', '3.5', '106', 'SSN College of Engineering', 'BIomedical Engineering', '7.98', '10', '0'), (5074, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '600', '1390', '4', '110', 'Punjabi University', 'Computer Engineering', '78.37', '100', '0'), (5075, 'Arizona State University', '6', 'Admit', 'MS', 'Automotive Engineering', 'Fall ', '2015', '170', '158', '328', '4', '107', 'Sri Venkateswara College of Engineering', 'EEE', '84', '100', '46'), (5076, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '164', '147', '311', '3', '100', 'NIT Surathkal', 'Computer Science', '8.11', '10', '24'), (5077, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2006', '790', '610', '1400', '5', '263', 'Anna University', 'ECE', '74', '10', '0'), (5078, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '165', '157', '322', '4', '112', 'BVBCET', 'ECE', '81', '100', '0'), (5079, 'Arizona State University', '6', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2014', '164', '153', '317', '3.5', '106', 'GGSIPU', 'Computer Science', '76', '100', '0'), (5080, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '168', '154', '322', '4', '110', 'Nagpur University', 'Electrical engineering', '74.4', '100', '0'), (5081, 'Arizona State University', '6', 'Admit', 'MS', 'Materials Science & Engineering', 'Fall ', '2012', '800', '570', '1370', '3.5', '103', 'NIT Warangal', 'Metallurgical and Materials Engineering', '9.1', '10', '0'), (5082, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '780', '500', '1280', '3', '106', 'SASTRA', 'Electronics and Communication Engineering', '9.135', '10', '0'), (5083, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '158', '153', '311', '3.5', '106', 'BIT Mesra', 'Computer Science', '7.39', '10', '0'), (5084, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2010', '790', '580', '1370', '4', '111', 'Pondicherry Engineering College', 'Mechanical Engg', '8.1', '10', '0'), (5085, 'Arizona State University', '6', 'Admit', 'MS', 'Management Information System', 'Spring', 'None', '160', '139', '299', '3', 'None', 'Princeton College of Engg & Tech', 'Electronics and communications', '77.17', '100', '0'), (5086, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '790', '440', '1230', '3', '93', 'SRKR Engineering College', 'CSE', '82', '100', '0'), (5087, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2011', '770', '530', '1300', '3.5', 'None', 'Madras Institute of Technology', 'ECE', '8.72', '10', '0'), (5088, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '800', '480', '1280', '3.5', '98', 'MVSR', 'I.T', '75', '100', '0'), (5089, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '159', '150', '309', '4', '107', 'VTU', 'Computer Science', '72.5', '100', '46'), (5090, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '160', '152', '312', '3.5', '93', 'Shri Govindram Seksaria institute of technolgy and sciences', 'Electricals', '80.38', '100', '0'), (5091, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '150', '314', '3.5', '97', 'NIT Calicut', 'Computer Science and Engineering', '8.25', '10', '36'), (5092, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '162', '149', '311', '4', '108', 'Velammal Engineering College', 'Mechanical', '8.5', '10', '0'), (5093, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '164', '153', '317', '3.5', '108', 'NIT Calicut', 'Mechanical Eng', '8.18', '10', '29'), (5094, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '163', '155', '318', '3.5', '111', 'Velammal Engineering College', 'EEE', '8.5', '10', '0'), (5095, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '450', '1250', '4', '107', 'JNTU', 'CSE', '70.34', '100', '0'), (5096, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '162', '161', '323', '3.5', '114', 'None', 'Mechanical Engineering', '7.8', '10', '0'), (5097, 'Arizona State University', '6', 'Admit', 'MS', 'Materials Science & Engineering', 'Fall ', '2015', '160', '151', '311', '3.5', '104', 'CEG', 'Materials Science & Engineering', '8.03', '10', '0'), (5098, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '163', '151', '314', '3', '100', 'MITCOE', 'Mechanical', '0', '0', '0'), (5099, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '570', '1370', '3.5', '113', 'CEG', 'Electrical and Electronics Engineering', '8.71', '10', '0'), (5100, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '149', '308', '4', '105', 'Amrita School of Engineering', 'Infomation Technology', '7.75', '10', '24'), (5101, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2010', '790', '550', '1340', '4', '100', 'PESIT', 'ECE', '69.45', '100', '0'), (5102, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '169', '154', '323', '4.5', '111', 'MU', 'Electronics and telecommunication', '80', '100', '0'), (5103, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2014', '163', '151', '314', '3', '100', 'JNTU', 'ece', '8', '10', '0'), (5104, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '760', '610', '1370', '3', '102', 'NIT Calicut', 'Mechanical Engineering', '7.1', '10', '0'), (5105, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '164', '148', '312', '3', '103', 'D J Sanghvi', 'Chemical Engineering', '70', '100', '0'), (5106, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '170', '156', '326', '4', 'None', 'BITS Pilani', 'Mechanical Engineering', '6.8', '10', '0'), (5107, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '165', '157', '322', '3', '108', 'Jadavpur University', 'Electrical Engineering', '7.45', '10', '12'), (5108, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '166', '158', '324', '4', '111', 'Manipal Institue of Technology', 'CSE', '9.56', '10', '0'), (5109, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '170', '159', '329', '4', '111', 'GGSIPU', 'Computer Science and Engineering', '76.52', '100', '0'), (5110, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '154', '160', '314', '3.5', '108', 'University of Pune', 'Computer Science', '70.26', '100', '25'), (5111, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '165', '157', '322', '4', '111', 'Cochin University of Science and Technology', 'Computer Science', '67', '100', '76'), (5112, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '169', '159', '328', '4.5', '102', 'BITS Pilani', 'Electrical and Electronics Engineering', '8.04', '10', '2'), (5113, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '170', '155', '325', '3.5', 'None', 'BESU Shibpur', 'Computer Science and Technology', '87', '100', '0'), (5114, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '165', '146', '311', '3.5', '99', 'SRM', 'Mechatronics', '9.2', '10', '0'), (5115, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '510', '1290', '3.5', '105', 'West Bengal University Of Technology', 'Electronics and communication', '8.55', '10', '0'), (5116, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '152', '315', '3.5', '108', 'NIT Kurukshetra', 'computer engineering', '8.8', '10', '18'), (5117, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '780', '490', '1270', '4', '100', 'SSN College of Engineering', 'Computer Science', '87', '100', '0'), (5118, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '167', '150', '317', '3.5', '97', 'GGSIPU', 'Information Technology', '76.34', '100', '0'), (5119, 'Arizona State University', '6', 'Admit', 'MS', 'Business Analytics', 'Fall ', '2014', '165', '152', '317', '3.5', '104', 'MSRIT', 'Electronics and Communication', '8.45', '10', '0'), (5120, 'Arizona State University', '6', 'Admit', 'MS', 'Biomedical Engineering', 'Spring ', '2015', '158', '147', '305', '3', '85', 'None', 'Biotechnology', '75', '100', '26'), (5121, 'Arizona State University', '6', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2011', '700', '500', '1200', '3.5', '110', 'Dr D Y Patil University', '0', '0', '0', '0'), (5122, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '560', '1360', '4', '111', 'MU', 'ECE', '73', '100', '0'), (5123, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2016', '158', '152', '310', '3', '102', 'Galgotia College of Engg & Technology (UPTU)', 'Electronics & Instrumentation', '70.9', '100', '0'), (5124, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '165', '155', '320', '3', '103', 'BITS Pilani', 'Information Systems', '7.19', '10', '0'), (5125, 'Arizona State University', '6', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '800', '350', '1150', '3.5', '93', 'MU', 'Electronics and Telecommuncation', '68', '100', '0'), (5126, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2013', '164', '154', '318', 'None', 'None', 'NIT Surat', 'Mechanical Engineering', '8.3', '10', '0'), (5127, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '770', '460', '1230', '3', '110', 'PESIT', 'Telecommunication', '67.9', '100', '0'), (5128, 'Arizona State University', '6', 'Admit', 'MS', 'Energy Technologies', 'Fall ', '2014', '164', '162', '326', '4.5', 'None', 'R V College of Engineering', 'Mechanical Engineering', '8.83', '10', '0'), (5129, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '690', '1490', '5', '114', 'VTU', 'Electronics and Communication', '9.85', '10', '0'), (5130, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '145', '307', '3.5', '100', 'CEG', 'Computer Science', '8.3', '10', '0'), (5131, 'Arizona State University', '6', 'Admit', 'MS', 'Integrated Manufacturing Systems Engineering', 'Fall ', '2013', '166', '152', '318', '3', '104', 'BITS Pilani', 'Mechanical Engineering', '6.87', '10', '0'), (5132, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '540', '1340', '3.5', '97', 'Pune University', 'electronics and telecommunication', '3.3', '4', '0'), (5133, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '160', '146', '306', '3', 'None', 'Anna University', 'Computer Science', '0', '0', '0'), (5134, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '165', '144', '309', '3', '104', 'JNTU', 'ECE', '79.7', '100', '0'), (5135, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '162', '147', '309', '3.5', '97', 'Vasavi College of Engineering', 'Computer Science', '91', '100', '0'), (5136, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '168', '151', '319', '3', '108', 'Sri Jayachamarajendra College of Engineering', 'Information Science', '78.4', '100', '0'), (5137, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '710', '490', '1200', '4', '109', 'Anna University', 'B.E Computer Science', '84', '100', '0'), (5138, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '158', '148', '306', '3.5', '102', 'Thakur College of Engineering and Technology', 'Computer Science', '65.3', '100', '0'), (5139, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '166', '149', '315', '3', 'None', 'CEG', 'Computer Science', '7.88', '10', '0'), (5140, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '152', '313', '3.5', '113', 'KL University', 'ECE', '8.32', '10', '0'), (5141, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '164', '151', '315', '3.5', '104', 'BITS Pilani', 'Electronics and Communication', '8.4', '10', '0'), (5142, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '147', '307', '3.5', '104', 'JNTU', 'CSE', '79.5', '100', '0'), (5143, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '720', '1520', '3.5', '112', 'Anil Neerukonda Institue of Technology and Sciences', 'EEE', '8.55', '10', '0'), (5144, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2015', '168', '149', '317', '3', '94', 'ANITS', 'Computer Science', '78', '100', '0'), (5145, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '158', '151', '309', '3', '7', 'CVRCE', 'ECE', '73.1', '100', '0'), (5146, 'Arizona State University', '6', 'Admit', 'MS', 'Materials Science & Engineering', 'Fall ', '2011', '740', '540', '1280', '4', '105', 'NIT Warangal', 'Metallurgical and Materials Engineering', '9.01', '10', '0'), (5147, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '163', '152', '315', '3.5', '110', 'Amrita School of Engineering', 'Electronics and Communication', '7.9', '10', '0'), (5148, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '750', '410', '1160', '3.5', '92', 'Madras Institute of Technology', 'IT', '7.8', '10', '0'), (5149, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '560', '1350', '3', '110', 'RNSIT', 'Information Science', '80.1', '100', '0'), (5150, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '520', '1300', '3.5', '103', 'Anna University', 'Electrical Engineering', '77.7', '100', '0'), (5151, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '540', '1330', '4', '102', 'Anna University', 'Electronics and Communication', '81', '100', '0'), (5152, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '540', '1330', '4', '102', 'Anna University', 'Electronics and Commuinication', '81', '100', '0'), (5153, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2013', '155', '144', '299', '22', 'None', 'JNTU', 'electrical and electronics engineering', '3.6', '4', '0'), (5154, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '165', '155', '320', 'None', '107', 'VIT University', 'CS', '8.85', '10', '40'), (5155, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '163', '144', '307', '2.5', '102', 'GITAM', 'Mechanical Engineering', '8.4', '10', '0'), (5156, 'Arizona State University', '6', 'Admit', 'MS', 'Computer engineering VLSI CAD', 'Fall ', '2011', '780', '530', '1310', '3', '98', 'SJCE', 'Electronics and Communication', '80', '100', '0'), (5157, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '13', '168', '156', '324', 'None', '113', 'University of Pune', 'Electronics', '63.8', '100', '0'), (5158, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '170', '159', '329', '3.5', '110', 'NIT Nagpur', 'Electronics and Communication', '8.93', '10', '42'), (5159, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '149', '311', '3.5', '103', 'Anna University', 'Computer Science', '76', '100', '0'), (5160, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '700', '640', '1340', '3.5', '105', 'VTU', 'Information Science', '75', '100', '0'), (5161, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '650', '1450', '4', '112', 'MU', 'ELECTRONICS ENGINEERING', '76.01', '100', '0'), (5162, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '159', '323', '5', '119', 'MVJ College of Engineering', 'Computer Science', '75.2', '100', '0'), (5163, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '165', '154', '319', '3', '101', 'NIT Calicut', 'Electronics and communication engineering', '7.07', '10', '0'), (5164, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '151', '315', '4', '105', 'VSS Univ of Technology', 'Computer Science', '8.05', '10', '0'), (5165, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '800', '650', '1450', '3.5', '102', 'Amrita School of Engineering', 'ECE', '8.86', '10', '0'), (5166, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '165', '154', '319', '3.5', '96', 'VTU', 'Electronics and Communication', '79', '100', '0'), (5167, 'Arizona State University', '6', 'Admit', 'MS', 'CS / MIS', 'Spring ', '2014', '160', '148', '308', 'None', '102', 'SSN College of Engineering', 'IT', '85', '100', '0'), (5168, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '800', '630', '1430', '3.5', '112', 'Osmania University', 'Electrical Engineering', '71', '100', '0'), (5169, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '750', '620', '1370', '3.5', '93', 'Pune University', 'Computer', '66.5', '100', '0'), (5170, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '157', '145', '302', 'None', '100', 'R V College of Engineering', 'cs', '7.09', '10', '0'), (5171, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2013', '159', '161', '320', '4', '117', 'IEM', 'CS', '8.43', '10', '0'), (5172, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '590', '1390', '3', '112', 'None', 'EE', '9.1', '10', '0'), (5173, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '750', '570', '1320', '3', '106', 'UA', 'Electronics And Communication', '75.7', '100', '0'), (5174, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '160', '150', '310', '3', '100', 'PICT', 'Computer Science', '3.2', '4', '0'), (5175, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '350', '1110', '4', '95', 'Bangalore Institute of Technology', 'Telecommunication', '80', '100', '0'), (5176, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '166', '152', '318', '3.5', '104', 'BITS Pilani', 'EEE', '8.1', '100', '0'), (5177, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Networking', 'Fall ', '2013', '161', '156', '317', '4', '105', 'Kerala University', 'Information Technology', '3.98', '4', '0'), (5178, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '147', '312', '3', 'None', 'CBIT', 'CSE', '84', '100', '0'), (5179, 'Arizona State University', '6', 'Admit', 'MS', 'Management Information System', 'Fall ', '2015', '163', '161', '324', '4.5', '112', "St Joseph's College of Engineering", 'Information Technology', '8.2', '10', '23'), (5180, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', 'None', 'None', '0', 'None', 'None', 'National Institute of Science and Technology Orissa', 'CSE', '8.25', '10', '0'), (5181, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '163', '157', '320', '4.5', '115', 'NIT-Durgapur', 'Mechanical Engg.', '8.32', '10', '0'), (5182, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2016', '164', '152', '316', '3.5', 'None', 'VSS Univ of Technology', 'Electronics and Telecomm.', '9.26', '10', '0'), (5183, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2016', '155', '148', '303', '3', '95', 'Anna University', 'ECE', '8.71', '10', '31'), (5184, 'Arizona State University', '6', 'Admit', 'MS', 'Supply chain management', 'Fall ', '2015', '161', '155', '316', '3.5', 'None', 'Vidyalankar Institute of Technology', 'Electronics', '62.21', '100', '0'), (5185, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '650', '1450', '4', '112', 'SSN College of Engineering', 'Electronics and Communication', '9', '10', '0'), (5186, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '740', '690', '1430', '3.5', '111', 'PSG College of Technology', 'EEE (SW)', '8.3', '10', '0'), (5187, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '167', '155', '322', '3', '102', 'NIT Calicut', 'Computer Science and Engineering', '7.46', '10', '26'), (5188, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2010', '800', '550', '1350', '4', '98', 'PSG College of Technology', 'Electronics and Communications', '8.89', '10', '0'), (5189, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '145', '304', '4', '105', 'Lakshmi Narain College of Technology', 'Information Technology', '77.8', '100', '0'), (5190, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '480', '1280', '3', '107', 'WBUT', 'IT', '7.85', '10', '0'), (5191, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '800', '740', '1540', '4.5', '293', 'D J Sanghvi', 'Computer Engg.', '72.91', '100', '0'), (5192, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '168', '164', '332', '4', 'None', 'NIE', 'Mechanical Engineering', '8.99', '10', '0'), (5193, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '157', '318', '5', '114', 'Anna University', 'CSE', '8.15', '10', '0'), (5194, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '162', '154', '316', '3.5', '115', 'M.V.S.R Engineering College', 'ECE', '82', '100', '0'), (5195, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '162', '157', '319', '4', 'None', 'Delhi University', 'ECE', '66', '100', '0'), (5196, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2008', '800', '590', '1390', '3.5', '106', 'W.B.U.T.', 'I.T.', '7.85', '10', '0'), (5197, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '510', '1300', '3', '107', 'Sri Jayachamarajendra College of Engineering', 'ec&e;', '9.32', '10', '0'), (5198, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '165', '145', '310', '3.5', '96', 'BITS Hyderabad', 'Electrical Engineering', '9.12', '10', '0'), (5199, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '159', '149', '308', '4.5', '111', 'VTU', 'Mechanical', '72', '100', '0'), (5200, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '550', '1350', '4', '107', 'DA-IICT', 'ICT (Information and Communication Technology)', '7.09', '10', '0'), (5201, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '520', '1320', '3.5', '111', 'VTU', 'E&C;', '7.7', '10', '0'), (5202, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2011', '800', '460', '1260', '3.5', '104', 'PSG College of Technology', 'Electrical and Electronics', '8.76', '10', '0'), (5203, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '800', '630', '1430', '4.5', '297', 'GITAM', 'Electronics & Communication', '90.23', '100', '0'), (5204, 'Arizona State University', '6', 'Admit', 'MS', 'Materials Science & Engineering', 'Fall ', '2015', '157', '151', '308', '3.5', '108', 'VTU', 'Mechanical', '70', '100', '18'), (5205, 'Arizona State University', '6', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2009', '740', '510', '1250', '3.5', '108', 'Amity University', 'Bioinformatics', '7.88', '10', '0'), (5206, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '164', '149', '313', '3', '104', 'None', 'Electronics and Telecommunication', '8.04', '100', '0'), (5207, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '158', '322', '3', '100', 'CUSAT', 'Computer Science And Engineering', '74.2', '100', '0'), (5208, 'Arizona State University', '6', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (5209, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '770', '640', '1410', '3', '106', 'SJCE', 'EEE', '9.03', '10', '0'), (5210, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '168', '151', '319', '3.5', '113', 'MU', 'Computer Engineering', '71.3', '100', '0'), (5211, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '162', '159', '321', '3.5', '102', 'Maamallan', 'ece', '8.66', '10', '0'), (5212, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '530', '1290', '3.5', '108', 'University of Pune', 'Computer', '69', '100', '0'), (5213, 'Arizona State University', '6', 'Admit', 'MS', 'Instrumentation and Control', 'Fall ', '2012', '790', '390', '1180', '3', '102', 'Anna University', 'Instrumentation and Control', '77', '100', '0'), (5214, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall', 'None', '760', '450', '1210', '3', '92', 'BITS Dubai', 'Electronics and Communication Engg', '6.91', '10', '0'), (5215, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '147', '168', '315', '3.5', '103', 'GNDU', 'CSE', '74', '100', '7'), (5216, 'Arizona State University', '6', 'Admit', 'MS', 'Chemical Engineering', 'Fall ', '2015', '170', '162', '332', '3.5', '110', 'NIT Calicut', 'Chemical engineering', '6.63', '10', '0'), (5217, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '156', '317', '4', '99', 'JNTU', 'CSE', '68', '100', '0'), (5218, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical & Computer Engg/MIS/Industrial/Systems Engg', 'Fall ', '2013', '161', '156', '317', '4.5', '113', 'University of Mumbai', 'Electronics', '73', '100', '0'), (5219, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '162', '156', '318', '4', '111', 'Manipal Institue of Technology', 'Mechanical and Manufacturing Engineering', '7.7', '10', '0'), (5220, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '158', '317', '4.5', '109', 'MVSR', 'Electronics and Communication', '75', '100', '0'), (5221, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '800', '600', '1400', '4.5', '280', 'IIIT Hyderabad', 'CSE', '7.2', '10', '0'), (5222, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '630', '1430', '3.5', '94', 'BITS Goa', 'Electronics and Instrumentation', '6.12', '10', '0'), (5223, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '161', '142', '303', '3', '102', 'Amrita Vishwa Vidhyapeetham', 'Electronics and Communication', '8.6', '10', '0'), (5224, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '800', '700', '1500', '4', '113', 'University of Pune', 'Information Technology', '62', '100', '0'), (5225, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2016', '154', '141', '295', '3', '81', 'SASTRA', 'Information Technology', '8', '10', '65'), (5226, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '164', '157', '321', '4', '111', 'SSN College of Engineering', 'ECE', '8.705', '10', '0'), (5227, 'Arizona State University', '6', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '151', '138', '289', '4', '100', 'Pune University', 'Electronics', '6', '100', '0'), (5228, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '640', '1440', '4.5', '112', 'NIT Durgapur', 'CSE', '85', '100', '0'), (5229, 'Arizona State University', '6', 'Admit', 'MS', 'Construction Management', 'Fall ', '2012', '800', '650', '1450', '4', 'None', 'BITS Pilani', 'civil', '6.54', '10', '0'), (5230, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '159', '144', '303', '3.5', '99', 'GITAM', 'Computer Science and Engineering', '8.85', '10', '0'), (5231, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '680', '1460', '4', '112', 'Uttarakhand Technical University', 'Information Technology', '81.1', '100', '0'), (5232, 'Arizona State University', '6', 'Admit', 'MS', 'Chemical Engineering', 'Fall ', '2012', '750', '470', '1220', '3.5', 'None', 'MU', 'Chemical', '74', '100', '0'), (5233, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '165', '152', '317', '3', '110', 'JNTU', 'ECE', '81.5', '100', '0'), (5234, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '167', '156', '323', '4', '112', 'Osmania University', 'Mechanical Engineering', '88.4', '100', '0'), (5235, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '460', '1260', '3.5', '99', 'Fr. Conceicao Rodrigues College of Engineering', 'Computer Science', '65.73', '100', '0'), (5236, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '680', '1480', '5', '114', 'MU', 'Como Sc', '71', '100', '0'), (5237, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring', 'None', '165', '152', '317', '3.5', '108', 'PESIT', 'Computer Science', '8.8', '10', '36'), (5238, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '166', '162', '328', '4', '111', 'Osmania University', 'ECE', '80', '100', '0'), (5239, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '168', '157', '325', '4', '112', 'NIT Tirchy', 'Instrumentation and Control Engineering', '9.1', '10', '0'), (5240, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '800', '380', '1180', '3', '101', 'NIT Durgapur', 'ECE', '8.84', '10', '0'), (5241, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '620', '570', '1190', '4', '57', 'SSN College of Engineering', 'CSE', '83', '100', '0'), (5242, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '760', '480', '1240', '3.5', '102', 'JNTU', 'Computer Science and Engineering', '73.95', '100', '0'), (5243, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering/Comp Science', 'Fall ', '2014', '162', '157', '319', '3.5', '112', 'Sardar Patel College of Engineering', 'Electronics', '63', '100', '20'), (5244, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '156', '323', '4', '110', 'VIT', 'Electrical and Electronics', '8.51', '10', '0'), (5245, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '630', '1420', '3.5', '104', 'VTU', 'Computer Science and Electronics', '8.47', '10', '0'), (5246, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '730', '430', '1160', '3', '92', 'rmdec/anna univ', 'ece', '75', '100', '0'), (5247, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '163', '148', '311', '3', 'None', 'University of Delhi', 'Computer Sc', '67', '100', '28'), (5248, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '163', '150', '313', '4', '109', 'None', '0', '0', '0', '0'), (5249, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '156', '149', '305', '3', '106', 'Miami University', 'Computer Science', '3.34', '4', '0'), (5250, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '670', '1470', '3.5', '100', 'Jaypee Institute of Information Technology', 'Electronics and Communication', '7.5', '10', '0'), (5251, 'Arizona State University', '6', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (5252, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '151', '319', '3.5', '108', 'Netaji Subhas Institute of Technology', 'Computers Engineering', '67.2', '100', '21'), (5253, 'Arizona State University', '6', 'Admit', 'MS', 'Chemical Engineering', 'Fall ', '2013', '169', '157', '326', '3.5', 'None', 'M.N.I.T. JAIPUR', 'CHEMICAL ENGINEERING', '8.65', '10', '0'), (5254, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2012', '780', '670', '1450', '4.5', '102', 'Ramdeobaba Engg. College Nagpur University', 'Electronics Engineering', '71.16', '100', '0'), (5255, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '168', '146', '314', '3', '108', 'Delhi University', 'ICE', '70.83', '100', '54'), (5256, 'Arizona State University', '6', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '770', '480', '1250', '4', '109', 'Thapar University', 'Electronics & Instrumentation', '8.31', '10', '0'), (5257, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '460', '1260', '4', '103', 'NIT Surat', 'Computer Engineering', '8.11', '10', '0'), (5258, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2016', '155', '150', '305', '3', '99', 'Anna University', 'EEE', '7.91', '10', '0'), (5259, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '160', '139', '299', '3', '92', 'VIT University', 'Mechanical Engineering', '7.96', '10', '0'), (5260, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '168', '149', '317', '3', '104', 'PICT', 'Computer Engg', '3.6', '4', '0'), (5261, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '520', '1320', '3.5', '100', 'Pune University', 'I.T.', '67.1', '100', '0'), (5262, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '460', '1260', '3', '90', 'Vasavi College of Engineering', 'CSE', '79', '100', '0'), (5263, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '141', '307', '3', '65', 'SNIST', 'Computer Science', '7.5', '10', '0'), (5264, 'Arizona State University', '6', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2012', '780', '640', '1420', '4', '110', 'Sri Sairam Engineering College', 'ECE', '7.9441', '10', '0'), (5265, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '167', '146', '313', '4', '98', 'MU', 'Mechanical', '65', '100', '0'), (5266, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '152', '311', '3.5', '108', 'Dayananda Sagar College of Engineering', 'Computer science', '74.4', '100', '0'), (5267, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2014', '162', '150', '312', '3', '94', 'Pondicherry University', 'Electronics and Communication Engineering', '7.91', '10', '0'), (5268, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '150', '312', '3.5', '102', 'NIT Calicut', 'CSE', '7.74', '10', '0'), (5269, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '169', '161', '330', '4.5', '117', 'None', 'Computer Science & Engineering', '8.92', '10', '0'), (5270, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '152', '316', '4.5', '112', 'MU', 'Information Technology', '75', '100', '0'), (5271, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '156', '143', '299', '3', '96', 'Gujarat Technological University', 'Mechancial Engineering', '67', '100', '0'), (5272, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '580', '1370', '5.5', '115', 'VTU', 'Computer Science & Engineering', '78', '100', '0'), (5273, 'Arizona State University', '6', 'Admit', 'MS', 'Materials Science & Engineering', 'Fall ', '2013', '165', '155', '320', '4.5', '116', 'Jadavpur University', 'Metallurgical and Material Engineering', '8.85', '10', '0'), (5274, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2013', '164', '160', '324', '4', '108', 'NITK Surathkal', 'civil', '7.1', '10', '0'), (5275, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '154', '317', '3.5', '104', 'College Of Engineering Roorkee', 'Computer Science', '73.5', '100', '0'), (5276, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '148', '309', '4', '96', 'CEG', '0', '9.07', '100', '0'), (5277, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '155', '315', '4', 'None', 'Amrita Vishwa Vidhyapeetham', 'Information Technology', '6.8', '10', '60'), (5278, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '152', '316', '4', '108', 'Gujarat Technological University', 'Computer', '8.78', '10', '0'), (5279, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '770', '650', '1420', '4.5', '117', 'NIT Durgapur', 'Electrical Engineering', '8.74', '10', '0'), (5280, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '750', '390', '1140', '3', '106', 'Osmania University', 'ECE', '75', '100', '0'), (5281, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '158', '147', '305', '4', '105', 'WBUT', 'CSE', '8.36', '10', '0'), (5282, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '164', '156', '320', '4', '108', 'VTU', 'Telecommunication Engg', '70', '100', '0'), (5283, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '148', '308', '3', '110', 'SRM', 'CSE', '83', '100', '0'), (5284, 'Arizona State University', '6', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2014', '164', '148', '312', '4', '108', 'BITS Hyderabad', 'Electrical Engineering', '7.71', '10', '0'), (5285, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '165', '160', '325', '5', '118', 'NITK Surathkal', 'ECE', '8.1', '10', '0'), (5286, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '166', '155', '321', '4', '108', 'CEG', 'Mechanical', '8.11', '10', '0'), (5287, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '164', '150', '314', '3', '98', 'Graphic Era University', 'Computer Science and Engineering', '75.31', '100', '24'), (5288, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '620', '1420', '4.5', '105', 'BITS Pilani', 'Physics/EEE (Dual Degree)', '9.67', '10', '0'), (5289, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '510', '1300', '3', '105', 'Anna University', 'Computer Science', '9.3', '10', '0'), (5290, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '169', '161', '330', '3.5', '111', 'PSG College of Technology', 'Electronics and communication', '8.66', '10', '0'), (5291, 'Arizona State University', '6', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2011', '730', '510', '1240', '3.5', '106', 'Anna University', 'cse', '8.67', '10', '0'), (5292, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '162', '323', '4.5', '111', 'Manipal Institue of Technology', 'Information Technology', '7.59', '10', '0'), (5293, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '13', '166', '154', '320', '2.5', '108', 'BITS Goa', 'EEE', '7.66', '10', '0'), (5294, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '760', '460', '1220', 'None', '103', 'VTU', 'Electronics and Communication', '79', '100', '0'), (5295, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '170', '157', '327', '4', 'None', 'NIT Rourkela', 'Electronics and Communication', '8.51', '10', '0'), (5296, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '460', '1250', '3.5', '110', 'Pune University', 'electronics enineering', '58', '100', '0'), (5297, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '790', '650', '1440', '4', '114', 'Pune University', 'Computer Science', '73', '100', '0'), (5298, 'Arizona State University', '6', 'Admit', 'MS', 'software engineering', 'Fall ', '2015', 'None', 'None', '0', 'None', '105', 'None', '0', '0', '0', '60'), (5299, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '730', '590', '1320', '4', '273', 'K J Somaiya College of Engiineering', 'CE', '66', '100', '0'), (5300, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '159', '326', '4.5', '117', 'Delhi College Of Engineeing', 'Electrical & Electronics', '81.25', '100', '12'), (5301, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '170', '160', '330', '4', '112', 'Dr MGR College', 'Computer Science', '8.4', '10', '0'), (5302, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '170', '157', '327', '4', '108', 'MU', 'Electronics and Telecommunication', '59.7', '100', '0'), (5303, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering / Electrical Computer Engineering', 'Fall ', '2014', '161', '150', '311', '3.5', '96', 'K J Somaiya College of Engiineering', 'Electronics Engineering', '74.21', '100', '24'), (5304, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '169', '148', '317', '3.5', '109', 'Dharamsinh Desai University', 'Information Technology', '8.31', '10', '11'), (5305, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '620', '1400', '4', '96', 'SASTRA', 'ECE', '8.565', '10', '0'), (5306, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '150', '310', '3', '104', 'Dr.BAMU Aurangabad/MIT Aurangabad', 'Computer Science and Engineering', '63.98', '100', '0'), (5307, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '148', '311', 'None', 'None', 'Manipal Institue of Technology', 'Computer Science and Engineering', '7.72', '10', '0'), (5308, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '147', '311', '3', '98', 'DSCE', 'CS', '71.94', '100', '0'), (5309, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '168', '159', '327', '4', '115', 'NITK Surathkal', 'Mechanical Engg', '7.6', '10', '18'), (5310, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '780', '360', '1140', '3.5', '102', 'Nagarjuna University', 'Information science and technology', '83', '100', '0'), (5311, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '570', '1350', '3.5', '111', 'VTU', 'Information Science', '73', '100', '0'), (5312, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '162', '154', '316', '3.5', '110', 'MU', 'Mechanical', '73', '100', '0'), (5313, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '580', '1370', '4', '118', 'VTU', 'CSE', '81', '100', '0'), (5314, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '700', '1500', '4.5', '113', 'PESIT', 'ECE', '80.15', '100', '0'), (5315, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '560', '1330', '3', '102', 'MU', 'Computer', '70.4', '100', '0'), (5316, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '148', '313', '3', '108', 'Amrita School of Engineering', 'Computer Science', '7.4', '10', '0'), (5317, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '700', '1490', '4', '116', 'R V College of Engineering', 'electrical', '80.11', '100', '0'), (5318, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '164', '151', '315', '3.5', '108', 'Anna University', 'B.Tech I.T', '8', '10', '0'), (5319, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and computer science', 'Fall ', '2007', '760', '550', '1310', '4', '277', 'PTU', 'Electrical Engineering', '76.46', '100', '0'), (5320, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '790', '560', '1350', '4', '107', 'SASTRA', 'Mechanical', '9.3', '10', '0'), (5321, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '148', '316', '4', '101', 'University College of Engineering Jawaharlal Nehru Technological University', 'Computer Science', '79.2', '100', '0'), (5322, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '550', '1340', '3', 'None', 'JNTU', 'Computer Science', '77.1', '100', '0'), (5323, 'Arizona State University', '6', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '790', '690', '1480', '4', '112', 'MU', 'Computer', '64.5', '100', '0'), (5324, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2012', '800', '700', '1500', '4', '115', 'NIT Warangal', 'civil engg', '7.89', '10', '0'), (5325, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '163', '149', '312', '3.5', '95', 'VIIT', 'ENTC', '4', '100', '0'), (5326, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '750', '380', '1130', '2.5', '85', 'SVCE', 'EEE', '76', '100', '0'), (5327, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2014', '162', '151', '313', 'None', 'None', 'Malaviya NIT Jaipur', 'Civil Engineering', '7.03', '10', '0'), (5328, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '570', '1370', '3.5', '104', 'JNTU', 'ECE', '84', '100', '0'), (5329, 'Arizona State University', '6', 'Admit', 'MS', 'electronics', 'Fall ', '2012', '800', '680', '1480', '4', '101', 'University of Mumbai', 'Electronics', '80.44', '100', '0'), (5330, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '169', '159', '328', '4', '115', 'Veermata Jijabai Technological Institute', 'Mechanical Engineering', '7.5', '10', '0'), (5331, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '480', '1260', '3', '100', 'BVBCET', 'Information Science', '8.29', '10', '0'), (5332, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '167', '155', '322', '4', '111', 'UPTU', 'Computer Science & Engineering', '68.52', '100', '0'), (5333, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '166', '164', '330', '4', '108', 'VJTI', 'Computer Engineering', '7.5', '10', '0'), (5334, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '150', '311', '3.5', '99', 'Amrita School of Engineering', 'Computer Science and Engineering', '8.4', '10', '0'), (5335, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '790', '530', '1320', '3.5', '117', 'DR.AIT', 'ECE', '76', '100', '0'), (5336, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '770', '650', '1420', '5', '287', 'SASTRA', 'Information Technology', '9.2', '10', '0'), (5337, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '155', '320', '3', '88', 'PICT', 'Information Technology', '3.77', '4', '0'), (5338, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '157', '319', '3.5', '106', 'RGMCET', 'COMPUTER SCIENCE', '69', '100', '0'), (5339, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '151', '311', '3.5', '102', 'NIT Bhopal', 'Computer Science', '7.99', '10', '0'), (5340, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2014', '170', '144', '314', '3', '99', 'Andhra University', 'Civil Engineering', '8.24', '10', '0'), (5341, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2015', '165', '150', '315', '3', '105', 'VIT University', 'ECE', '7.92', '10', '3'), (5342, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '450', '1250', '4', '92', 'Chaitanya Bharathi Institute of Technology', 'ECE', '74', '100', '0'), (5343, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '155', '319', '4.5', '108', 'Anna University', 'CSE', '9.26', '10', '10'), (5344, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '740', '390', '1130', '3.5', '98', "st.thomas' college of engg and technology", 'information technology', '8.52', '10', '0'), (5345, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '720', '570', '1290', '3', '94', 'Anna University', 'cse', '7.5', '100', '0'), (5346, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '720', '540', '1260', '4', '105', 'VTU', 'EE', '79', '100', '0'), (5347, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '780', '530', '1310', '3', '94', 'College Of Engineering Roorkee', 'CS', '72', '100', '0'), (5348, 'Arizona State University', '6', 'Admit', 'MS', 'Materials Science & Engineering', 'Fall ', '2011', '800', '610', '1410', '4.5', '108', 'VNIT Nagpur', 'Metallurgy and Material Science Engg', '7.72', '10', '0'), (5349, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '167', '154', '321', '4', '114', 'SJCE', 'CS&E;', '8.69', '10', '0'), (5350, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '750', 'None', '750', '3', '100', 'VTU', 'EEE', '84.41', '100', '0'), (5351, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '145', '163', '308', '3', 'None', 'BITS Pilani', 'Mechanical Engieering', '7.39', '10', '0'), (5352, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2014', '170', '154', '324', '3', '103', 'NIT Kurukshetra', 'Civil Engineering', '7.8', '10', '0'), (5353, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Spring ', '2016', '160', '157', '317', '3.5', '115', 'SRM', 'Mechanical Engineering', '8.744', '10', '0'), (5354, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '160', '150', '310', '3', '103', 'BITS Pilani', 'EEE', '9.24', '10', '0'), (5355, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '170', '152', '322', '4.5', '116', 'BITS Pilani', 'Computer Science', '8.45', '10', '0'), (5356, 'Arizona State University', '6', 'Admit', 'MS', 'environmental engineering', 'Fall ', '2015', '161', '158', '319', '4', '116', 'University of Mumbai', 'Chemical Engineering', '64', '100', '10'), (5357, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '154', '316', '3', '109', 'Sri Venkateswara College of Engineering', 'Computer Science Engineering', '7.7', '10', '0'), (5358, 'Arizona State University', '6', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2007', '720', '510', '1230', '4', '267', 'VIT', 'Biotechnology', '8.56', '10', '0'), (5359, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '680', '560', '1240', '3.5', '108', 'Anna University', 'Electrical & Electronics', '80', '100', '0'), (5360, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering/Comp Science', 'Fall ', '2014', '163', '157', '320', '4', '108', 'Pondicherry Engineering College', 'EEE', '7.7', '10', '42'), (5361, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '770', '530', '1300', '4', '108', 'Anna University', 'ECE', '78.74', '100', '0'), (5362, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '160', '150', '310', '3.5', 'None', 'Velammal Engineering College', 'EEE', '8.62', '10', '0'), (5363, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '166', '139', '305', '2.5', 'None', 'GITAM', 'ECE', '8.52', '10', '0'), (5364, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '500', '1270', '3.5', '95', 'Anna University', 'cse', '84', '100', '0'), (5365, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '740', '650', '1390', '3', '106', 'VTU', 'Computer Science', '75.4', '100', '0'), (5366, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '158', '150', '308', '3', '97', 'Sri Sairam Engineering College', 'EEE', '82', '100', '0'), (5367, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '165', '157', '322', '4.5', '110', 'None', '0', '0', '0', '0'), (5368, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '720', '490', '1210', '3.5', '105', 'BMSCE', 'ECE', '79', '100', '0'), (5369, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '750', '350', '1100', '3.5', 'None', 'Panjab University', 'UIET', '75', '100', '0'), (5370, 'Arizona State University', '6', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (5371, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '166', '157', '323', '4', '114', 'PSG College of Technology', 'Electronics and Communication Engineering', '9.7', '10', '0'), (5372, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '152', '315', '3', '114', 'SSN College of Engineering', 'Computer Science Engg', '73', '100', '0'), (5373, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2014', '790', '510', '1300', '3.5', '101', 'SRM', 'Mechanical', '9.19', '10', '0'), (5374, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '163', '148', '311', 'None', '106', 'Mody Institute of Technology and Science', 'Computer Science', '9.76', '10', '58'), (5375, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '159', '156', '315', '3', '100', 'CEG', 'Industrial Engineering', '7.97', '10', '0'), (5376, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall', 'None', '163', '156', '319', '4', '109', 'MU', 'Electronics and telecommunication', '76.5', '100', '0'), (5377, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '167', '153', '320', '4.5', '106', 'Amrita School of Engineering', 'ECE', '9.27', '10', '0'), (5378, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '159', '154', '313', '3', '109', 'CEG', 'Computer Science and Engineering', '9.18', '10', '0'), (5379, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '350', '1140', '3', '97', 'Coimbatore Insitute of Technology', 'MSc Software Engineering', '71', '100', '0'), (5380, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '78', '470', '548', '4', '108', 'SSN College of Engineering', 'ELECTRONICS AND COMMUNICATIONSW', '80', '100', '0'), (5381, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '150', '312', '3.5', '98', 'K J Somaiya College of Engiineering', 'Information Technology', '65.6', '100', '0'), (5382, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '710', '530', '1240', '3', '104', 'VTU', 'Computer Science', '72', '100', '0'), (5383, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '144', '306', '4', '108', 'PSG College of Technology', 'EEE', '9.49', '10', '0'), (5384, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '162', '149', '311', '3', '86', 'VIT University', 'Mechanical engg', '7.82', '10', '0'), (5385, 'Arizona State University', '6', 'Admit', 'MS', 'analytics', 'Fall ', '2014', '162', '151', '313', '3.5', '100', 'Anna University', 'Cse', '7.5', '10', '0'), (5386, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '800', '600', '1400', '4', '108', 'VIT', 'ECE', '9.16', '10', '0'), (5387, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '760', '590', '1350', '3', '117', 'RMD Engineering College', 'Electronics and Communication', '8.7', '10', '0'), (5388, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '750', '400', '1150', '3', '92', 'Coimbatore Insitute of Technology', 'Electronics and communication Engg', '8.7', '10', '0'), (5389, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '169', '149', '318', '3', '104', 'GGSIPU', 'Computer Science', '73', '100', '57'), (5390, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'Anna University', 'Mechanical', '7.5', '10', '0'), (5391, 'Arizona State University', '6', 'Admit', 'MS', 'EE / CS', 'Fall ', '2015', '163', '160', '323', '4', '111', 'BITS Pilani', 'Electrical and Electronics', '7.99', '10', '54'), (5392, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '165', '156', '321', '3.5', '108', 'BMSCE', 'Computer Science', '9.26', '10', '0'), (5393, 'Arizona State University', '6', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2015', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (5394, 'Arizona State University', '6', 'Admit', 'MS', 'Metallurgy and Materials Engineering', 'Spring ', '2014', '161', '144', '305', '3', '97', 'NIT RAIPUR', 'METALLURGY', '8.1', '10', '0'), (5395, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '166', '143', '309', 'None', '91', 'Sri Venkateswara College of Engineering', 'CSE', '80', '100', '0'), (5396, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '164', '152', '316', '4', '111', 'SSN College of Engineering', 'Mechanical Engg', '8.539', '10', '0'), (5397, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '157', '150', '307', '3.5', '100', 'VTU', 'Computer Science', '73.47', '100', '0'), (5398, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '430', '1210', '3', '95', 'B V Bhoomaraddi College of Engg & Tech (Affiliated to VTU)', 'ELECTRONICS AND COMMUNICATION', '76', '100', '0'), (5399, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '740', '590', '1330', '3.5', '107', 'CEG', 'Mechanical engineering', '7.27', '10', '0'), (5400, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '156', '154', '310', '3.5', '92', 'MU', 'Production', '67', '100', '0'), (5401, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '160', '149', '309', '4', '99', 'Sri Jayachamarajendra College of Engineering', 'Electronics and Communication', '9.18', '10', '0'), (5402, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '170', '149', '319', '3.5', '100', 'GITAM', 'Computer Science', '8.54', '10', '0'), (5403, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '147', '314', '3', '97', 'R V College of Engineering', 'Electronics and Communication', '9.13', '10', '0'), (5404, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '168', '148', '316', '3', '99', 'SASTRA', 'Mechanical', '8.3', '10', '0'), (5405, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '149', '308', '3.5', '104', 'University Vishweriah College of Engineering', 'Computer Science', '80', '100', '0'), (5406, 'Arizona State University', '6', 'Admit', 'MS', 'Aerospace Engineering', 'Fall', 'None', '165', '149', '314', '3', '101', 'Dharamsinh Desai University', 'Instrumentation and Control', '8.9', '100', '0'), (5407, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '150', '313', '4', '109', 'Chhatrapati Shahuji Maharaj University Kanpur', 'BTech Computer Science', '10', '10', '44'), (5408, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '169', '147', '316', '3', '97', 'MU', 'Electronics Engg', '61', '100', '0'), (5409, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '164', '156', '320', '3', '103', 'SPCE', 'Electrical engineering', '78', '100', '0'), (5410, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '164', '154', '318', '3', '109', 'VNIT Nagpur', 'ece', '73', '100', '0'), (5411, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '163', '143', '306', '3', '88', 'JNTU', 'Mechanical', '68', '100', '0'), (5412, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '162', '151', '313', '3.5', '98', 'SSN College of Engineering', 'Electronics and Communication', '86.2', '100', '0'), (5413, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2011', '750', '530', '1280', '3', '95', 'NITK Surathkal', 'civil', '7.61', '10', '0'), (5414, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '160', '152', '312', '3.5', '113', 'DSI', 'Electrical and Electronics', '80', '100', '0'), (5415, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '161', '156', '317', '4', '109', 'University of Mumbai', 'Mechanical Engineering', '69', '100', '0'), (5416, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '149', '314', '3', '104', 'Cochin University of Science and Technology', 'Computer Science', '79', '100', '0'), (5417, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '700', '450', '1150', '3', '82', 'CVRCE', 'ECE', '72', '100', '0'), (5418, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '500', '1300', '4', '107', 'MU', 'Computer Engg', '67.4', '100', '0'), (5419, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '164', '150', '314', '3.5', '108', 'SET JAIN UNIVERSITY', 'ECE', '74.7', '100', '0'), (5420, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science/ Electronics and Communication', 'Fall ', '2015', '170', '154', '324', '3.5', '110', 'IIT Guwahati', 'Electronics and Communication Engineering', '7.95', '10', '20'), (5421, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '156', '317', '3.5', 'None', 'Nagarjuna University', 'CS', '8.3', '10', '0'), (5422, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '165', '149', '314', '3.5', '105', 'Pondicherry Engineering College', 'Information Technology', '8.51', '10', '48'), (5423, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical / Industrial Engg.', 'Fall ', '2014', '162', '149', '311', '4', '105', 'SRM', 'Mechanical Engineering', '9.34', '10', '0'), (5424, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '430', '1220', '4', '100', 'PESIT', 'Electronics and Communication Department', '85.5', '100', '0'), (5425, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '152', '313', '3.5', '104', 'VTU', 'Computer Science', '82.5', '100', '0'), (5426, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '164', '152', '316', '3.5', '107', 'None', '0', '0', '0', '0'), (5427, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '730', '450', '1180', '2', 'None', 'A D Patel Institute Of Technology', 'Electronics & Communication', '8.15', '10', '0'), (5428, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical / Industrial Engg.', 'Fall ', '2015', '165', '156', '321', '4', '112', 'PESIT', 'Mechanical', '9.21', '10', '24'), (5429, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '157', '322', '3.5', '110', 'JNTU', 'CSE', '70', '100', '0'), (5430, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '730', '690', '1420', '4', '109', 'SSN College of Engineering', 'EEE', '79', '100', '0'), (5431, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '800', '600', '1400', '5', '290', 'Anna University', 'ECE', '85', '100', '0'), (5432, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2013', '165', '148', '313', '3.5', '106', 'Thapar University', 'Civil Engineering', '8.54', '10', '0'), (5433, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering/Comp Science', 'Fall ', '2013', '167', '149', '316', '3', '107', 'Thapar University', 'Computer Science', '6.22', '10', '0'), (5434, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2015', '168', '149', '317', '3.5', '111', 'Mahatma Gandhi University Kerala', 'Electronics and Communication', '7.47', '10', '0'), (5435, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '159', '143', '302', '3', '84', 'SKIET Kurukshetra University', 'Information Technology', '74', '100', '0'), (5436, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '760', '400', '1160', '3.5', '96', 'Anna University', 'CSE', '8.48', '10', '0'), (5437, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '760', '670', '1430', '4', '115', 'SVCE', 'EEE', '84', '100', '0'), (5438, 'Arizona State University', '6', 'Admit', 'MS', 'Biomedical Engineering', 'Spring ', '2015', '166', '144', '310', '3', 'None', 'Bharati Vidyapeeth', 'Biomedical', '0', '0', '0'), (5439, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '144', '308', '3.5', '99', 'PESIT', 'Information Science & Engineering', '8.43', '10', '0'), (5440, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '165', '150', '315', '4.5', 'None', 'PESIT', 'Mechanical', '9.08', '10', '0'), (5441, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '169', '157', '326', '4', '109', 'GGSIPU', 'ECE', '72', '100', '32'), (5442, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '600', '1400', '3.5', 'None', 'BITS Goa', 'Electronics and Instrumentation', '8.8', '10', '0'), (5443, 'Arizona State University', '6', 'Admit', 'MS', 'microelectronics', 'Fall ', '2015', '158', '163', '321', '3', '107', 'Amrita School of Engineering', 'Electronics and Instrumentation', '8.57', '10', '36'), (5444, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '145', '307', '3', '95', 'Vasavi College of Engineering', 'Computer Science', '82', '100', '12'), (5445, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '520', '1320', '3', '96', 'BITS Pilani', 'COMPUTERS', '7.8', '10', '0'), (5446, 'Arizona State University', '6', 'Admit', 'MS', 'software engineering', 'Fall ', '2014', '160', '152', '312', '3.5', '104', 'University of Pune', 'Mechanical', '61', '100', '60'), (5447, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '149', '308', '3.5', '103', 'JNTU', 'IT', '78.56', '100', '0'), (5448, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (5449, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engg/Robotics', 'Fall ', '2014', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (5450, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '770', '650', '1420', '4', '112', 'University of Kerala', 'ECE', '7.55', '10', '0'), (5451, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2009', '800', '320', '1120', '3.5', '105', 'JNTU', 'CSE', '75', '100', '0'), (5452, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '163', '148', '311', '3', '94', 'VTU', 'Mech', '8.94', '10', '0'), (5453, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '159', '148', '307', '3.5', '103', 'VTU', 'mechanical engineering', '77', '100', '0'), (5454, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '147', '310', '3', '102', 'SRM', 'CSE', '9.5', '10', '29'), (5455, 'Arizona State University', '6', 'Admit', 'MS', 'analytics', 'Fall ', '2013', '154', '149', '303', '4', '101', 'JNTU', 'Metallurgy and Materials Engineering', '62.5', '100', '0'), (5456, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '157', '322', '4.5', '110', 'NIT Karnataka', 'Computer Science and Engineering', '8.32', '10', '0'), (5457, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '560', '1320', '3', '105', 'YCCE', 'Electronics', '78.8', '100', '0'), (5458, 'Arizona State University', '6', 'Admit', 'MS', 'Computational Science', 'Fall ', '2014', '162', '152', '314', '4', '100', 'VIT', 'Information Technology', '8.95', '10', '0'), (5459, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '660', '1460', '3.5', '104', 'CoE Trivandrum', 'Electronics', '7.25', '10', '0'), (5460, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '640', '1440', '5', '113', 'MU', 'Electrical Engineering', '8.3', '10', '0'), (5461, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '163', '152', '315', '3.5', '94', 'COEP', 'Computer', '0', '0', '0'), (5462, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '165', '153', '318', '3.5', '105', 'NIT Surat', 'Electronics', '7.74', '10', '0'), (5463, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '151', '315', '3.5', '110', 'UPTU', 'CSE', '84.5', '100', '0'), (5464, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '770', '610', '1380', '4', '115', 'SSN College of Engineering', 'ECE', '86', '100', '0'), (5465, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '730', '700', '1430', '3.5', '112', 'Anna University', 'Mechanical Engineering', '76.18', '100', '0'), (5466, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '780', '620', '1400', '3.5', '106', 'Assam Engineering College', 'Electrical Engineering', '74.3', '100', '0'), (5467, 'Arizona State University', '6', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Spring ', '2012', '800', '470', '1270', '3', '109', 'RAIT', 'Electronics and Telecommunication', '6.5', '10', '0'), (5468, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '168', '332', '5', '114', 'Jadavpur University', 'Information Technology', '8.8', '10', '0'), (5469, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '165', '150', '315', 'None', '99', 'Jalpaiguri Government Engineering College', 'Electronics and Communication', '8.11', '10', '0'), (5470, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '157', '153', '310', '4.5', '100', 'CEG', 'Manufacturing Engineering', '8.4', '10', '0'), (5471, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '740', '470', '1210', '3.5', '112', 'SASTRA', 'Electronics & Communication', '8.6', '10', '0'), (5472, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '640', '1420', '4', '113', 'VIT Pune', 'Comp Engg', '8.83', '10', '0'), (5473, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2015', '164', '157', '321', '4.5', '105', 'NIT Tirchy', 'Production Engineering', '7.86', '10', '24'), (5474, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '164', '152', '316', '3', '104', 'NIT Allahabad', 'CSE', '8.68', '10', '0'), (5475, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '168', '151', '319', '3.5', '94', 'NIT Karnataka', 'Electronics and Communication Engineering', '8.98', '10', '34'), (5476, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '680', '1470', 'None', '108', 'SJCE', 'E & C', '68', '100', '0'), (5477, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '164', '147', '311', '3', '98', 'VNIT Nagpur', 'Mechanical', '8', '10', '24'), (5478, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2013', '158', '145', '303', '3.5', '93', 'BVM Engineering College', 'Civil', '8.34', '10', '0'), (5479, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2012', '170', '148', '318', '3.5', '101', 'IIT BHU', 'civil engineering', '7.68', '10', '0'), (5480, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '620', '1420', '4.5', '115', "People's Education Society Institute of Technology (PESIT)", 'ECE', '8.51', '10', '0'), (5481, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '160', '154', '314', '4', '112', 'R V College of Engineering', 'Industrial Engineering', '8.75', '10', '0'), (5482, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '152', '316', '3.5', '107', 'VIT', 'Computer Science', '8.9', '10', '0'), (5483, 'Arizona State University', '6', 'Admit', 'MS', 'Data Science', 'Spring ', '2016', '162', '159', '321', '3.5', '111', 'NIT Warangal', 'Electrical and Electronics Engineering', '8.4', '10', '24'), (5484, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '780', '530', '1310', '4', 'None', 'Pune University', 'Mechanical', '73', '100', '0'), (5485, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '161', '145', '306', '3.5', 'None', 'VTU', 'Mechanical', '75.6', '100', '0'), (5486, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '157', '147', '304', '3.5', '108', 'Sri Sairam Engineering College', 'ECE', '8.3', '10', '0'), (5487, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '780', '410', '1190', '3', '90', 'Punjab Engineering College', 'Electrical', '67.8', '100', '0'), (5488, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '750', '630', '1380', '4', '106', 'Amrita School of Engineering', 'CSE', '7.69', '10', '0'), (5489, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '161', '145', '306', '3', '92', 'VTU', 'ECE', '71', '100', '0'), (5490, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '159', '151', '310', '3.5', '106', 'SRM', 'Electronics & Communication Engineering', '8.724', '10', '0'), (5491, 'Arizona State University', '6', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2014', '158', '151', '309', '3', '96', 'Nagpur University', 'Electronics And Telecomm.', '74', '100', '0'), (5492, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '163', '159', '322', '3.5', '113', 'Osmania University', 'CSE', '8.2', '10', '0'), (5493, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '158', '321', '3', 'None', 'KIIT', 'Computer Science(IT)', '8.4', '10', '0'), (5494, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '160', '150', '310', '4', '96', 'Sardar Patel College of Engineering', 'Electrical Engineeting', '72', '100', '0'), (5495, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '620', '1410', '4', '114', 'NIT Calicut', 'ECE', '9.16', '10', '0'), (5496, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '166', '140', '306', '3', '95', 'VTU', 'Electronics and Communication', '82.8', '100', '0'), (5497, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '168', '145', '313', '3', '109', 'NITK Surathkal', 'ECE', '8.97', '10', '26'), (5498, 'Arizona State University', '6', 'Reject', 'MS', 'Mechanical Engineering', 'Spring ', '2015', '159', '153', '312', '3', '99', 'MRCET(affiliated to JNTUH)', 'aero', '72', '100', '0'), (5499, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '164', '153', '317', '3', '98', 'CSPIT', 'electronics and communication', '8.51', '10', '0'), (5500, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '154', '321', '4', '110', 'University of Mumbai', 'Electronics and Telecommuication', '63.06', '100', '0'), (5501, 'Arizona State University', '6', 'Reject', 'MS', 'Biomedical Engineering', 'Fall ', '2011', '720', '440', '1160', '3', '91', 'Northern India Engineering College UPTU', 'Biomedical engineering', '65', '100', '0'), (5502, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '680', '1460', '4.5', '110', 'MIT University of Pune', 'Electronics and Telecommunication', '65', '100', '0'), (5503, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '720', '590', '1310', '3', '0', 'UPTU', 'CS', '70.44', '100', '0'), (5504, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '164', '143', '307', '3.5', '110', 'FCRIT Vashi', 'Electrical', '70', '100', '0'), (5505, 'Arizona State University', '6', 'Reject', 'MS', 'CS', 'Fall ', '2015', '159', '150', '309', '3', '109', 'VTU', 'Computer Science', '70', '100', '17'), (5506, 'Arizona State University', '6', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2013', '160', '157', '317', '3.5', '111', "St.Peter's Engineering College", 'Electronics & Instrumentation', '75', '100', '0'), (5507, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '161', '155', '316', '3', '102', 'NIT Hamirpur', 'Electronics and Communication Engineering', '8.04', '10', '20'), (5508, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '163', '324', '3.5', '109', 'Jaypee Institute of Information Technology', 'Computer Science', '7.3', '10', '0'), (5509, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '164', '153', '317', '3.5', '110', 'VTU', '0', '70', '100', '0'), (5510, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '153', '317', '3', '103', 'Jaypee Institute of Information Technology', 'CSE', '70', '100', '0'), (5511, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2016', '167', '142', '309', '3.5', '99', 'Sikkim Manipal University', 'Computer Engineering', '6.58', '10', '56'), (5512, 'Arizona State University', '6', 'Reject', 'MS', 'MIS/CS', 'Fall ', '2013', '161', '154', '315', '4', '114', 'MU', 'Information Technology', '61', '100', '0'), (5513, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '163', '148', '311', '3', 'None', 'PESIT', 'Telecommunication', '8.5', '10', '23'), (5514, 'Arizona State University', '6', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2013', '156', '149', '305', '3', 'None', 'MU', 'electronics and telecommunication', '65.13', '100', '0'), (5515, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '760', '570', '1330', '3', '101', 'MU', 'IT', '57', '100', '0'), (5516, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '163', '150', '313', '3.5', '117', 'RNSIT', 'Instrumentation Technology', '78', '100', '0'), (5517, 'Arizona State University', '6', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '163', '146', '309', '3', '102', 'Manipal Institue of Technology', 'Information Technology', '7', '10', '0'), (5518, 'Arizona State University', '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '790', '420', '1210', '3', '93', 'K J Somaiya College of Engiineering', 'Mechanical', '66', '100', '0'), (5519, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '162', '146', '308', '3.5', '97', 'VSS Univ of Technology', 'ELECTRICAL ENGINEERING', '7.77', '10', '0'), (5520, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '165', '152', '317', '3', '105', 'CoE Trivandrum', 'ECE', '83.3', '100', '0'), (5521, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '156', '151', '307', '3.5', '106', 'Anna University', 'Information Technology', '71.2', '100', '58'), (5522, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '165', '150', '315', '3.5', '111', 'BITS Pilani', 'ENI', '8.42', '10', '0'), (5523, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '680', '600', '1280', '3.5', '88', 'Dr MGR Educational and Research Institute', 'Computer Science and Engineering', '7.43', '10', '0'), (5524, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '159', '150', '309', '3.5', '106', 'JNTU', 'ece', '71', '100', '0'), (5525, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '164', '154', '318', '4', '111', 'Goa University', 'Electronics and Telecommunication', '65.44', '100', '0'), (5526, 'Arizona State University', '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '155', '149', '304', '3', '93', 'Anna University', 'Mechanical Engineering', '7.6', '10', '0'), (5527, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2015', '800', '650', '1450', '4', '115', 'BITS Goa', 'Electrical and Electronics Engineering', '8.2', '10', '32'), (5528, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '156', '153', '309', '4', '105', 'YCCE', 'Computer Technology', '64', '100', '28'), (5529, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '156', '321', '3', '110', 'Anna University', 'B.Tech I.T', '7.61', '10', '0'), (5530, 'Arizona State University', '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall', 'None', '164', '148', '312', '3', '101', 'University of Pune', 'Mechanical', '61', '100', '0'), (5531, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '580', '1360', '4', 'None', 'BITS Pilani', 'Mechanical', '7.8', '10', '0'), (5532, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '168', '159', '327', '4', '111', 'MU', 'Electronics', '57.8', '100', '37'), (5533, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '162', '147', '309', '4', 'None', 'Amrita Vishwa Vidhyapeetham', 'ELECTRONICS AND COMMUNICATION', '7.8', '10', '18'), (5534, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '590', '1390', '3.5', '107', 'Nagpur University', 'electronics', '69', '100', '0'), (5535, 'Arizona State University', '6', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '162', '153', '315', '3', '105', 'Reva Institute of Technology', 'cse', '0', '0', '0'), (5536, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '153', '317', '4', '102', 'MSRIT', 'Computer Science', '75', '100', '0'), (5537, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '680', '640', '1320', '4.5', '114', 'University of Pune', 'Computer Engineering', '65.44', '100', '0'), (5538, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '163', '149', '312', '4', '101', 'Manav Rachna', 'ECE', '8', '10', '0'), (5539, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '720', '650', '1370', '4', '104', 'Prince Shri Venkateshwara Padmavathy Engineering College', 'EEE', '6.6', '10', '0'), (5540, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '156', '150', '306', '4', 'None', 'Anna University', 'Computer Science', '73', '100', '0'), (5541, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Spring ', '2015', '158', '158', '316', '4', '116', 'MU', 'EXTC', '70.47', '100', '12'), (5542, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '168', '150', '318', '4.5', '109', 'SSN College of Engineering', 'Electrical & Electronics', '8.1', '10', '0'), (5543, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2009', '770', '570', '1340', '4', '113', 'Cochin University of Science and Technology', 'Computer Science & Engineering', '68', '100', '0'), (5544, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '163', '158', '321', '4', '109', 'MU', 'Computer Engineering', '67', '100', '0'), (5545, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '700', '640', '1340', '3', '109', 'Pune University', 'Computer Engineering', '2.9', '4', '0'), (5546, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '156', '322', '3', '100', 'RGPV', 'computer science', '73', '100', '0'), (5547, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '160', '142', '302', '2.5', 'None', 'Dr.AIT', 'TCE', '9.03', '10', '0'), (5548, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '157', '142', '299', '3', '86', 'V J T I', 'EE', '7', '10', '0'), (5549, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics & Communication', 'Fall ', '2012', '720', '620', '1340', '3.5', '108', 'Sri Venkateswara College of Engineering', 'ECE', '8.05', '10', '0'), (5550, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '161', '156', '317', '4', '112', 'VTU', 'Electronics and Communication', '77', '100', '0'), (5551, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Spring ', '2014', '158', '157', '315', '3.5', '105', 'JNTU', 'ECE', '73', '100', '0'), (5552, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and electrical engineering', 'Fall ', '2014', '164', '157', '321', '4.5', '114', 'MU', 'Electronics', '64.44', '100', '0'), (5553, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '165', '153', '318', '4', '113', 'Pune University', 'Information technology', '69', '100', '0'), (5554, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '160', '147', '307', '3.5', '95', 'VNR VJIET', 'IT', '75', '100', '0'), (5555, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '158', '152', '310', '3', '102', 'Osmania University', 'EEE', '67', '100', '0'), (5556, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '760', '590', '1350', '3', 'None', 'Velammal Engineering College', 'Electronics and Instrumentation', '75', '100', '0'), (5557, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Spring ', '2013', '161', '149', '310', '3', '103', 'University of Pune', 'Electronics and Telecommunication', '67', '100', '0'), (5558, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '150', '311', '3', '91', 'Pune University', 'Computer', '62', '100', '0'), (5559, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '159', '148', '307', '3', '100', 'VTU', 'Computer Science', '70.1', '100', '70'), (5560, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '590', '1360', '4.5', '118', 'VTU', 'Electronics and Communication', '67', '100', '0'), (5561, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '159', '150', '309', '3', '102', 'MU', 'EXTC', '60.77', '100', '12'), (5562, 'Arizona State University', '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2013', '162', '150', '312', '3.5', '113', 'Manipal Institue of Technology', 'Mechatronics', '7.5', '10', '0'), (5563, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '310', '1060', '3', '0', 'SVCE', 'Information Technology', '8.44', '10', '0'), (5564, 'Arizona State University', '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '170', '152', '322', '3.5', '98', 'Guru Gobind Singh Indraprashta University', 'TOOL ENGINEERING', '79.47', '100', '18'), (5565, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '163', '156', '319', '3.5', '112', 'MNIT', 'Electronics and Communication Engineering', '6.8', '10', '0'), (5566, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '159', '148', '307', '3.5', '98', 'Fr. Conceicao Rodrigues College of Engineering', 'Electronics', '71.22', '100', '0'), (5567, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '161', '158', '319', '4.5', '111', 'Pune University', 'Electronics and Telecom', '65', '100', '0'), (5568, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '159', '150', '309', '4', '107', 'MSRIT', 'Electronics and Communication', '8.42', '10', '13'), (5569, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engg/ comp engg', 'Spring ', '2011', '720', '530', '1250', '3.5', '93', 'Amity School of Engineering and Technology', 'ECE', '6.43', '10', '0'), (5570, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '155', '150', '305', '5.5', '106', 'University of Pune', 'Computer Science', '72', '100', '0'), (5571, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '770', '370', '1140', '3', '87', 'K J Somaiya College of Engiineering', 'Electronics', '60', '100', '0'), (5572, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '146', '307', '4', '103', 'University of Pune', 'Computer Engineering', '70.12', '100', '0'), (5573, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '154', '318', '3', '102', 'thakur mumbai university', 'computer engg', '62.6', '100', '0'), (5574, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '167', '155', '322', '4.5', '109', 'University of Pune', 'Electronics and Telecommunication', '64', '100', '0'), (5575, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '168', '167', '335', '4', '105', 'VNIT Nagpur', 'ECE', '7.13', '10', '0'), (5576, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '740', '440', '1180', 'None', 'None', 'PICT', 'Computer Engg', '64', '100', '0'), (5577, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '730', '440', '1170', '3', '102', 'Pune University', 'Computer Engineering', '73', '100', '0'), (5578, 'Arizona State University', '6', 'Reject', 'MS', 'petroleum engineering', 'Fall ', '2014', '154', '146', '300', '3', '98', 'Bharati Vidyapeeth', 'Instrumentation & Control', '60', '100', '48'), (5579, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '160', '155', '315', '3.5', '104', 'MU', 'Electronics', '76.14', '100', '0'), (5580, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '165', '148', '313', '3', '97', 'Jaypee Institute of Information Technology', 'ECE', '7.4', '10', '51'), (5581, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '630', '1420', '3', '110', 'Sinhgad College of Engineering', 'Computer Engg', '60', '100', '0'), (5582, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and computer science', 'Fall ', '2013', '160', '152', '312', 'None', '100', 'Jaypee Institute of Information Technology', 'ECE', '6.8', '10', '0'), (5583, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '650', '570', '1220', '4', '101', 'University of Pune', 'Computer & I.T', '56', '100', '0'), (5584, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '160', '155', '315', '3.5', '101', 'Manipal Institue of Technology', 'Information and Communication Technology', '6.94', '10', '0'), (5585, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '730', '580', '1310', '3.5', '107', 'SNDT Univ Mumbai', 'ENC', '7.73', '10', '0'), (5586, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '710', '640', '1350', '3', '113', 'JNTU', 'ECE', '73', '100', '0'), (5587, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '167', '158', '325', '4', '115', 'University of Mumbai', 'Computer Engineering', '0', '0', '0'), (5588, 'Arizona State University', '6', 'Reject', 'MS', 'Industrial Engg/Robotics', 'Fall ', '2015', '165', '153', '318', '3.5', '110', 'BITS Pilani', 'chemical', '7.34', '10', '2'), (5589, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '162', '158', '320', '4', '112', 'SSN College of Engineering', 'EEE', '81', '100', '0'), (5590, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '660', '1460', '4', '107', 'Nagpur University', 'Electronics Engineering', '69', '100', '0'), (5591, 'Arizona State University', '6', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2014', '158', '154', '312', '3.5', '114', 'West Bengal University Of Technology', 'ELECTRONICS AND COMMUNICATION', '8.64', '10', '0'), (5592, 'Arizona State University', '6', 'Reject', 'MS', 'Chemical Engineering', 'Fall ', '2015', '162', '156', '318', '3.5', '112', 'None', '0', '58.1', '100', '0'), (5593, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '163', '151', '314', '4', '98', 'University of Mumbai', 'Electronics & Telecommunication', '75.56', '100', '0'), (5594, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '149', '311', '3', 'None', 'University of Pune', 'Computer', '65.8', '100', '0'), (5595, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '157', '315', '3.5', '103', 'West Bengal University Of Technology', 'CSE', '8.04', '10', '34'), (5596, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2016', '163', '164', '327', '4.5', '116', 'VTU', 'Electronics and Communication', '65.35', '100', '20'), (5597, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '168', '147', '315', '3.5', '82', 'CEG', 'Electrical and Electronics Engineering', '9.31', '10', '0'), (5598, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '167', '166', '333', '4', '115', 'MU', 'Electronics & Telecommunication', '72.6', '100', '0'), (5599, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '149', '312', '3', '91', 'Maharishi Dayanand University', 'Information Technology', '72', '100', '0'), (5600, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '147', '308', '3', '93', 'CVRCE', 'Electronics and Communication Engineering', '82', '100', '0'), (5601, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '151', '315', '4.5', '109', 'BITS Dubai', 'Electronics and Communication', '8.75', '10', '0'), (5602, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '150', '313', '3.5', '97', 'Ramdeobaba Kamla Nehru Engg College', 'Electronics', '64.21', '100', '0'), (5603, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '168', '153', '321', '3.5', 'None', 'Mahrishi Dayanand University', 'Computer Science and Engineering', '69.42', '100', '0'), (5604, 'Arizona State University', '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '780', '530', '1310', '3', '95', 'Gujarat Technological University', 'mechanical', '6.38', '10', '0'), (5605, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '760', '530', '1290', '3.5', '107', 'SGSITS', 'ECE', '69.78', '100', '0'), (5606, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '152', '150', '302', '3', '90', 'MU', 'Information Technology', '63', '100', '11'), (5607, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '168', '156', '324', '3', '105', 'GCET Sardar Patel University', 'Computers', '6.38', '10', '0'), (5608, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '161', '153', '314', '4', '107', 'IP University MAIT', 'ECE', '81', '100', '0'), (5609, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '151', '312', '3', 'None', 'University of Pune', 'Computer Engg..', '60', '100', '0'), (5610, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '168', '155', '323', '4', '108', 'VJTI', 'Electronics', '8', '10', '0'), (5611, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '152', '315', '3', '95', 'University of Pune', 'Computer Engineering', '67', '100', '18'), (5612, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '770', '640', '1410', '4.5', '114', 'MU', 'Computer Engineering', '63', '100', '0'), (5613, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '740', '580', '1320', '3.5', '97', 'CUSAT', 'Electronics and Communication Engineering', '76.32', '100', '0'), (5614, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '156', '150', '306', '3', '93', 'M G university Kerala', 'CS', '73.3', '100', '12'), (5615, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '160', '153', '313', '4', '105', 'Pune University', 'ENTC', '60', '100', '56'), (5616, 'Arizona State University', '6', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2014', '159', '156', '315', '3.5', '112', 'CITM Faridabad Haryana (affiliated to Maharshi Dayanand University Rohtak)', 'Aeronautical Engineering', '70.5', '100', '0'), (5617, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '163', '148', '311', '3.5', '107', 'MU', 'Electronics and Telecommunications', '66.93', '100', '24'), (5618, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '159', '151', '310', '3.5', '109', 'VTU', 'ECE', '78', '100', '0'), (5619, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '162', '158', '320', 'None', '108', 'Dhirubhai Ambani Institute of Information & Communication Technology', 'Information and Communication Technology', '6.7', '100', '52'), (5620, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2013', '166', '159', '325', '4', '110', 'Medicaps Institute of Science & Technology Indore', 'EC', '73', '100', '0'), (5621, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2016', '160', '149', '309', '4', 'None', 'DSCE', 'ECE', '72', '100', '0'), (5622, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '160', '146', '306', '3.5', '107', 'Sir MVIT', 'TELECOMMUNICATION', '82.54', '100', '0'), (5623, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '155', '318', '3', '107', 'Jaypee Institute of Information Technology', 'Information Technology', '6.7', '10', '0'), (5624, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '156', '150', '306', '3.5', 'None', 'Anna University', 'Electrical and Electronics Eng.', '8.7', '10', '24'), (5625, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '154', '154', '308', '3', '108', 'Prathyusha Institute of Technology and Management', 'ECE', '72', '100', '45'), (5626, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '169', '153', '322', '3', '101', 'NITK Surathkal', 'Electronics & Comm Engg', '7.34', '10', '0'), (5627, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '168', '158', '326', '4', '115', 'JSS Noida', 'ECE', '76.7', '100', '0'), (5628, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '740', '500', '1240', '3.5', '112', 'Pune University', 'Computer', '63', '100', '0'), (5629, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '159', '145', '304', '3', '90', 'SRM', 'ELECTRICAL AND ELECTRONICS', '9.328', '10', '0'), (5630, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2016', '165', '152', '317', '3', '103', 'Madras Institute of Technology', 'Electronics & Communications Enginnering', '6.5', '10', '24'), (5631, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '750', '560', '1310', '3.5', '111', 'Anna University', 'EEE', '8.02', '10', '0'), (5632, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '161', '141', '302', '2.5', 'None', 'Anna University', 'Electronics and Communication engineering', '8.3', '10', '0'), (5633, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '168', '158', '326', '4', '111', 'CoE Trivandrum', 'Computer Science', '7.93', '10', '36'), (5634, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '163', '151', '314', '4', '101', 'JNTU', 'ECE', '76', '100', '0'), (5635, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '160', '158', '318', '4.5', '116', 'Amrita School of Engineering', 'ECE', '7.73', '10', '0'), (5636, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '630', '350', '980', '3', '93', 'EEC', 'ECE', '0', '0', '0'), (5637, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '160', '150', '310', '3.5', '104', 'NIT Durgapur', 'ELECTRICAL ENGINEERING', '7.97', '10', '0'), (5638, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2007', '800', '590', '1390', '4.5', '270', 'SPCE', 'IT', '63', '100', '0'), (5639, 'Arizona State University', '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '161', '145', '306', '3', '98', 'PSG College of Technology', 'mechanical', '7.78', '10', '3'), (5640, 'Arizona State University', '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '158', '146', '304', '3', '101', 'Thiagarajar College of engineering', 'Mechanical Engineering', '8.84', '10', '0'), (5641, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '158', '141', '299', '3', 'None', 'SSN College of Engineering', 'EEE', '75', '100', '0'), (5642, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '151', '309', 'None', '103', 'NIE', 'CS', '8.23', '10', '0'), (5643, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '161', '153', '314', '4', '112', 'Guru Gobind Singh Indraprashta University', 'Electronics and Communication', '82', '100', '0'), (5644, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '167', '157', '324', '3.5', '116', 'Amrita Vishwa Vidhyapeetham', 'ECE', '7.55', '10', '0'), (5645, 'Arizona State University', '6', 'Reject', 'MS', 'Technology Leadership', 'Fall ', '2014', 'None', 'None', '0', 'None', 'None', 'BVUCOE', 'Electronics Engineering', '62', '100', '8'), (5646, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '164', '156', '320', '3.5', '113', 'University of Pune', 'Electronics & Telecommunication', '71', '100', '0'), (5647, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '160', '155', '315', '4', '94', 'DTU', 'ECE', '63', '100', '0'), (5648, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '165', '154', '319', 'None', '100', 'IIT Roorkee', 'Paper Technology', '7.84', '10', '43'), (5649, 'Arizona State University', '6', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2011', '790', '650', '1440', '4', '110', 'VTU', 'Mechanical', '68', '100', '0'), (5650, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '163', '150', '313', '2.5', '97', 'VIT', 'IT', '8.79', '10', '0'), (5651, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall', 'None', '163', '152', '315', '3', '104', 'VIT', 'Electrical and Electronics Engineering', '8.97', '10', '0'), (5652, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '165', '157', '322', '4.5', '115', 'university pf Pune', 'Electronics and telecomm', '64', '100', '15'), (5653, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '153', '316', '4', '108', 'VTU', 'Computer Science', '83.68', '100', '0'), (5654, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '160', '152', '312', '3', '110', 'VTU', 'Telecommunication', '8.67', '10', '36'), (5655, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '160', '149', '309', '3', '101', 'Amrita Vishwa Vidhyapeetham', 'Electronics and Communication', '7.35', '10', '0'), (5656, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '360', '1140', '3', '101', 'Siddaganga Institue of Technology', 'Electronics and Communication', '9.27', '10', '0'), (5657, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '157', '155', '312', '3', '102', 'Sardar Patel College of Engineering', 'Information Technology', '67', '100', '0'), (5658, 'Arizona State University', '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2010', '780', '610', '1390', '4', '106', 'Crescent Engineering College', 'Electrical & Electronics', '67', '100', '0'), (5659, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '157', '167', '324', '3', '110', 'BITS Pilani', 'Electronics & Instrumentation', '6', '10', '0'), (5660, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '163', '154', '317', '3.5', '101', 'Panimalar Engineering College', 'Electrical and Electronics', '8.2', '10', '0'), (5661, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '167', '147', '314', '3', '88', 'Cochin University of Science and Technology', 'Division of Electorinics', '72', '100', '0'), (5662, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics Instrumentation and Control', 'Fall ', '2014', '155', '158', '313', '3.5', '114', 'RMK Engineering College', 'ELECTRONICS AND INSTRUMENTATION', '8.4', '10', '0'), (5663, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '162', '145', '307', '3.5', '102', 'NIT Tirchy', 'Electronics And Communication', '6.61', '10', '0'), (5664, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '166', '156', '322', '4', '108', 'Amrita School of Engineering', 'ECE', '7.86', '10', '18'), (5665, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2006', '780', '640', '1420', '5', '270', 'MU', 'Comp Engg', '57.29', '100', '0'), (5666, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '350', '1140', '3', '104', 'Anna University', 'Computer Science', '73', '100', '0'), (5667, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '156', '143', '299', 'None', '97', '0', 'ECE', '79', '100', '0'), (5668, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '163', '148', '311', '4.5', '105', 'University of Mumbai', 'Computer Science', '59.8', '100', '0'), (5669, 'Arizona State University', '6', 'Reject', 'MS', 'Embedded systems', 'Fall ', '2015', '165', '153', '318', '3', '109', 'NIT Hamirpur', 'Electronics and Communication', '8.18', '10', '18'), (5670, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '156', '147', '303', '3', '100', 'Madras Institute of Technology', 'Computer Science Engineering', '6.8', '10', '0'), (5671, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '170', '157', '327', '4', '118', 'West Bengal University Of Technology', 'Electronics and Communication Engineering', '8.79', '10', '0'), (5672, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '169', '144', '313', '3', '98', 'Amrita School of Engineering', 'ECE', '8.01', '10', '0'), (5673, 'Arizona State University', '6', 'Reject', 'MS', 'CS / MIS', 'Fall ', '2014', '162', '155', '317', '4', '106', 'Yeshwantrao Chavan College of Engineering', 'ECE', '64', '100', '0'), (5674, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '165', '146', '311', '3', '97', 'RVR & JC College of Engineering', 'electronics and communication engineering', '84.8', '100', '0'), (5675, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '154', '157', '311', '4', '114', 'Anna University', 'Computer Science', '6.7', '10', '0'), (5676, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Spring ', '2012', '720', '340', '1060', '3', '84', 'pvpsit', 'ece', '76.52', '100', '0'), (5677, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '14', '163', '153', '316', '3', '109', 'NIT Tirchy', 'CSE', '7.03', '10', '0'), (5678, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '161', '149', '310', '3.5', '102', 'MU', 'Electronics & Telecommunication', '69', '100', '0'), (5679, 'Arizona State University', '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '770', '660', '1430', '3', '106', 'MU', 'Mechanical', '59', '100', '0'), (5680, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '158', '319', '3.5', '109', 'University of Calicut', 'Computer Science and Engg', '79', '100', '38'), (5681, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '168', '155', '323', '3', '105', 'L D College Of Engineering', 'Information Technology', '7.67', '10', '3'), (5682, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '164', '157', '321', 'None', 'None', 'Madras Institute of Technology', 'Electronics and Communication', '8.5', '10', '0'), (5683, 'Arizona State University', '6', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2014', '166', '144', '310', '3', '90', 'Manipal Institue of Technology', 'CIVIL', '6.6', '10', '6'), (5684, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '760', '640', '1400', '2.5', '87', 'VTU', 'ECE', '63', '100', '0'), (5685, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '170', '152', '322', '3.5', 'None', 'DA-IICT', 'ICT', '6.83', '10', '19'), (5686, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2015', '166', '149', '315', '3.5', '104', 'R.N.S.I.T / VTU', 'Electronics and communication', '68', '100', '15'), (5687, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '163', '156', '319', '3', '102', 'MU', 'Computer Engineering', '65', '100', '0'), (5688, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '157', '155', '312', '4.5', '108', 'VIT University', 'CSE', '8.4', '10', '6'), (5689, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '160', '151', '311', '3.5', '87', 'Sarvajanik College of Engineering & Technology', 'Computer', '7.94', '10', '0'), (5690, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '169', '157', '326', '4', '108', 'NIT Silchar', 'Computer Science and Engineering', '6.94', '10', '0'), (5691, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '160', '145', '305', '3.5', '102', 'VTU', 'Computer Science', '71.7', '100', '0'), (5692, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '158', '320', '4', '113', 'None', '0', '0', '0', '0'), (5693, 'Arizona State University', '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '800', '670', '1470', '4', '113', 'NIT Calicut', 'Mechanical Engineering', '6.67', '10', '0'), (5694, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '159', '150', '309', '4', '105', 'GITAM', 'ECE', '84', '100', '87'), (5695, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '169', '150', '319', '4', '112', 'Amrita School of Engineering', 'Electronics and Communication', '7.48', '10', '0'), (5696, 'Arizona State University', '6', 'Reject', 'MS', 'Mechanical Engineering', 'Spring ', '2015', '160', '155', '315', '3', '105', 'VTU', 'Mechanical', '7.27', '10', '36'), (5697, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '159', '155', '314', '5', '105', 'NMIMS', 'Electronics', '2.85', '4', '0'), (5698, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall', 'None', '166', '150', '316', '3.5', '107', 'University of Mumbai', 'electronics and telecom', '70.03', '100', '31'), (5699, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '162', '157', '319', '3.5', '109', 'SRM', 'ECE', '8.23', '10', '0'), (5700, 'Arizona State University', '6', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2014', '167', '152', '319', '3', '108', 'BIT Mesra', 'Electronics and Communication', '7.2', '10', '0'), (5701, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '780', '520', '1300', '3.5', '110', 'VTU', 'E&C;', '69.4', '100', '0'), (5702, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '800', '640', '1440', '3.5', '105', 'SSN College of Engineering', 'IT', '73', '100', '0'), (5703, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '170', '145', '315', '3.5', '94', 'IIT Indore', 'Electrical Engineering', '6.6', '10', '0'), (5704, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics & Communication', 'Fall ', '2012', '790', '530', '1320', '4', '110', 'NIT Hamirpur', 'Electronics and communication', '7.56', '10', '0'), (5705, 'Arizona State University', '6', 'Reject', 'MS', 'Computer engineering VLSI CAD', 'Fall ', '2014', '163', '142', '305', '3', '93', 'BIT VTU', 'Electronics And Communication', '80', '100', '0'), (5706, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '164', '149', '313', '3', 'None', 'Univ of Mumbai', 'Electrical', '64.41', '100', '0'), (5707, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '166', '144', '310', '3.5', '96', 'SRM', 'ECE', '8', '10', '0'), (5708, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2012', '780', '720', '1500', '4.5', '115', 'PESIT', 'Telecommunication', '7.69', '10', '0'), (5709, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '164', '158', '322', '3.5', '114', 'PESIT', 'Telecommunication Department', '8.43', '10', '0'), (5710, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics Engineering', 'Fall ', '2013', '158', '161', '319', '3.5', '112', 'Guru Nanak Dev University Amritsar', 'Electronics & Communications', '70.8', '100', '0'), (5711, 'Arizona State University', '6', 'Reject', 'MS', 'Biomedical Engineering', 'Fall ', '2012', '730', '490', '1220', '3.5', '104', 'Manipal Institue of Technology', 'Biomedical Engineering', '7.67', '10', '0'), (5712, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Spring ', '2014', '168', '149', '317', '3', '101', 'None', 'Electronics and Communication Engineering', '7.85', '10', '0'), (5713, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '160', '148', '308', '3.5', '84', 'Panjab University', 'CSE', '75.02', '100', '0'), (5714, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '164', '154', '318', '4', '111', 'Gujarat Technological University', 'ECE', '76.82', '100', '0'), (5715, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '580', '1380', '4', '111', 'UPTU', 'Computer Science', '68.76', '100', '0'), (5716, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '166', '154', '320', '3.5', '111', 'University of Mumbai', 'Electrical Engineering', '70.6', '100', '0'), (5717, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '162', '147', '309', '3', '95', 'University of Pune', 'Electronics and Telecommunication', '62', '100', '12'), (5718, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '158', '153', '311', '4', '114', "St Joseph's College of Engineering", 'ECE', '8.61', '10', '24'), (5719, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '157', '146', '303', '3', '99', 'Pondicherry University', 'CSE', '8.03', '10', '0'), (5720, 'Arizona State University', '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '161', '163', '324', '4', '116', 'SDM', 'mechanical', '68.84', '100', '0'), (5721, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '168', '149', '317', '4', '107', 'University of Pune', 'Electronics and Tele-Communication', '63.445', '100', '0'), (5722, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '440', '1220', '3', '104', 'JNTU', 'Computer Science', '66.27', '100', '0'), (5723, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '158', '166', '324', '4', 'None', 'Manipal Institue of Technology', 'electrical & electronics', '7.41', '10', '0'), (5724, 'Arizona State University', '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '800', '520', '1320', '4', '108', 'PESIT', 'Mechanical Engg.', '60', '100', '0'), (5725, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall', 'None', '166', '157', '323', '4', '113', 'DDU', 'EC', '65.2', '100', '0'), (5726, 'Arizona State University', '6', 'Reject', 'MS', 'Biochemistry and Molecular biology', 'Fall ', '2011', '720', '590', '1310', '3', '101', 'Kurukshetra University', 'Biochemistry', '73', '100', '0'), (5727, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '161', '148', '309', '3.5', '100', 'Anna University', 'ECE', '8.7', '10', '0'), (5728, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics & Communication', 'Fall ', '2012', '770', '490', '1260', '3.5', '102', 'GITAM', 'ECE', '9.15', '10', '0'), (5729, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '159', '166', '325', '4.5', '110', 'Anna University', 'EEE', '7.5', '10', '0'), (5730, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '500', '1250', '4', '107', 'Pune University', 'IT', '58', '100', '0'), (5731, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '160', '161', '321', '4', '114', 'Yeshwantrao Chavan College of Engineering', 'Electronics and communication', '68.86', '100', '19'), (5732, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '156', '320', '4', '110', 'MITCOE University of Pune', 'IT', '56.57', '100', '0'), (5733, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '156', '151', '307', '3.5', '106', 'Pune University', 'Computer Engg.', '57', '100', '0'), (5734, 'Arizona State University', '6', 'Reject', 'MS', 'Telecommunication', 'Spring ', '2012', '790', '420', '1210', '3.5', '106', 'Dharamsinh Desai University', 'EC', '58.5', '100', '0'), (5735, 'Arizona State University', '6', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2012', '162', '141', '303', '3.5', '102', 'Vasavi College of Engineering', 'Civil Engineering', '66', '100', '0'), (5736, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '157', '144', '301', '2.5', '98', 'Jaypee Institute of Information Technology', 'Electronics and Communication', '7.2', '10', '0'), (5737, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '163', '149', '312', '3.5', '105', 'IIIT Hyderabad', 'ECE', '6.72', '10', '0'), (5738, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '158', '150', '308', '2.5', '97', 'None', '0', '8.63', '10', '0'), (5739, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '164', '157', '321', '4', '8', 'Pondicherry University', 'Computer Science', '7.1', '10', '20'), (5740, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '167', '162', '329', '3.5', '113', 'COEP', 'Computer Engineering', '7.06', '10', '0'), (5741, 'Arizona State University', '6', 'Reject', 'MS', 'MIS', 'Fall ', '2011', '800', '510', '1310', '3', '96', 'PICT', 'IT', '3.29', '4', '0'), (5742, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and computer engineering electrical engineering telecommunications engineering', 'Spring ', '2014', '158', '150', '308', '3.5', '92', 'WBUT', 'ECE', '9.77', '10', '0'), (5743, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '450', '1250', '3', '100', 'NIT Tirchy', 'Computer Science', '7.62', '10', '0'), (5744, 'Arizona State University', '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2011', '720', '330', '1050', '3.5', '103', 'Anna Univeristy', 'EEE', '74', '100', '0'), (5745, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '149', '310', '3', 'None', 'PESIT', 'Telecommunication', '8.1', '10', '0'), (5746, 'Arizona State University', '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '158', '147', '305', '3', 'None', "St Joseph's College of Engineering", 'Mechanical engineering', '6.74', '10', '12'), (5747, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Spring ', '2014', '165', '161', '326', '4', '114', 'KIIT', 'Electronics and Electrical', '9', '10', '0'), (5748, 'Arizona State University', '6', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2014', '156', '149', '305', '3', '102', 'JNTU', 'Computer Science', '78', '100', '0'), (5749, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '162', '148', '310', '3', '91', 'COER UPTU', 'Electronics and TeleCommunication', '76', '100', '0'), (5750, 'Arizona State University', '6', 'Reject', 'MS', 'Packaging Science', 'Fall ', '2013', '160', '152', '312', '3.5', '106', 'Anna University', 'Mechanical', '7.36', '10', '0'), (5751, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '155', '144', '299', '3.5', '96', 'VTU', 'Instrumentation Technology', '77', '100', '0'), (5752, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '159', '145', '304', '3', '112', 'Gujarat Technological University', 'Electronics and Telecomm.', '8.44', '10', '0'), (5753, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '580', '1350', '3.5', '96', 'Pune University', 'Computer Science', '63', '100', '0'), (5754, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '168', '162', '330', '3.5', '114', 'Nagpur University', 'Electrical Engineering', '61', '100', '0'), (5755, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '760', '520', '1280', '3', '104', 'Shri Ramdeobaba Engineering College', 'electronics and communication', '70', '100', '0'), (5756, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '161', '148', '309', '3', '97', 'WBUT', 'ECE', '7', '10', '0'), (5757, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '162', '148', '310', '3', 'None', 'VTU', 'Telecommunication', '71', '100', '0'), (5758, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '153', '316', '4', '94', 'Medicaps Institute of Science & Technology Indore', 'Information Technology', '8.07', '10', '0'), (5759, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '159', '148', '307', '2.5', '95', 'PESIT', 'Electronics and communication', '8.02', '10', '0'), (5760, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '163', '158', '321', '3.5', '107', 'SVNIT', 'Electronics Engineering', '6.56', '10', '0'), (5761, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '770', '530', '1300', '3.5', '112', 'University of Mumbai', 'Electronics Engineering', '69.16', '100', '0'), (5762, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2006', '790', '460', '1250', '3.5', '263', 'JNTU', 'eee', '79', '100', '0'), (5763, 'Arizona State University', '6', 'Reject', 'MS', 'Master of Science in Information Technology', 'Fall ', '2014', '162', '151', '313', '3.5', 'None', 'Amrita Vishwa Vidhyapeetham', 'Computer Science', '7.32', '10', '22'), (5764, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '161', '149', '310', '3', '104', 'Malaviya NIT Jaipur', 'Electronics and Communication', '8.63', '10', '0'), (5765, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2013', '156', '153', '309', '3.5', '99', 'VIT University', 'Electronics and Instrumentation', '7.99', '10', '0'), (5766, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '690', '550', '1240', 'None', '94', 'Sardar Patel College of Engineering', 'Computers', '67.14', '100', '0'), (5767, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '161', '149', '310', '4', '108', 'R.N.S.I.T (VTU)', 'Computer science', '65', '100', '0'), (5768, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '160', '150', '310', '3', '88', 'MIT Pune', 'Computer science', '60.5', '100', '0'), (5769, 'Arizona State University', '6', 'Reject', 'MS', 'Industrial Engg/Robotics', 'Fall ', '2015', '161', '153', '314', '3', '108', 'University of Delhi', 'Mechanical Engineering', '63.15', '100', '42'), (5770, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '157', '137', '294', '3.5', '87', 'CMRIT', 'ECE', '61', '100', '0'), (5771, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '660', '540', '1200', '3.5', '95', 'University of Rajasthan', 'ECE', '69', '100', '0'), (5772, 'Arizona State University', '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '161', '163', '324', '3', '109', 'R V College of Engineering', 'Mechanical Engineering', '67', '100', '0'), (5773, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '730', '490', '1220', '3', '102', 'JNTU', 'CSE', '73', '100', '0'), (5774, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '160', '151', '311', '4', '102', 'SRM', 'ECE', '8.59', '10', '22'), (5775, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '167', '156', '323', '3', '107', 'NIT Nagpur', 'ECE', '8.22', '10', '28'), (5776, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '159', '326', '3.5', '105', 'Dayananda Sagar College of Engineering', 'Information Science', '75', '100', '52'), (5777, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '740', '410', '1150', '4', '104', 'Anna University', 'Electrical and Electronics', '7.9', '10', '0'), (5778, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '160', '147', '307', '4', '101', 'Shivaji University', 'Electronics & Telecommunication', '69.07', '100', '0'), (5779, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '740', '430', '1170', '3.5', '100', 'Amrita School of Engineering', 'eee', '6.3', '10', '0'), (5780, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '168', '147', '315', '3.5', '101', 'RTU Kota / JECRC jaipur', 'Information Technology', '74', '100', '41'), (5781, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '148', '309', '3.5', '90', 'Anna University', 'Computer Science and Engineering', '7.8', '10', '0'), (5782, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '162', '152', '314', '3.5', '112', 'NIT Allahabad', 'ECE', '7.07', '10', '84'), (5783, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '790', '550', '1340', '3.5', '106', 'MIT Pune Univ', 'Electronics & TeleCommunication Engg', '58', '100', '0'), (5784, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '720', '420', '1140', '3.5', '98', 'VTU', 'Computer Science and engineering', '67.53', '100', '0'), (5785, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2007', '770', '570', '1340', '4.5', '107', 'None', 'Electronics and Telecommunication', '61', '100', '0'), (5786, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '780', '670', '1450', '4', '113', 'University of Pune', 'Electronics & Telecommunication', '61', '100', '0'), (5787, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Electronics', 'Fall ', '2012', '790', '610', '1400', '3.5', '115', 'JNTU', 'Electronics and Instrumentation Engineering', '79', '100', '0'), (5788, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '161', '152', '313', '3', '105', 'Sardar Patel College of Engineering', 'Electrical Engineering', '75.86', '100', '18'), (5789, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '156', '151', '307', '3', '100', 'Coimbatore Insitute of Technology', 'M.Sc Software Engineering', '78', '100', '0'), (5790, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2015', '166', '145', '311', '3', '96', 'SASTRA', 'electronics and communication engineering', '7.93', '10', '27'), (5791, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '164', '144', '308', 'None', 'None', 'Vignan Institute of Technology and Science', 'ECE', '83', '100', '0'), (5792, 'Arizona State University', '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '158', '143', '301', '3', '98', 'MVSR', 'Mechanical', '70', '100', '1'), (5793, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2014', '160', '151', '311', '4', '93', 'LDRP-ITR/GTU', 'ECE', '73.5', '100', '0'), (5794, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '155', '151', '306', '4', '115', 'Amrita School of Engineering', 'ECE', '8.1', '10', '0'), (5795, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '530', '1300', '4', '108', 'VTU', 'Computer Science & Engineering', '67', '100', '0'), (5796, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '158', '146', '304', '3', '82', 'MU', 'Electronics and Telecommunication', '73.9', '100', '0'), (5797, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '162', '158', '320', '4', '101', 'COEP', 'Electrical', '7.4', '10', '36'), (5798, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '155', '316', '3', '108', 'Pune University', 'Electronics', '57', '100', '0'), (5799, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '750', '510', '1260', '3.5', '104', 'Thadomal Shahani Engineering College', 'Computers', '61', '100', '0'), (5800, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '163', '156', '319', '4', '113', 'RMK Engineering College', 'B.E. Electrical and Electronics Engineering', '8.28', '10', '0'), (5801, 'Arizona State University', '6', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2012', '800', '450', '1250', '3', 'None', 'NIT Warangal', 'Civil engineering', '7.1', '10', '0'), (5802, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '11', '780', '500', '1280', '3.5', '105', 'Crescent Engineering College', 'CS', '69', '100', '0'), (5803, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '690', '430', '1120', '3.5', '89', 'Anna University', 'Electrical and Electronics Engineering', '81', '100', '0'), (5804, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '161', '149', '310', '3.5', '102', 'VIT', 'EEE', '8.18', '10', '0'), (5805, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '710', '550', '1260', '3', '98', 'VTU', 'Telecommunication', '74', '100', '0'), (5806, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '780', '440', '1220', '3.5', '102', 'Amity University', 'Computer Science And Engineering', '7.6', '10', '0'), (5807, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '165', '148', '313', '3.5', '91', 'University of Pune', 'Comp Engg', '0', '0', '0'), (5808, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '160', '153', '313', '3.5', '112', 'NMAMIT Nitte', 'Computer Science & Engineering', '67', '100', '0'), (5809, 'Arizona State University', '6', 'Reject', 'MS', 'Human Computer Interaction', 'Fall ', '2014', '160', '150', '310', '3.5', '108', 'NIT Tirchy', 'Instrumentation and Control Engg', '8.3', '10', '0'), (5810, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '157', '148', '305', '4', '105', 'Goa University', 'Computer Engineering', '78', '100', '32'), (5811, 'Arizona State University', '6', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2014', '161', '162', '323', '4', '115', 'Madras Institute of Technology', 'ECE', '8', '10', '0'), (5812, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '165', '157', '322', '3.5', '108', 'MIT', 'instrumentation', '8.7', '10', '0'), (5813, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '159', '150', '309', '3', '106', 'Amity University', 'Computer Science and Engineering', '8.36', '10', '39'), (5814, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engg/ comp engg', 'Spring ', '2012', '800', '590', '1390', '4.5', '106', 'None', '0', '70', '100', '0'), (5815, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Electronics', 'Spring ', '2014', '165', '158', '323', '3.5', '100', 'Osmania University', 'electrical and electronics engineering', '72', '100', '0'), (5816, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Spring ', '2012', '740', '530', '1270', '3', '99', 'JNTU', 'EEE', '54.66', '100', '0'), (5817, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '156', '314', '4', 'None', 'Anna University', 'Information Technology', '8.01', '10', '0'), (5818, 'Arizona State University', '6', 'Reject', 'MS', 'Civil Engineering', 'Spring ', '2011', '780', '310', '1090', '3', '83', 'Bapatla Engineering College', 'civil engineering', '83', '100', '0'), (5819, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '160', '154', '314', '3.5', '104', 'Biju Patnaik University of Technology', 'Electrical Engineering', '8.17', '10', '0'), (5820, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '400', '1200', '2.5', '94', 'Guru Gobind Singh Indraprashta University', 'electronics & communication engg', '70.06', '100', '0'), (5821, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '168', '153', '321', 'None', 'None', 'VTU', 'EC', '80', '100', '0'), (5822, 'Arizona State University', '6', 'Reject', 'MS', 'Computer engineering VLSI CAD', 'Fall ', '2012', '770', '340', '1110', '3', '97', 'VTU', 'ECE', '70', '100', '0'), (5823, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '159', '144', '303', '3', '101', 'Bangalore Institute of Technology', 'Computer Science and Engineering', '78.11', '100', '0'), (5824, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2013', '161', '144', '305', '3', '97', 'Vishwakarma Institute of Technology', 'Electronics and Telecommunication', '7.9', '10', '0'), (5825, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '750', '550', '1300', '3.5', '109', 'Coimbatore Insitute of Technology', 'CSE', '7', '10', '0'), (5826, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '770', '570', '1340', '3.5', '110', 'Pune University', 'Electronics and Telecomm', '62', '100', '0'), (5827, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '162', '155', '317', '4', '109', 'Sri Sairam Engineering College', 'Instrumentation and Control', '8.2', '10', '0'), (5828, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '162', '153', '315', '3', '105', 'Model Engineering College', 'Electronics And Communication Engineering', '70', '100', '42'), (5829, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '530', '1330', '3.5', '115', 'Manipal Institue of Technology', 'ECE', '8.6', '10', '0'), (5830, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2008', '790', '690', '1480', '3.5', '106', 'NIT Bhopal', 'CSE', '7.36', '10', '0'), (5831, 'Arizona State University', '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '164', '153', '317', '3.5', '108', 'UPTU', 'Mechanical Engineering', '67', '100', '42'), (5832, 'Arizona State University', '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '154', '146', '300', '3.5', '95', 'Gujarat Technological University', 'Mechanical Engineering', '8.1', '10', '0'), (5833, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '149', '310', '3', '104', 'MU', 'computer', '58.95', '100', '0'), (5834, 'Arizona State University', '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '790', '540', '1330', '3', '96', 'Bangladesh University of Engineering & Technology', 'Industrial & Production Engineering', '3.84', '4', '0'), (5835, 'Arizona State University', '6', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2013', '168', '152', '320', '4', '105', 'VTU', 'Electronics', '64', '100', '0'), (5836, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '710', '1490', '4', '119', 'Pune University', 'Information Technology', '66', '100', '0'), (5837, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '159', '150', '309', '3.5', '110', 'VTU', 'Electronics & Communication', '76.5', '100', '0'), (5838, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '160', '150', '310', '4', '114', 'University of Pune', 'Electronics Engineering', '69', '100', '0'), (5839, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '156', '149', '305', '3', '100', 'SASTRA', 'Electronics and Communication', '9.11', '10', '52'), (5840, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '160', '157', '317', 'None', '114', 'VTU', 'ECE', '8.59', '10', '0'), (5841, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '162', '146', '308', '3.5', '97', 'Pune University', 'Computer Engineering', '70', '100', '0'), (5842, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '740', '470', '1210', '2.5', '99', 'VTU', 'cs', '65', '100', '0'), (5843, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2008', '800', '580', '1380', '5', '111', 'MU', 'Information Technology', '60', '100', '0'), (5844, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '163', '147', '310', '3.5', '97', 'Punjab Technical University', 'Electronics & Communication', '79.92', '100', '32'), (5845, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '156', '144', '300', '3.5', '91', 'Birla Vishvakarma Mahavidyalaya', 'Electrical Engineering', '8.11', '10', '24'), (5846, 'Arizona State University', '6', 'Reject', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (5847, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '155', '316', '4', '110', 'SJCE', 'EC', '76', '100', '0'), (5848, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '156', '153', '309', '3', '103', "St Joseph's College of Engineering", 'cse', '8.64', '10', '0'), (5849, 'Arizona State University', '6', 'Reject', 'MS', 'CS', 'Spring ', '2014', '160', '152', '312', '3.5', '113', 'University of Pune', 'Computer Engineering', '60.2', '100', '0'), (5850, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics & Communication', 'Fall ', '2012', '730', '610', '1340', '3.5', '93', 'VTU', 'Electronics and Communication', '77.2', '100', '0'), (5851, 'Arizona State University', '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '740', '510', '1250', '3', '102', 'K J Somaiya College of Engiineering', 'Mechanical Engineering', '64.59', '100', '0'), (5852, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and computer engineering electrical engineering telecommunications engineering', 'Fall ', '2014', '165', '148', '313', '3.5', '96', 'D J Sanghvi', 'EXTC', '67.6', '100', '0'), (5853, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2007', '780', '660', '1440', '4.5', '283', 'Sri Venkateswara College of Engineering', 'Computer Science', '72', '100', '0'), (5854, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '160', '152', '312', '4', '115', 'MU', 'Computers', '66.45', '100', '24'), (5855, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '160', '148', '308', '3', '98', 'Sree Vidyanikethan Engineering College', 'Electronics and Communication Engineering', '79', '100', '0'), (5856, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '700', '1500', '4.5', '112', 'VIT Pune', 'Instrumentation & Control', '8.8', '10', '0'), (5857, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '158', '160', '318', '3.5', '114', 'MU', '0', '61', '100', '0'), (5858, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Electronics', 'Fall ', '2014', '161', '156', '317', '3.5', '116', 'VTU', 'EEE', '85', '100', '0'), (5859, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2016', '163', '155', '318', '3', '90', 'West Bengal University Of Technology', 'Electronics and Instrumentation Engineering', '8.54', '10', '33'), (5860, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2016', '166', '155', '321', '3.5', '101', 'Uttarakhand Technical University', 'Computer Science', '72.6', '100', '56'), (5861, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '161', '149', '310', '3.5', '101', 'JNTU', 'Computer Science', '65.44', '100', '0'), (5862, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '163', '152', '315', '4', 'None', 'JNTU', 'ECE', '75', '100', '0'), (5863, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '161', '146', '307', '4', '97', 'Amrita School of Engineering', 'Electronics and Communication', '9.01', '10', '48'), (5864, 'Arizona State University', '6', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2014', '158', '157', '315', '4', '116', 'Goa University', 'Civil Engineering', '68', '100', '0'), (5865, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2013', '159', '143', '302', '3', '94', 'Jaypee Institute of Information Technology', 'Electronics and Communication', '7', '10', '0'), (5866, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '159', '157', '316', 'None', '111', 'VTU', 'CSE', '75', '100', '0'), (5867, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '740', '440', '1180', '2.5', '90', 'Pondicherry Engineering College', 'ECE', '8.25', '10', '0'), (5868, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '143', '305', '4', '106', 'GITAM', 'ECE', '7.57', '10', '0'), (5869, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '149', '310', '2.5', '92', 'University of Pune', 'Electronics and Telecommunication', '8.57', '10', '0'), (5870, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '165', '151', '316', '3', '95', 'Uni. Of Pune VIIT', 'E&TC;', '67', '100', '0'), (5871, 'Arizona State University', '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '159', '144', '303', '3', '101', 'Anna University', 'Mechanical Engineering', '8.2', '10', '0'), (5872, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '154', '317', '4', '110', 'Priyadarshini College of Engineering', 'Computer Technology', '63.15', '100', '0'), (5873, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '770', '360', '1130', '3.5', '111', 'Anna University', 'Computer Science & Engg', '79', '100', '0'), (5874, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '151', '313', '3', '93', 'University of Mumbai', 'Computer Science', '62.3', '100', '36'), (5875, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '570', '1370', '3.5', '99', 'BIT Mesra', 'Mechanical Engineering', '71', '100', '0'), (5876, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '160', '153', '313', '3.5', '100', 'NMU', '0', '61', '100', '0'), (5877, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '168', '152', '320', '3', '103', 'Velammal Engineering College', 'Electronics and Communication', '88', '100', '0'), (5878, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2012', '740', '490', '1230', '4', '105', 'Manipal Institue of Technology', 'Electronics & Coomunication', '8.59', '10', '0'), (5879, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '710', '480', '1190', '4', '109', 'MU', 'ELECTRONICS', '67', '100', '0'), (5880, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '167', '154', '321', '4', '113', 'univ of kerala', 'ec', '8.8', '10', '0'), (5881, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2008', '800', '430', '1230', '3.5', '104', 'Dhirubhai Ambani Institute of Information & Communication Technology', 'Information and Communication Technology', '9.18', '10', '0'), (5882, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '152', '319', '3', '100', 'NIT Calicut', 'Electrical Engg', '7.6', '10', '0'), (5883, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '161', '162', '323', '4', '110', 'VTU', 'Electronics and Communication', '62.95', '100', '0'), (5884, 'Arizona State University', '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '157', '146', '303', '2.5', 'None', 'Madras Institute of Technology', 'ECE', '6.5', '10', '0'), (5885, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '151', '312', '3', '112', 'VTU', 'eee', '70', '100', '0'), (5886, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '730', '620', '1350', '4', '111', 'Bangalore Institute of Technology', 'Electronics and Communication', '58.5', '100', '0'), (5887, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '620', '1420', '3', '97', 'MU', 'Electronics & Telecommunications', '60.7', '100', '0'), (5888, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '160', '141', '301', '3', '90', 'Anna University', 'ECE', '80', '100', '0'), (5889, 'Arizona State University', '6', 'Reject', 'MS', 'Manufacturing Engineering', 'Fall ', '2014', '156', '145', '301', '3', '83', 'DBIT', 'Mechanical', '58.72', '100', '34'), (5890, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '159', '141', '300', '3', '91', 'BVBCET', 'Computer and Information Science', '8.55', '10', '0'), (5891, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '750', '420', '1170', '3.5', '100', 'RGPV', 'Computer', '65', '100', '0'), (5892, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '160', '149', '309', '3.5', '109', 'Pune University', 'Electronics &Telecommunication;', '74', '100', '0'), (5893, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '168', '158', '326', '4', '110', 'University of Pune', 'Computer Engineering', '59', '100', '0'), (5894, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '160', '156', '316', '4', '112', 'Panjab University', 'Computer Science and Engineering', '72', '100', '28'), (5895, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '163', '148', '311', '3', '91', 'Panjab University', 'ECE', '82.2', '100', '0'), (5896, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '160', '144', '304', '3.5', '98', 'RNSIT', 'Computer Science', '75', '100', '0'), (5897, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '165', '145', '310', '3', '95', 'Sardar Patel University', 'Electronics', '3.5', '4', '0'), (5898, 'Arizona State University', '6', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '157', '147', '304', '3', '102', 'VIT', 'IT', '7.93', '10', '0'), (5899, 'Arizona State University', '6', 'Reject', 'MS', 'Chemical Engineering', 'Fall ', '2013', '164', '154', '318', '3', '93', 'NIT Calicut', 'CHEMICAL ENGINEERING', '7.42', '10', '0'), (5900, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '149', '310', '2.5', 'None', 'Coimbatore Insitute of Technology', 'Electronics and Communitaion', '6.76', '10', '0'), (5901, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '740', '420', '1160', '3', '105', 'None', 'ECE', '82.7', '100', '0'), (5902, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '167', '153', '320', '3.5', '110', 'Panjab University', 'Electronics and communication', '8.16', '10', '0'), (5903, 'Arizona State University', '6', 'Reject', 'MS', 'Wireless communications', 'Fall ', '2014', '163', '154', '317', '3.5', '104', 'JNTU', 'Electronics and Communication', '83.64', '100', '42'), (5904, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '165', '144', '309', '3', '85', 'JNTU', 'ece', '77.5', '100', '0'), (5905, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '158', '142', '300', '3', '83', 'Pune University', 'computer engineering', '64.15', '100', '0'), (5906, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '400', '1200', '2.5', '102', 'K J Somaiya College of Engiineering', 'Electronics', '62', '100', '0'), (5907, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '165', '155', '320', '3.5', '104', 'MU', 'Electrical Engineering', '71', '100', '30'), (5908, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science/ Mgmt', 'Spring ', '2014', '165', '155', '320', '4', '112', 'JNTU', 'Biotechnology', '71.14', '100', '0'), (5909, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '168', '147', '315', '3.5', '96', 'VIT', 'ELECTRONICS AND COMMUNICATION', '8.35', '10', '0'), (5910, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '156', '151', '307', '3.5', '103', 'md university rohtak', 'ece', '75.2', '100', '0'), (5911, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '490', '730', '1220', '3', '104', 'University of Pune', 'electronics and telecommunication', '62.49', '100', '0'), (5912, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '158', '143', '301', '3', '90', 'RGTU', 'Electronics and communication', '8.39', '10', '0'), (5913, 'Arizona State University', '6', 'Reject', 'MS', 'Embedded systems', 'Fall ', '2012', '154', '147', '301', '3.5', '99', 'KSIT Visvesvaraya Technological University', 'Electronics & Communication', '72', '100', '0'), (5914, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '161', '149', '310', '4', '117', 'Gujarat Technological University', 'ELECTRONICS AND COMMUNICATION', '9.13', '10', '20'), (5915, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '159', '147', '306', '3', '96', 'K J Somaiya College of Engiineering', 'ETRX', '67.5', '100', '0'), (5916, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '340', '1140', '4.5', '111', 'VTU', 'CS', '70', '100', '0'), (5917, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall', 'None', '163', '155', '318', '3.5', '99', 'Madras Institute of Technology', 'ECE', '8.74', '10', '0'), (5918, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '159', '154', '313', '4', '110', 'VIT', 'ECE', '8.34', '10', '0'), (5919, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '165', '162', '327', '3', '109', 'Sri Venkateswara College of Engineering', 'EEE', '7.11', '10', '0'), (5920, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '160', '142', '302', '3', '86', 'Cochin University of Science and Technology', 'Computer Science', '78', '100', '0'), (5921, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '150', '311', 'None', '95', 'Amrita School of Engineering', 'ECE', '7.9', '10', '0'), (5922, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '156', '149', '305', '3', '81', 'Walchand College Of Engineering', 'Computer sci and engg', '58.03', '100', '0'), (5923, 'Arizona State University', '6', 'Reject', 'MS', 'Information Security', 'Fall ', '2011', '770', '430', '1200', '3.5', '97', 'Amrita School of Engineering', 'Computer Science', '7.5', '10', '0'), (5924, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '720', '450', '1170', '3', '84', 'Anna University', 'electronics and instrumentation', '66', '100', '0'), (5925, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '167', '146', '313', 'None', '88', 'Madras Institute of Technology', 'information technology', '8.6', '10', '0'), (5926, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '165', '156', '321', '4', '103', 'SASTRA', 'Computer Science', '7.04', '10', '0'), (5927, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '163', '150', '313', '4', '106', 'Global Academy of Technology', 'Electrical & Electronics Engineering', '77.6', '100', '0'), (5928, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '168', '149', '317', '3', '102', 'BVM Engineering College', 'Electronics and Telecommunication', '7.7', '10', '0'), (5929, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '630', '450', '1080', '3.5', '95', 'HKBKCE', 'Computer Science', '7.5', '100', '0'), (5930, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '150', '313', '4', '106', 'Amrita School of Engineering', 'Computer Science Engineering', '7.36', '10', '0'), (5931, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '157', '146', '303', '3.5', '91', 'Kurukshetra University', 'CSE', '67.6', '100', '0'), (5932, 'Arizona State University', '6', 'Reject', 'MS', 'Management of Technology', 'Fall ', '2013', '158', '147', '305', '3', '92', 'VTU', 'ECE', '8.13', '10', '0'), (5933, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', 'None', 'None', '0', '3.5', '106', 'None', 'CSE', '7.55', '100', '36'), (5934, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '141', '305', '4', '102', 'GRIET', 'Information Technology', '0', '0', '0'), (5935, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2013', '160', '140', '300', '3', '81', 'Andhra University', 'ECE', '8.2', '10', '0'), (5936, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '156', '150', '306', '3.5', '99', 'VTU', 'EC', '75', '100', '0'), (5937, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Spring ', '2013', '164', '149', '313', '3.5', '99', 'Govt. Engineering College Trichur[University of Calicut]', 'Electrical & Electronics Engineering', '70', '100', '0'), (5938, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '158', '152', '310', '3', '107', 'N I E Mysore', 'Computer Science and Engineering', '9.24', '10', '41'), (5939, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '165', '157', '322', '3', 'None', 'None', '0', '8.68', '10', '0'), (5940, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '164', '150', '314', '3', '103', 'Indus Inst. of Tech. and Eng.', 'E.C.', '8.77', '10', '0'), (5941, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '730', '380', '1110', '3', '93', 'MU', '0', '63', '100', '0'), (5942, 'Arizona State University', '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2007', '730', '440', '1170', '3.5', '240', 'PSG College of Technology', 'Automotive Engg', '8.11', '10', '0'), (5943, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '152', '314', '4', '107', 'VTU', 'ECE', '78', '100', '0'), (5944, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '640', '1440', '3', '108', 'Amrita School of Engineering', 'Information Technology', '7.1', '10', '0'), (5945, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Electronics', 'Fall ', '2014', '158', '152', '310', '3', 'None', 'SSN College of Engineering', 'EEE', '81', '100', '0'), (5946, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '750', '430', '1180', '4', '109', 'BIT Mesra', 'Electronics and Communication', '7.92', '10', '0'), (5947, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '165', '156', '321', '4', '114', 'VTU', 'ece', '76', '100', '0'), (5948, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '165', '152', '317', '3.5', '104', 'University of Mumbai', 'Electronics Engineering', '66.67', '100', '0'), (5949, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '470', '1250', '3', '106', 'MU', 'Instrumentation', '62.84', '100', '0'), (5950, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2012', '730', '500', '1230', '3', '91', 'B.V.Bhoomraddi College', 'Electrical & Electronics', '8.26', '10', '0'), (5951, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '161', '151', '312', '4', '109', 'PESIT', 'Telecommunication', '8.46', '10', '0'), (5952, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '800', '670', '1470', '4', '116', 'VTU', 'Electrical Engineering', '72', '100', '0'), (5953, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '160', '150', '310', 'None', '110', 'Anna University', 'ECE', '8.46', '10', '16'), (5954, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2013', '158', '142', '300', '3', '95', 'Rajasthan Technical University', 'ECE', '62', '100', '0'), (5955, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '161', '140', '301', '3.5', '100', 'Sir MVIT', 'Electronics & Communication', '81.5', '100', '0'), (5956, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '700', '480', '1180', '3.5', '99', 'SSN College of Engineering', 'Computer science and engineering', '72', '100', '0'), (5957, 'Arizona State University', '6', 'Reject', 'MS', 'Computational Science', 'Fall ', '2014', '154', '149', '303', '3.5', '94', 'RKDF IST', 'IT', '74', '100', '0'), (5958, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '790', '410', '1200', '3.5', '109', 'Anna University', 'Computer Science and Engineering', '7.1', '10', '0'), (5959, 'Arizona State University', '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2011', '730', '530', '1260', '3', '93', 'Uni of Mumbai', 'Production', '58.9', '100', '0'), (5960, 'Arizona State University', '6', 'Reject', 'MS', 'Materials Science & Engineering', 'Fall ', '2014', '158', '154', '312', '2.5', '107', 'NIT Rourkela', 'Ceramic Engineering', '6.8', '10', '33'), (5961, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2006', '800', '650', '1450', '4', '277', 'MU', 'Electronics', '62', '100', '0'), (5962, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '159', '154', '313', '4', '105', 'Bangalore Institute of Technology', 'Electronics and Communcication Engineering', '68.2', '100', '0'), (5963, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '153', '156', '309', '4', '111', 'None', 'Computer Science', '7', '10', '30'), (5964, 'Arizona State University', '6', 'Reject', 'MS', 'MIS', 'Fall ', '2015', '154', '142', '296', '3', '80', 'UPTU', 'CSE', '61', '100', '0'), (5965, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '158', '151', '309', '4', '110', 'None', 'Information Technology', '8.1', '10', '0'), (5966, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2007', '790', '560', '1350', '4', '273', 'SVCE', 'Comp Science', '73.3', '100', '0'), (5967, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '148', '310', '2.5', '92', 'University of Pune', 'IT', '60', '100', '25'), (5968, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '163', '150', '313', '3', '99', 'NIT SILCHAR ASSAM INDIA', 'ELECTRICAL ENGINEERING', '6.93', '10', '0'), (5969, 'Arizona State University', '6', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2013', '156', '142', '298', '3', '97', 'SIES Graduate School of Technology', 'EXTC', '0', '0', '0'), (5970, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '158', '147', '305', '4', '7', 'Osmania University', 'ECE', '81.2', '100', '0'), (5971, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '152', '145', '297', '3', '98', 'None', '0', '8.7', '10', '0'), (5972, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '560', '1350', '3.5', '114', 'BITS Pilani', 'CSIS', '0', '0', '0'), (5973, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '158', '146', '304', '3', '95', 'UVCE', 'Electronics and Communications', '77.16', '100', '0'), (5974, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '690', '590', '1280', '3', '104', 'SASTRA', 'IT', '8.12', '100', '0'), (5975, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2014', '160', '151', '311', '2.5', '0', 'VR Siddhartha Engineering College Vijayawada', 'Electronics & Instrumentation', '85.3', '100', '0'), (5976, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '157', '324', '4.5', '109', 'Jaypee Institute of Information Technology', 'Computer Science', '8', '10', '36'), (5977, 'Arizona State University', '6', 'Reject', 'MS', 'Electronic and Telecommunication Engineering', 'Fall ', '2014', '156', '145', '301', '3.5', 'None', 'SCSVMV University', 'ECE', '8.88', '10', '0'), (5978, 'Arizona State University', '6', 'Reject', 'MS', 'Information Security', 'Fall ', '2014', '159', '149', '308', '3', '103', 'SASTRA', 'Computer Science', '7.5', '10', '0'), (5979, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '700', '430', '1130', '3.5', 'None', 'S.V.C.E', 'EEE', '73', '100', '0'), (5980, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '145', '309', '3.5', '98', 'Pune University', 'Information technology', '63', '100', '0'), (5981, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '162', '154', '316', '3.5', '114', 'VTU', 'Electronics and Communication', '8.31', '10', '0'), (5982, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '157', '149', '306', '3', '103', 'Thakur College of Engineering and Technology', 'IT', '58', '100', '12'), (5983, 'Arizona State University', '6', 'Reject', 'MS', 'MIS', 'Spring ', '2016', '158', '149', '307', '4', '101', 'University of Mumbai', 'Computers', '65', '100', '25'), (5984, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '760', '640', '1400', '4', '112', 'MU', 'EXTC', '59', '100', '0'), (5985, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '550', '1320', '4', '103', 'SVCE', 'CSE', '72', '100', '0'), (5986, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '160', '147', '307', '3', '86', 'MDU', 'MCA', '74', '100', '45'), (5987, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '157', '144', '301', '3', '80', 'Dr.Ambedkar Institute of Technology', 'Electronics and Communication', '8.92', '10', '0'), (5988, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '160', '144', '304', '3', '91', 'VTU', 'Electronics and Communication', '8.12', '10', '0'), (5989, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '740', '610', '1350', '4', '107', 'VTU', 'Electronics and Communication', '71', '100', '0'), (5990, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', 'None', 'None', '0', 'None', 'None', 'VTU', 'Electronics & Communication', '70.5', '100', '77'), (5991, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '780', '540', '1320', '3', '104', 'CoE Trivandrum', 'ECE', '7.85', '10', '0'), (5992, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '166', '150', '316', '3.5', '110', 'Pune University', 'Electronics and Telecommunication', '70', '100', '0'), (5993, 'Arizona State University', '6', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2011', '800', '610', '1410', '3.5', '109', 'Anna University', 'Information Technology', '77', '100', '0'), (5994, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '161', '157', '318', '3', '108', 'GKV', 'ECE', '76', '100', '0'), (5995, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '530', '1330', '4.5', '114', 'RTM Nagpur University', 'Electronics and Communication Engg.', '62.4', '100', '0'), (5996, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2012', '790', '480', '1270', '4', '109', 'VTU', 'ECE', '70.1', '100', '0'), (5997, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '149', '307', '3', '94', "St Joseph's College of Engineering", 'Electronics And Communication', '75.45', '100', '0'), (5998, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '144', '302', '3', '91', 'MU', 'I.T', '74.78', '100', '0'), (5999, 'Arizona State University', '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '163', '149', '312', '4.5', '106', 'MU', '0', '58', '100', '0'), (6000, 'Arizona State University', '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '158', '153', '311', '4', '100', 'Nit Allahabad', 'Mechanical Engineering', '6.02', '10', '43'), (6001, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '800', '360', '1160', '3', '103', 'MU', 'Electronics and Communicatiion', '71.28', '100', '0'), (6002, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Graphics and Game Technology', 'Fall ', '2013', '161', '155', '316', '3', '107', 'VTU', 'Electronics & Communication', '78', '100', '0'), (6003, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '162', '325', '4', '111', 'University of Kerala', 'Computer Science', '8.1', '10', '36'), (6004, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '620', '1420', '4', '103', 'BMSCE', 'Electronics and Communications', '68.1', '100', '0'), (6005, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '157', '152', '309', '3', '104', 'MU', 'EXTC', '70.48', '100', '12'), (6006, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '161', '151', '312', '4', '101', 'Rajasthan Technical University', 'Electronics & Communication Engg', '70.1', '100', '0'), (6007, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '157', '152', '309', '3', '103', 'Nagpur University', 'Computer Technology', '71.2', '100', '0'), (6008, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '150', '311', '3.5', '94', 'NIT Paatna', 'ELECTRICAL ENGINEERING', '8.57', '10', '0'), (6009, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Spring ', '2013', '790', '600', '1390', '3', 'None', 'Shri Guru Gobind Singhji Institute of Engineering And Technology', 'Electronics and Telecommunication', '7.7', '10', '0'), (6010, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '160', '322', '3.5', '113', 'Pune University', 'Computer Engineering', '3.36', '4', '31'), (6011, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '400', '1190', '3.5', '100', 'Anna University', 'CS', '76', '100', '0'), (6012, 'Arizona State University', '6', 'Reject', 'MS', 'CS / MSIS / ITM', 'Fall ', '2015', '170', '152', '322', '3.5', '97', 'Manipal Institue of Technology', 'Chemical', '6.64', '10', '56'), (6013, 'Arizona State University', '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '157', '149', '306', '3.5', '94', 'Velammal Engineering College', 'Production Engineering', '7.9', '10', '2'), (6014, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '770', '690', '1460', '3', '105', "Vivekanand Educational Society's Institute Of Technology Mumbai", 'Electronics and Telecommunication', '65', '100', '0'), (6015, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '156', '145', '301', '3', '92', 'Dr Ambedkar Institute of Technology', 'Telecommunications', '82.57', '100', '0'), (6016, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '164', '149', '313', '3', '104', 'Nirma Institute of Technology', 'Electronics and Communication Engineering', '8.1', '10', '0'), (6017, 'Arizona State University', '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2011', '720', '440', '1160', '3', '105', 'JNTU', 'Mechanical', '62', '100', '0'), (6018, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '160', '144', '304', '3', '98', 'KLE College of Engineering and Technology Belgaum', 'Electronics and Communication', '66.26', '100', '0'), (6019, 'Arizona State University', '6', 'Reject', 'MS', 'Communication Engineering', 'Fall ', '2014', '159', '150', '309', '3', '93', 'UPTU', 'Electronics & Communication', '70', '100', '0'), (6020, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2014', '168', '152', '320', '3.5', 'None', 'mharana pratap college of technology gwalior', 'Electrical', '74.8', '100', '0'), (6021, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Electronics', 'Fall ', '2013', '164', '152', '316', 'None', '112', 'FRCRCE', 'Electronics', '70', '100', '0'), (6022, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and electrical engineering', 'Fall ', '2013', '162', '160', '322', '4', '113', 'BMSCE', 'ECE', '78', '100', '0'), (6023, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '161', '156', '317', '4', '115', 'Manipal Institue of Technology', 'Electronics and Communication', '8.62', '10', '26'), (6024, 'Arizona State University', '6', 'Reject', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (6025, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '540', '1340', '4', '105', 'University of Mumbai', 'Electronics & Telecommunication', '61', '100', '0'), (6026, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '154', '152', '306', '3', '109', 'MU', 'ELECTRICAL', '70', '100', '0'), (6027, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical & Computer Engg/MIS/Industrial/Systems Engg', 'Fall ', '2014', '156', '147', '303', '4', '104', 'Anna University', 'EEE', '80.25', '100', '29'), (6028, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '165', '147', '312', '3.5', '99', 'PSG College of Technology', 'Electronics and Communication', '8.55', '10', '34'), (6029, 'Arizona State University', '6', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2014', '157', '156', '313', '4', '114', 'National University of Sciences and Technology', 'Mechatronics Engineering', '2.67', '4', '0'), (6030, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '720', '420', '1140', '4', '106', 'Pune University', 'E&TC;', '0', '0', '0'), (6031, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '610', '1410', '3', '108', 'MU', 'Electronics and Telecom', '66', '100', '0'), (6032, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '150', '312', '3', '105', 'Dharamsinh Desai University', 'Information Technology', '8.17', '10', '9'), (6033, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '168', '155', '323', '4', '119', 'Amrita Vishwa Vidhyapeetham', 'ECE', '8.79', '10', '0'), (6034, 'Arizona State University', '6', 'Reject', 'MS', 'Mathematics', 'Fall ', '2011', '780', '530', '1310', '3.5', '100', 'ISM Dhanbad', 'Applied Mathematics', '8.43', '10', '0'), (6035, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '156', '157', '313', '4', '112', 'Siksha O Anusandhan University', 'Electronics & Communication Engineering', '7.69', '10', '0'), (6036, 'Arizona State University', '6', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2011', '1310', '550', '1860', '3.5', '103', 'CUSAT', 'Civil', '79', '100', '0'), (6037, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '158', '152', '310', '3', '113', 'Goa University', 'Electronics and Telecommunications', '70', '100', '40'), (6038, 'Arizona State University', '6', 'Reject', 'MS', 'Industrial Engineering', 'Spring ', '2015', '160', '150', '310', '3.5', '88', 'KL University', 'Mechanical', '7.3', '10', '9'), (6039, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2014', '162', '151', '313', '3', '101', 'Amrita Vishwa Vidhyapeetham', 'Electronics and Instrumentation Engineering', '7.48', '10', '43'), (6040, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '162', '151', '313', '3.5', '112', 'VIT', 'Electronics and Communication', '8.93', '100', '24'), (6041, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '162', '151', '313', '3.5', '101', 'University of Pune', 'IT', '64', '100', '0'), (6042, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '160', '146', '306', '3.5', '106', 'Madras Institute of Technology', 'Information Technology', '8.2', '10', '54'), (6043, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '147', '308', '3.5', '109', 'VIT University', 'ECE', '8.45', '10', '0'), (6044, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '160', '153', '313', '4', '102', 'Sri Venkateswara College of Engineering', 'EEE', '7.5', '10', '0'), (6045, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2016', '800', '650', '1450', '3.5', '114', 'Manipal Institue of Technology', 'Electronics and Communications', '3.61', '4', '8'), (6046, 'Arizona State University', '6', 'Reject', 'MS', 'Computational Biology', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'Master of Technology Anticipated graduation July 2013 Jawaharlal Nehru Univesity ', 'School of computational and systems biology', '8.15', '10', '0'), (6047, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '165', '148', '313', '3', '89', 'Sreenidhi Institute of Science & Technology', 'ECE', '82', '100', '0'), (6048, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '165', '148', '313', '3', '89', 'Sreenidhi Institute of Science & Technology', 'ECE', '82', '100', '0'), (6049, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '155', '152', '307', '3', '105', 'Reva Institute of Technology', 'Computer Science', '73.4', '100', '0'), (6050, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '500', '1300', '3', '102', 'SSN College of Engineering', 'EEE', '8.218', '10', '0'), (6051, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '166', '152', '318', '4', '108', 'Govt. Engineering College Thrissur Calicut University', 'Electronics and Communication', '77.1', '100', '0'), (6052, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '161', '155', '316', '3', '103', 'RGTU', 'IT', '73', '100', '0'), (6053, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '151', '313', '3.5', '106', 'MU', 'Computer Engineering', '60.25', '100', '58'), (6054, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '770', '600', '1370', '3.5', '104', 'MU', 'CE', '70', '100', '0'), (6055, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '158', '147', '305', '3.5', '100', 'Pune University', 'Computer Science', '62', '100', '0'), (6056, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '168', '149', '317', '3.5', '105', 'Anna University', 'ECE', '7.567', '10', '0'), (6057, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '156', '138', '294', '3.5', '92', 'M.D.U.', 'Computer science', '66', '100', '0'), (6058, 'Arizona State University', '6', 'Reject', 'MS', 'Civil Engineering', 'Spring ', '2016', '157', '143', '300', '3', '84', 'Anna University', 'civil engineering', '6.3', '10', '0'), (6059, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '162', '153', '315', '3', '103', 'NITK Surathkal', 'ECE', '8.82', '10', '30'), (6060, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '166', '152', '318', '4', '111', 'NITK Surathkal', 'Electrical & Electronics', '8.3', '10', '24'), (6061, 'Arizona State University', '6', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2013', '159', '151', '310', '3', '109', 'MU', 'Electronics and telecom', '64.5', '100', '0'), (6062, 'Arizona State University', '6', 'Reject', 'MS', 'MIS', 'Fall ', '2015', '165', '154', '319', '3.5', '107', 'R V College of Engineering', 'Telecom', '62.9', '100', '60'), (6063, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '580', '1350', '4', '112', 'SSIT VTU', 'IT', '69', '100', '0'), (6064, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2012', '770', '630', '1400', '3', '104', 'Technological Edu. Institute of Piraeus', 'Electrical Engineering', '6.49', '10', '0'), (6065, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '168', '153', '321', '3', '104', 'BITS Pilani', 'Computer Science', '7.2', '10', '0'), (6066, 'Arizona State University', '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '161', '146', '307', '3', '99', 'COEP', 'Instrumentation & Control', '7.57', '10', '20'), (6067, 'Arizona State University', '6', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2008', '780', '560', '1340', '4', '108', 'Aeronautical Society of India', 'Aerospace', '58.27', '100', '0'), (6068, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '510', '1300', '3', '91', 'K J Somaiya College of Engiineering', 'Electronics & Telecom', '61', '100', '0'), (6069, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '168', '150', '318', '2.5', '95', 'SRM', 'EEE', '9.15', '10', '0'), (6070, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '151', '313', '3.5', '98', 'DMCE University of Mumbai', 'Electronics', '57', '100', '0'), (6071, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '168', '154', '322', '3', '96', 'L D College Of Engineering', 'COMPUTER', '7.24', '10', '12'), (6072, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2013', '163', '148', '311', '3', '100', 'Sardar Vallabhbhai National Institute of Technology', 'Electrical Engineering', '7.84', '10', '0'), (6073, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '170', '156', '326', '3', '107', 'IIT Bombay', 'Electical Engineering', '7.81', '10', '0'), (6074, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '164', '149', '313', '4', '104', 'VTU', 'Instrumentation Tech.', '78', '100', '24'), (6075, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '750', '450', '1200', '3', '104', 'nrec', 'ece', '83', '100', '0'), (6076, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '146', '307', '3.5', '100', 'Jain University', 'Electronics & Communication', '71.14', '100', '0'), (6077, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '141', '300', '2.5', 'None', 'JNTU', 'CSE', '78', '100', '0'), (6078, 'Arizona State University', '6', 'Reject', 'MS', 'Information Assurance', 'Fall ', '2013', '159', '150', '309', '3', '92', 'RTU', 'IT', '62', '100', '0'), (6079, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '157', '150', '307', '3', '95', 'Amity University', 'CSE', '8.35', '10', '0'), (6080, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '158', '150', '308', '4', '101', 'VTU', 'Electronics & Communication', '69.5', '100', '0'), (6081, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '790', '610', '1400', '3', '98', 'NIT Warangal', 'Electronics and Communication Engineering', '7.64', '10', '0'), (6082, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '161', '153', '314', '3.5', '99', 'MU', 'EE', '72', '100', '0'), (6083, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '730', '450', '1180', '3', '105', 'Sri Sairam Engineering College', 'Electronics and communication', '84', '100', '0'), (6084, 'Arizona State University', '6', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '152', '152', '304', '3', '83', 'VTU', 'Mechanical', '70', '100', '0'), (6085, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '158', '149', '307', '2', '90', 'VIT Pune', 'Electronics', '63.45', '100', '0'), (6086, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2014', '165', '149', '314', '3', 'None', 'KLEF UNIVERSITY', 'EEE', '7.01', '10', '0'), (6087, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '160', '154', '314', '3.5', '109', 'SASTRA', 'ECE', '7.704', '10', '0'), (6088, 'Arizona State University', '6', 'Reject', 'MS', 'Biomedical Engineering', 'Fall ', '2014', '159', '146', '305', '3', '95', 'D j Sanghvi', 'Biomedical engineering', '3.5', '4', '0'), (6089, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '750', '570', '1320', '3.5', 'None', 'Manipal Institue of Technology', 'ECE', '8.53', '10', '0'), (6090, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '730', '540', '1270', '4', '98', 'MU', 'Computer', '63.2', '100', '0'), (6091, 'Arizona State University', '6', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Spring ', '2015', '159', '149', '308', '3', '95', 'Vaish College of Engineering', 'IT', '73.1', '100', '30'), (6092, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '161', '140', '301', '2.5', '99', 'VTU', 'ECE', '9.53', '10', '12'), (6093, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and computer science', 'Fall ', '2011', '800', '410', '1210', '4', '104', 'NITK Surathkal', 'Electrical and Electronics', '8.01', '10', '0'), (6094, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '162', '147', '309', '4', '104', 'Anna University', 'EIE', '8.03', '10', '0'), (6095, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '152', '313', '3', '105', 'SASTRA', 'B.tech Mechatronics', '8', '10', '18'), (6096, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '148', '311', '3.5', '93', "Siksha 'O' Anusandhan University", 'Electrical and Electronics Engineering', '8.32', '10', '30'), (6097, 'Arizona State University', '6', 'Reject', 'MS', 'CS', 'Fall ', '2015', '157', '162', '319', '4', '105', 'Nirma Institute of Technology', 'Computer Engineering', '8.06', '10', '24'), (6098, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '156', '150', '306', '3', '104', 'Pune University', 'Electrical Engineering', '59.39', '100', '0'), (6099, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '159', '141', '300', '3', 'None', 'RMK Engineering College', 'Electronics and Communication', '76', '100', '0'), (6100, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '166', '157', '323', '4', '113', 'DDU', 'EC', '65.2', '100', '0'), (6101, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Electronics', 'Fall ', '2012', '159', '155', '314', '3.5', '102', 'Sardar Patel University', 'Electronics & Communication', '3.45', '4', '0'), (6102, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '157', '152', '309', '3', '105', 'PICT', 'Information Technology', '73.53', '100', '0'), (6103, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '580', '1380', '4', '110', 'VTU', 'ECE', '76.2', '100', '0'), (6104, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2014', '162', '152', '314', '2.5', '100', 'ANU', 'ECE', '74.7', '100', '0'), (6105, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Spring ', '2014', '160', '159', '319', '4.5', '110', 'Anna University', 'ECE', '86', '100', '0'), (6106, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '164', '144', '308', '3.5', '99', 'VTU', 'Electronics and communication', '82.5', '100', '0'), (6107, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '152', '310', '3.5', '102', 'Mepco Schlenk Engineering College', 'Computer Science', '8.21', '10', '0'), (6108, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engg/ comp engg', 'Fall', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '20'), (6109, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '161', '150', '311', '3', '98', 'Fr. Conceicao Rodrigues College of Engineering', 'Electronics Engineering', '65', '100', '0'), (6110, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '161', '157', '318', '3', '101', 'VNR VJIET', 'Computer Science', '68.21', '100', '0'), (6111, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science/ Electronics and Communication', 'Fall ', '2015', '158', '152', '310', '3.5', '106', 'University of Pune', 'Electronics and Telecommunications', '58', '100', '92'), (6112, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '164', '136', '300', '2.5', '85', 'GITAM', 'CSE', '7.87', '10', '0'), (6113, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '168', '146', '314', '3', '103', 'Keio', 'electrical engineering', '3.6', '4', '96'), (6114, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2016', '161', '144', '305', 'None', '96', 'Vasavi College of Engineering', 'it', '75', '100', '0'), (6115, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2006', '780', '520', '1300', '4.5', '280', 'JNTU', 'Computer Science and Engineering', '67', '100', '0'), (6116, 'Arizona State University', '6', 'Reject', 'MS', 'microelectronics', 'Spring ', '2012', '750', '380', '1130', '3.5', '80', 'MBM Jodhpur India', 'ECE', '71', '100', '0'), (6117, 'Arizona State University', '6', 'Reject', 'MS', 'Chemical/Environmental Engg.', 'Fall ', '2006', '800', '530', '1330', '4.5', '293', 'G. H. Patel College of Engineering and Technology', 'Chemical Engineering', '8.35', '10', '0'), (6118, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '169', '148', '317', '3', '104', 'NIT Tirchy', 'Electronics and Communication', '7.77', '10', '36'), (6119, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '162', '156', '318', '4', '112', 'BNMIT', 'Electronics and communication', '71.5', '100', '0'), (6120, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2007', '750', '640', '1390', '4', '267', 'SIES Graduate School of Technology', 'COMPUTER', '60', '100', '0'), (6121, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '157', '155', '312', '3.5', '108', 'Thiagarajar College of engineering', 'ECE', '8.4', '10', '0'), (6122, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2013', '161', '154', '315', '3', '96', 'VTU', 'EC', '67', '100', '0'), (6123, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '162', '152', '314', '3', '90', 'B V Bhoomaraddi College of Engg & Tech (Affiliated to VTU)', 'Electronics and Communication', '9.1', '10', '0'), (6124, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '158', '147', '305', '3', '100', 'RNSIT', 'Electronics', '76', '100', '17'), (6125, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '160', '145', '305', '3.5', '104', 'S.J.B. Institute of Technology', 'Information Science and Engineering', '74.5', '100', '24'), (6126, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '161', '148', '309', '3', '90', 'BITS Dubai', 'ECE', '7.7', '10', '0'), (6127, 'Arizona State University', '6', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2014', '163', '149', '312', '3', '109', 'CBIT', 'Ece', '75', '100', '0'), (6128, 'Arizona State University', '6', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2015', '159', '150', '309', '4', '110', 'VIT University', 'School of Mechanical and Building Sciences', '7.64', '10', '13'), (6129, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '760', '640', '1400', '3.5', '113', 'MU', 'Elec and Telecom', '67.1', '100', '0'), (6130, 'Arizona State University', '6', 'Reject', 'MS', 'MIS/CS', 'Fall ', '2015', '161', '147', '308', '4', '94', 'SRM', 'EEE', '7.01', '10', '18'), (6131, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2008', '780', '640', '1420', '4.5', '102', 'Anna University', 'CSE', '81', '100', '0'), (6132, 'Arizona State University', '6', 'Reject', 'MS', 'CS', 'Fall ', '2014', '158', '153', '311', '3.5', '104', 'Guru Gobind Singh Indraprashta University', 'Computer Science Engg', '72', '100', '0'), (6133, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '161', '144', '305', '3', '93', 'Sri Krishna College Of Engineering And Technology', 'ECE', '7.75', '10', '0'), (6134, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '710', '430', '1140', '3', '95', "St Joseph's College of Engineering", 'cse', '70', '100', '0'), (6135, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '148', '309', '4', '103', 'CEG', 'Electronics and Communication', '7.97', '10', '27'), (6136, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '168', '149', '317', '3.5', '95', 'Nagpur University', 'Electronics Telecommunication', '72', '100', '0'), (6137, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2012', '740', '440', '1180', '3', '106', 'MU', 'Computer Engineering', '56.05', '100', '0'), (6138, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '165', '148', '313', '3', '94', 'BITS Pilani', 'Electronics and Instrumentation', '5.81', '10', '0'), (6139, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '156', '147', '303', '3', '85', 'UPTU', 'Computer Science', '71.44', '100', '0'), (6140, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '163', '158', '321', '3.5', '111', 'VTU', 'Electronics and Communication', '8.2', '10', '32'), (6141, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2014', '163', '149', '312', '3', '91', 'Shri Guru Gobind Singhji Institute of Engineering And Technology', 'Electronics and Tele-communication', '7.93', '10', '0'), (6142, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '520', '1280', '3.5', '97', 'SJCE', 'Electronics and Communication', '63', '100', '0'), (6143, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '168', '152', '320', 'None', 'None', 'JSS Noida', 'Information Technology', '70', '100', '33'), (6144, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2016', '158', '151', '309', '3', '93', 'Mody University', 'MCA', '9.2', '10', '0'), (6145, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '164', '147', '311', '3', '94', 'B V Bhoomaraddi College of Engg & Tech (Affiliated to VTU)', 'Electronics & Communication', '8.91', '10', '20'), (6146, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '165', '151', '316', 'None', '112', 'Sri Venkateswara College of Engineering', 'EEE', '7.94', '10', '0'), (6147, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '700', '600', '1300', '4', '106', 'Amrita School of Engineering', 'Electronics & Communication', '7.56', '10', '0'), (6148, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '770', '310', '1080', '2.5', '93', 'Amity University', 'Computer Science and Engineering', '7.5', '10', '0'), (6149, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '162', '151', '313', '3.5', '112', 'VTU', 'ECE', '74.16', '100', '58'), (6150, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2015', '163', '152', '315', '3', '104', 'Anna University', 'Electronics and Communication Engineering', '9.28', '10', '36'), (6151, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '166', '152', '318', '4', '112', 'MU', 'Electronics and Telecommunication', '62.96', '100', '0'), (6152, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '164', '155', '319', '3.5', '110', 'MGIT JNTU', 'ECE', '75.2', '100', '0'), (6153, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2015', '800', '490', '1290', '3', 'None', 'NIT Warangal', 'eee', '7.92', '10', '0'), (6154, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '158', '147', '305', '3', '101', 'UVCE', 'ECE', '81.57', '100', '0'), (6155, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '156', '149', '305', '3.5', '97', 'RNSIT', 'Computer Science & Engineering', '81', '100', '0'), (6156, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '165', '152', '317', '3', '107', 'DA-IICT', 'Information and Communication Technology', '7.15', '10', '12'), (6157, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '148', '309', '3', '104', 'University of Madras', 'EEE', '81', '100', '0'), (6158, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '152', '318', '3', '103', 'Punjab Technical University', 'CSE', '75', '100', '0'), (6159, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '162', '154', '316', '3.5', '110', 'Jamia Millia Islamia', 'Electronics and Communication', '9.37', '10', '0'), (6160, 'Arizona State University', '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '590', '1390', '3.5', '105', 'Nagpur University', 'Mechanical', '71', '100', '0'), (6161, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '156', '147', '303', '4', '90', 'Velammal Engineering College', 'Department of Electronics and Instrumentation', '3.96', '5', '0'), (6162, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2008', '780', '470', '1250', '4.5', '111', 'Nagpur University', 'Electronics Engineering', '69.5', '100', '0'), (6163, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '800', '550', '1350', '3', '104', 'Jamia Millia Islamia', 'Computer Engineering', '7.23', '10', '0'), (6164, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '620', '530', '1150', '4', '103', 'Pune University', 'Information technology', '63', '100', '0'), (6165, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '153', '319', '4', '105', 'GLA Institute of Technology and Management', 'Electronics and Communication Engineering', '73', '100', '0'), (6166, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '154', '150', '304', '3', '91', 'VTU', 'Electronics and Communication', '73', '100', '0'), (6167, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '168', '159', '327', '4', '110', 'UPTU', 'ECE', '73.68', '100', '0'), (6168, 'Arizona State University', '6', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '770', '380', '1150', '3', '94', 'MU', 'Computer Engineering', '57.78', '100', '0'), (6169, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Spring ', '2016', '161', '147', '308', '4', '105', 'JNTU', 'ECE', '81.6', '100', '0'), (6170, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', 'None', 'None', '0', 'None', '106', 'GITAM', 'Electronics and Communication', '7.15', '10', '0'), (6171, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '700', '530', '1230', '3.5', '104', 'None', 'Information Technology', '0', '100', '0'), (6172, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '164', '149', '313', '4', '102', 'UPTU', 'Electronics and Communication Engineering', '72.48', '100', '0'), (6173, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '160', '321', '4', 'None', 'MU', 'Computer Science', '61.3', '100', '0'), (6174, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '163', '145', '308', '3', '92', 'VTU', 'Electronics and Communication', '73.38', '100', '0'), (6175, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2010', '760', '520', '1280', '3.5', '110', 'MU', 'Computer Engineering', '60', '100', '0'), (6176, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '155', '317', '3.5', '103', 'Manipal Institue of Technology', 'Computer Science', '8.54', '10', '16'), (6177, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '163', '146', '309', 'None', '99', 'Global Academy Of Technology', 'Electronics and Communication', '72.83', '100', '0'), (6178, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2015', '164', '154', '318', '4', '108', 'UPTU', 'Electronics and Communication Engineering', '74.2', '100', '39'), (6179, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Spring ', '2014', '158', '160', '318', '4.5', '110', 'Anna University', 'ECE', '83', '100', '0'), (6180, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '160', '153', '313', '3.5', '105', 'MRCE - affiliated to MDU', 'electronics and communication', '60', '100', '0'), (6181, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '153', '311', '3.5', '107', 'BIT Mesra', 'Computer Science Engineering', '7.42', '10', '0'), (6182, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '167', '151', '318', '3', '99', 'K J Somaiya College of Engiineering', 'Computers', '65', '100', '0'), (6183, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '167', '159', '326', '4.5', '117', 'BVDU', 'Electronics & Telecommunication', '63', '100', '0'), (6184, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2013', '156', '149', '305', '3.5', '100', 'SRR Engineering College', 'EEE', '7.94', '10', '0'), (6185, 'Arizona State University', '6', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '164', '156', '320', '3', '102', 'GITAM', 'E C E', '7.4', '10', '0'), (6186, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '740', '470', '1210', '3', '110', 'Bharati Vidyapeeth', 'ECE', '67', '100', '0'), (6187, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '143', '304', '2.5', '89', 'PESIT', 'Telecommunication', '65', '100', '0'), (6188, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '150', '308', 'None', 'None', 'PSG College of Technology', 'Computer Science', '7.97', '10', '0'), (6189, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '720', '570', '1290', '3.5', '95', 'SRM', 'Instrumenation & Control Engineering', '7.6', '10', '0'), (6190, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '156', '317', '3', '94', 'Rajiv Gandhi Prodyogiki Vishwavidyalaya', 'computer science', '8.32', '10', '0'), (6191, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '158', '145', '303', '3.5', '95', 'VTU', 'E&C;', '84.55', '100', '0'), (6192, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '164', '149', '313', '3.5', '100', 'SRM', 'eee', '8.637', '10', '0'), (6193, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '158', '148', '306', '3', '100', 'VTU', 'Instrumentation Technology', '77', '100', '0'), (6194, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '157', '145', '302', '3.5', '99', 'None', '0', '82', '100', '0'), (6195, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '160', '153', '313', '4', '108', 'VTU', 'Electrical and electronics', '70', '100', '0'), (6196, 'Arizona State University', '6', 'Reject', 'MS', 'Project Management', 'Fall ', '2014', '158', '148', '306', '3', '93', 'I.T.S. Engineering College- Gautam Buddha Tech University', 'Mechanical Engineering', '66.6', '100', '0'), (6197, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '154', '144', '298', 'None', '89', 'VTU', 'ECE', '78', '100', '0'), (6198, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '720', '550', '1270', '3', '90', 'Madras Institute of Technology', 'ECE', '8.9', '10', '0'), (6199, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '161', '146', '307', '3', '94', 'BITS Pilani', 'Msc Tech. Information Systems', '6.12', '10', '0'), (6200, 'Arizona State University', '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '740', '550', '1290', '3.5', '95', 'Vishwakarma Institute of Technology', 'Mechanical Engineering', '65.64', '100', '0'), (6201, 'Arizona State University', '6', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2014', '154', '146', '300', '3', '89', 'Bangalore Institute of Technology', 'Telecommunication (VTU)', '78', '100', '33'), (6202, 'Arizona State University', '6', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2014', '164', '161', '325', '4', '116', 'K J Somaiya College of Engiineering', 'Electronics and Telecommunication', '65.48', '100', '0'), (6203, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '165', '164', '329', '3.5', '110', 'St. Peters University', 'computer science', '8.5', '10', '17'), (6204, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '590', '1360', 'None', '105', 'Model Engineering College', 'Computer Science', '73', '100', '0'), (6205, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and computer engineering electrical engineering telecommunications engineering', 'Fall ', '2015', '166', '156', '322', '3.5', '109', 'Anna University', 'Electrical & Electronics Engineering', '7.79', '10', '0'), (6206, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2016', '160', '146', '306', '3.5', '102', 'None', 'Computer Science', '76.6', '100', '27'), (6207, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '330', '1080', '3.5', '93', 'VTU', 'CS', '71.3', '100', '0'), (6208, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '161', '145', '306', '3', '89', 'Rajasthan University', 'Electronics and Communication Engineering', '72', '100', '55'), (6209, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '700', '530', '1230', '3', '95', 'SSN College of Engineering', 'EEE', '80', '100', '0'), (6210, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '166', '148', '314', '3', '100', 'Pune University', 'Electronics & Telecom', '70', '100', '0'), (6211, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '160', '145', '305', '3', '95', 'CBIT', 'CSE', '78.4', '100', '12'), (6212, 'Arizona State University', '6', 'Reject', 'MS', 'Information Security', 'Fall ', '2011', '800', '430', '1230', '3.5', '94', 'Amrita School of Engineering', 'INFORMATION TECHNOLOGY', '7.22', '10', '0'), (6213, 'Arizona State University', '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '161', '157', '318', '3.5', 'None', 'IIT Kanpur', 'Industrial (M.tech)', '9.5', '10', '0'), (6214, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '800', '450', '1250', '4', '109', 'Coimbatore Insitute of Technology', 'EEE', '8.22', '10', '0'), (6215, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '800', '520', '1320', '3', '95', 'University of Mumbai', 'Electronics and Telecommunication', '68.87', '100', '0'), (6216, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and computer science', 'Fall ', '2012', '740', '610', '1350', 'None', '112', 'University of Pune', 'ENTC', '60.2', '100', '0'), (6217, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '163', '152', '315', '4', '100', 'CMRIT', 'Telecommunication', '77', '100', '0'), (6218, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '162', '166', '328', '5', '119', 'SRM', 'EEE', '8.2', '10', '0'), (6219, 'Arizona State University', '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '170', '151', '321', '4', '105', 'BITS Pilani', 'BE(Hons). Mechanical', '6.55', '10', '0'), (6220, 'Arizona State University', '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '490', '1290', '3', '102', 'MU', 'Mechanical', '55', '100', '0'), (6221, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2015', '167', '156', '323', '3.5', '116', 'RMD Engineering College Anna University', 'ECE', '8.7', '10', '6'), (6222, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '161', '148', '309', '3.5', 'None', 'MU', 'Computer', '68', '100', '0'), (6223, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '740', '620', '1360', '4', 'None', 'Delhi College Of Engineeing', 'Information Technology', '71.32', '100', '0'), (6224, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '165', '142', '307', '3.5', '98', 'Guru Gobind Singh Indraprashta University', 'computer Science and Engineering', '78', '100', '0'), (6225, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '160', '148', '308', '3', '100', 'Nagpur University', 'ELECTRONICS', '65', '100', '0'), (6226, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science and Engineering', 'Fall ', '2015', '162', '157', '319', '3', '114', 'JSS Noida', 'ECE', '61.1', '100', '24'), (6227, 'Arizona State University', '6', 'Reject', 'MS', 'MIS', 'Spring ', '2015', '159', '157', '316', '4', '116', 'UPTU', 'CSE', '70.24', '100', '24'), (6228, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '157', '141', '298', '3', '92', 'MDU', 'ECE', '70', '100', '0'), (6229, 'Arizona State University', '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '168', '157', '325', '3.5', '104', 'VCET', 'MEchanical', '64', '100', '12'), (6230, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '153', '316', '3', 'None', 'Jaypee Institute of Information Technology', 'IT', '75', '100', '17'), (6231, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '158', '146', '304', '3', '105', 'University of Pune', 'Information technology', '59.3', '100', '0'), (6232, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '152', '317', '4', '106', 'MU', 'Computer Engineering', '62', '100', '0'), (6233, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '155', '316', '4', '104', 'NIT Calicut', 'Electronics and Communication Engineering', '6.8', '10', '0'), (6234, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '790', '560', '1350', '3', 'None', 'VIT University', 'ECE', '8', '10', '0'), (6235, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '740', '600', '1340', '3.5', '103', 'JNTU', 'Computer science', '69', '100', '0'), (6236, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '159', '143', '302', '3', 'None', 'JNTU', 'Electronics and Communication', '75.2', '100', '27'), (6237, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2007', '800', '670', '1470', '4.5', '290', 'VJTI', 'Electronics', '71.1', '100', '0'), (6238, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '156', '152', '308', '3', '106', 'Pune University', 'Computer Engg.', '60.23', '100', '0'), (6239, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '170', '151', '321', '4', '103', 'NITK Surathkal', 'EEE', '6.72', '10', '0'), (6240, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '168', '147', '315', '3', '91', 'Gujarat Technological University', 'Computer Engineering', '7.96', '10', '29'), (6241, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall', 'None', '168', '145', '313', '3', '93', 'NIT', 'ECE', '7.45', '10', '28'), (6242, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '740', '520', '1260', '3', '99', 'MSRIT', 'E&C;', '74', '100', '0'), (6243, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '510', '1300', '3', '98', 'PICT', 'IT', '64', '100', '0'), (6244, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '160', '143', '303', '2.5', '87', 'Sardar Vallabhbhai National Institute of Technology', 'Computer Engineering', '7.86', '10', '0'), (6245, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '600', '1380', '3.5', '111', 'Pune University', 'Electronics and Telecommunication', '68', '100', '0'), (6246, 'Arizona State University', '6', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2015', '160', '144', '304', '4', '101', 'MDU', 'Aeronautical Engineering', '73', '100', '0'), (6247, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics & Communication', 'Fall ', '2013', '162', '147', '309', '3.5', '99', 'VTU', 'Electroncis and communication', '72', '100', '0'), (6248, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '165', '164', '329', '4.5', '119', 'Dayananda Sagar College of Engineering', 'ece', '78', '100', '0'), (6249, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '152', '310', '4', 'None', 'National Institute of Engineerint VTU', 'Information Science', '0', '0', '0'), (6250, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '163', '144', '307', '3', '93', 'MAIT GGSIPU', 'Electrical and Electronics Engineering', '71.07', '100', '0'), (6251, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '158', '143', '301', '3', '106', 'MU', 'IT', '58', '100', '0'), (6252, 'Arizona State University', '6', 'Reject', 'MS', 'Bioinformatics', 'Fall ', '2013', '165', '146', '311', '3', '101', 'MANIT (NIT) Bhopal', 'Bioinformatics', '7.13', '10', '25'), (6253, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '160', '148', '308', '2.5', '103', 'Anna University', 'Instrumentation and Control', '8.7', '10', '0'), (6254, 'Arizona State University', '6', 'Reject', 'MS', 'Construction Management', 'Fall ', '2014', '168', '149', '317', '4', 'None', 'IIT Roorkee', 'Architecture and Planning', '6.22', '10', '61'), (6255, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Spring ', '2014', '160', '154', '314', '4.5', '104', 'NIT Warangal', 'Electronics & Communication Engineering', '7.3', '10', '0'), (6256, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '161', '148', '309', '3', '93', 'Anna University', 'EE', '8.99', '10', '0'), (6257, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '760', '600', '1360', '3.5', 'None', 'Shri Vaishnav Institute of Science and Technology Indore', 'Electronics and communication', '66.34', '100', '0'), (6258, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '153', '315', '3', '99', 'Amrita Vishwa Vidhyapeetham', 'Electronics & Communications', '8.52', '10', '0'), (6259, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '580', '1350', '3.5', '96', 'Pune University', 'Computer Science', '63', '100', '0'), (6260, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '159', '148', '307', '3', 'None', 'Vignan Institute of Technology and Science', 'School of Electronics', '86', '100', '0'), (6261, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '163', '153', '316', '3.5', '110', 'Anna University', 'Electronics and Communication', '81.5', '100', '0'), (6262, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '141', '304', '3', '87', 'JNTU', 'Information Technology', '81', '100', '20'), (6263, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '780', '590', '1370', '3.5', '102', 'Anna University', 'ece', '71', '100', '0'), (6264, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '13', '163', '153', '316', '4', '109', 'University of Pune', 'E&C;', '69.5', '100', '0'), (6265, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall', 'None', 'None', 'None', '0', 'None', 'None', 'University of Petroleum and Energy studies', 'EEE', '3.46', '4', '0'), (6266, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '800', '570', '1370', '3', '107', 'JNTU', 'ece', '80.6', '100', '0'), (6267, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '560', '1360', '4', '100', 'Rajasthan Technical University', 'Electronics Instrumentation & Control Engg', '67', '100', '0'), (6268, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '157', '152', '309', '3.5', '97', 'MU', 'Computer Science', '56.07', '100', '0'), (6269, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '164', '147', '311', '3', '95', 'GVP Vishakapatnam', 'Information Technology', '71', '100', '0'), (6270, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2016', '162', '156', '318', '3.5', '105', 'Maharishi Dayanand University', 'Electronics And Communication', '69', '100', '0'), (6271, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '720', '1520', '4', '115', 'VJTI', 'ELECTRICAL', '7.3', '10', '0'), (6272, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2006', '800', '640', '1440', '5.5', '287', 'MU', 'IT', '62', '100', '0'), (6273, 'Arizona State University', '6', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2010', '780', '610', '1390', '4', '106', 'Crescent Engineering College', 'Electrical and Electronics', '67', '100', '0'), (6274, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '760', '530', '1290', '3.5', '100', 'VIT', 'electronics and communication', '8.07', '10', '0'), (6275, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2008', '770', '370', '1140', '3.5', '99', 'Anna University', 'EIE', '74', '100', '0'), (6276, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '159', '147', '306', '3.5', '96', 'University of Mumbai', 'Electronics and Telecommunication', '58', '100', '0'), (6277, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '150', '313', '3', '103', 'NIT Surathkal', 'Computer Science', '7.1', '10', '0'), (6278, 'Arizona State University', '6', 'Reject', 'MS', 'Electronic and Telecommunication Engineering', 'Fall ', '2012', '790', '620', '1410', '3.5', '108', 'MU', 'Electronics and Telecommunication', '69', '100', '0'), (6279, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2006', '800', '610', '1410', '4.5', '270', 'MSRIT', 'CSE', '75', '100', '0'), (6280, 'Arizona State University', '6', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2014', '163', '145', '308', '3', '87', 'Amrita School of Engineering', 'ECE', '8.48', '10', '24'), (6281, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '600', '1400', '3', 'None', 'Thapar University', 'ECE', '8.8', '10', '0'), (6282, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '780', '610', '1390', '4', '108', 'MU', 'Computer Engnineering', '61', '100', '0'), (6283, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '160', '153', '313', '4.5', '110', 'School of Engineering and Technology - Jain University Bangalore', 'Electronics and Communications', '76.14', '100', '6'), (6284, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '156', '145', '301', '3', '94', 'Mahrishi Dayanand University', 'Electrical', '68', '100', '0'), (6285, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '750', '570', '1320', '3.5', '99', 'Coimbatore Insitute of Technology', 'CSE', '7.5', '10', '0'), (6286, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '160', '141', '301', '3.5', '95', 'SSN College of Engineering', 'ECE', '8.16', '10', '0'), (6287, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '150', '309', '3', '105', 'Madras Institute of Technology', 'Information Technology', '7.3', '100', '0'), (6288, 'Arizona State University', '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '160', '159', '319', '3.5', '111', 'MU', 'Automobile Engineering', '62', '100', '0'), (6289, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '169', '152', '321', '2', '101', 'BITS Pilani', 'ELECTRONICS & COMMUNICATIONS', '8.58', '10', '0'), (6290, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '160', '146', '306', '3', '100', 'Institute of Technical Education and Research', 'Computer Science', '7.35', '10', '0'), (6291, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '800', '560', '1360', '3', '90', 'IIIT Hyderabad', 'Computer Science', '6.46', '10', '0'), (6292, 'Arizona State University', '6', 'Reject', 'MS', 'Subsea Engineering', 'Fall ', '2014', '168', '147', '315', '2.5', '97', 'Panjab University', 'Mechanical', '76', '100', '20'), (6293, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '370', '1120', '3', '91', 'St thomas college of engg & tech(under West Bengal University of technology)', 'Information Technology', '8.37', '10', '0'), (6294, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '154', '162', '316', '4.5', '113', 'Walchand College Of Engineering', 'CSE', '8.06', '10', '16'), (6295, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '159', '155', '314', '3.5', '106', 'West Bengal University Of Technology', 'Computer Science and Engineering', '7.84', '10', '20'), (6296, 'Arizona State University', '6', 'Reject', 'MS', 'Biomedical Engineering', 'Spring ', '2013', '760', '470', '1230', '3', '102', 'SRM', 'Biomedical Engineering', '7.912', '10', '0'), (6297, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '157', '321', '4', 'None', 'Pune University', 'Computer Engineering', '71', '100', '0'), (6298, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '170', '155', '325', '3.5', '111', 'ASE Blr', 'ECE', '8.22', '10', '0'), (6299, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2009', '890', '450', '1340', '3', '103', 'SVCE', 'IT', '70', '100', '0'), (6300, 'Arizona State University', '6', 'Reject', 'MS', 'software engineering', 'Spring ', '2013', '720', '350', '1070', 'None', '104', 'MU', 'Masters of Engg I.T.', '71', '100', '0'), (6301, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '168', '159', '327', '3.5', '112', 'Bangladesh University of Engineering & Technology', 'Electrical and Electronic Engineering', '3.94', '4', '0'), (6302, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '165', '152', '317', '3', '101', 'BPUT', 'EEE', '8.57', '10', '0'), (6303, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '159', '158', '317', '3.5', '115', 'COEP', 'E&TC;', '6.37', '10', '14'), (6304, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '154', '315', '3.5', '106', 'Maharishi Dayanand University', 'ECE', '70', '100', '0'), (6305, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '162', '149', '311', '3.5', '110', 'Manipal Institue of Technology', 'Electronics and Communications Engg.', '7.54', '10', '0'), (6306, 'Arizona State University', '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '163', '146', '309', '3.5', '102', 'Pune University', 'Mechanical Engineering', '70', '100', '0'), (6307, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '150', '312', '3.5', '96', 'Manipal Institue of Technology', 'ECE', '8.85', '10', '0'), (6308, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '460', '1240', '3.5', '104', 'Sinhgad College of Engineering', 'Computer Science', '65', '100', '0'), (6309, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '157', '150', '307', '3', '95', 'Fr. Conceicao Rodrigues College of Engineering', 'Information Technology', '65.32', '100', '0'), (6310, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2007', '550', '790', '1340', '4', '267', 'MU', 'Electronics', '59', '100', '0'), (6311, 'Arizona State University', '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '158', '156', '314', '4', '113', 'MU', 'Chemical Engineering', '56.45', '100', '25'), (6312, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '163', '152', '315', '3', '101', 'UPTU', 'Electrical & Electronics Engineering', '77.72', '100', '0'), (6313, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '160', '156', '316', '3', '98', 'MU', 'Elecronics and Telecommunication', '64', '100', '0'), (6314, 'Arizona State University', '6', 'Reject', 'MS', 'EE / CS', 'Fall ', '2012', '151', '158', '309', '4.5', '105', 'VTU', 'EEE', '74', '100', '0'), (6315, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and computer engineering electrical engineering telecommunications engineering', 'Fall ', '2013', '160', '150', '310', '3', '105', 'M N M jain Engineering College', 'Electronics and Communication', '70', '100', '0'), (6316, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '155', '145', '300', '3.5', '98', 'CMRIT', 'Electronics and Communication', '79.3', '100', '0'), (6317, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '162', '145', '307', '3', '100', 'NMAM Institute of Technology Nitte', 'Electronics and Communication', '9.09', '10', '40'), (6318, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '156', '157', '313', '3', '108', 'Walchand College Of Engineering', 'Electronics and Telecommunications', '69.4', '100', '9'), (6319, 'Arizona State University', '6', 'Reject', 'MS', 'MEMS & NANOTECHNOLOGY', 'Fall ', '2012', '730', '560', '1290', '4', '112', 'Amrita Vishwa Vidhyapeetham', 'Electronics and Communication', '8.94', '10', '0'), (6320, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '147', '314', '3.5', '105', 'PEC University of Technology', 'Electrical Engineering', '7.6', '10', '0'), (6321, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2011', '740', '570', '1310', '3.5', '110', 'University of Mumbai', 'Electronics', '62', '100', '0'), (6322, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '155', '162', '317', '4', '112', 'BITS Dubai', 'Electronics and Communication Engineering (ECE)', '8.81', '10', '0'), (6323, 'Arizona State University', '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '740', '350', '1090', '3.5', '87', 'VIT Pune', 'Mech Engg', '65', '100', '0'), (6324, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '160', '152', '312', '3', 'None', 'Sri Sairam Engineering College', 'Electronics and Communication Engineering', '7.4', '10', '0'), (6325, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '750', '610', '1360', '3', '100', 'Pune University', 'Computer Science', '64', '100', '0'), (6326, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '160', '150', '310', '3', '102', 'Govind Ballabh Pant Engg College', 'Electronics and Communication', '72', '100', '29'), (6327, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '780', '590', '1370', '3', '100', 'BITS Pilani', 'Electrical and Electronics', '7.88', '10', '0'), (6328, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering/Comp Science', 'Spring ', '2016', '170', '162', '332', '3.5', '115', 'University of Pune', 'Computer Engineering', '62', '100', '37'), (6329, 'Arizona State University', '6', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2014', '161', '149', '310', '3', '107', 'Sir MVIT', 'Civil engineering', '0', '0', '0'), (6330, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '156', '149', '305', '3', '8', 'SASTRA', 'EEE', '8.13', '10', '0'), (6331, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '780', '550', '1330', '3', '98', 'RGTU', 'EC', '73', '100', '0'), (6332, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '730', '480', '1210', '4', '114', 'MU', 'Electronics and Telecommunication', '64.87', '100', '0'), (6333, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '670', '390', '1060', '3', '108', 'VTU', 'Computer Science', '74.5', '100', '0'), (6334, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '156', '151', '307', '4', '100', 'Pondicherry University', 'Electronics and Instrumentation', '8.2', '10', '0'), (6335, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '165', '152', '317', '3', '108', 'NMIMS', 'Electronics And Telecommunications', '3', '4', '0'), (6336, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Networks', 'Spring ', '2013', '166', '159', '325', '4', '115', 'Dhirubhai Ambani Institute of Information & Communication Technology', 'Information and Communication Technology', '6.56', '10', '0'), (6337, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '740', '440', '1180', '3.5', '94', 'Amrita Vishwa Vidhyapeetham', 'Electronics & Communication', '7.3', '10', '0'), (6338, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2014', '160', '152', '312', '3', '102', 'nit raipur', 'electrical', '7.12', '10', '0'), (6339, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '800', '400', '1200', '2.5', '100', 'VIT University', 'ECE', '8.51', '10', '0'), (6340, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '720', '450', '1170', '4', '108', 'Anna University', 'Computer Science and Engg.', '7.04', '10', '0'), (6341, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '166', '158', '324', '3', '95', 'Vignan Institute of Technology and Science', 'electronics and communications', '70.6', '100', '0'), (6342, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '157', '318', '4', '112', 'Sri Jayachamarajendra College of Engineering', 'Electronics and comm', '77', '100', '0'), (6343, 'Arizona State University', '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2013', '162', '153', '315', '3', 'None', 'RGPV', 'Mechanical', '68', '100', '0'), (6344, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering/Comp Science', 'Fall ', '2013', '162', '158', '320', '3.5', 'None', 'BITS Pilani', 'Electrical and Electronics', '7.75', '10', '0'), (6345, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '164', '152', '316', '3.5', '101', 'Ambedkar Institute of technology', 'ECE', '77.77', '100', '0'), (6346, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '168', '149', '317', '3', '97', 'Jaypee Institute of Information Technology', 'Computer Science', '78', '100', '30'), (6347, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '170', '161', '331', '4.5', '115', 'West Bengal University Of Technology', 'ECE', '8.66', '10', '12'), (6348, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '148', '311', '3', '99', 'SVITS', 'CSE', '65', '100', '30'), (6349, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '166', '155', '321', '2.5', '109', 'NIT ALLAHABAD', 'ece', '7.86', '10', '66'), (6350, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '153', '311', '3', '103', 'Amity University', 'CSE', '7.2', '10', '0'), (6351, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '151', '312', '3', '97', 'PESIT', 'IS', '66.48', '100', '0'), (6352, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '520', '1320', '3.5', '94', 'Sona College', 'Information Technology', '80', '100', '0'), (6353, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '560', '1310', '4', '105', 'MU', 'Information Technology(B.E. I.T)', '58.8', '100', '0'), (6354, 'Arizona State University', '6', 'Reject', 'MS', 'Aerospace Engineering', 'Fall', 'None', '159', '145', '304', '4.5', '100', 'VTU', 'mechanical', '72', '100', '0'), (6355, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '145', '308', '3', '89', 'CET Odisha', 'CSE', '8', '10', '0'), (6356, 'Arizona State University', '6', 'Reject', 'MS', 'CS', 'Fall ', '2014', '167', '149', '316', '3.5', '101', 'Biju Patnaik University of Technology', 'Electrical and Electronics engineering', '7.86', '10', '0'), (6357, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '168', '158', '326', '4', '119', 'University of Pune', 'InformationTechnology', '62', '100', '0'), (6358, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2007', '770', '580', '1350', '4', '270', 'University of Mumbai', 'Computer Engineering', '59.5', '100', '0'), (6359, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2012', '730', '410', '1140', '3', '109', 'Guru Jambheshwar University of Science & Technology', 'ECE', '8.67', '10', '0'), (6360, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2010', '770', '690', '1460', '4.5', '116', 'None', 'Computer Science', '8.48', '10', '0'), (6361, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '161', '149', '310', '3', '95', 'Pune University', 'Computer Engg.', '65.15', '100', '0'), (6362, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '156', '145', '301', '3.5', '105', 'JNTU', 'CSE', '73.2', '100', '0'), (6363, 'Arizona State University', '6', 'Reject', 'MS', 'Bioinformatics', 'Fall', 'None', 'None', 'None', '0', '3', 'None', 'IIT BHU', 'Biomedical Engineering', '7.83', '10', '0'), (6364, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '160', '149', '309', '3.5', '100', 'BITS Pilani', 'M.Sc(Tech) Information Systems', '7.17', '10', '0'), (6365, 'Arizona State University', '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '156', '158', '314', '4.5', '105', 'Amrita School of Engineering', 'Mechanical engineering', '6.42', '10', '0'), (6366, 'Arizona State University', '6', 'Reject', 'MS', 'Engineering Management / Industrial Engineering / IMSE', 'Fall ', '2014', '166', '156', '322', '3', '104', 'Institute of Chemical Technology', 'Polymer and Surface Coating', '63.2', '100', '0'), (6367, 'Arizona State University', '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '167', '152', '319', '3', '111', 'Sardar Patel College of Engineering', 'Mechanical', '68', '100', '14'), (6368, 'Arizona State University', '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '710', '430', '1140', '2.5', '89', 'Anna University', 'MECHANICAL', '7.84', '10', '0'), (6369, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2006', '800', '520', '1320', '4.5', '273', 'SPCE', 'Electrical', '65', '100', '0'), (6370, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2011', '780', '630', '1410', '3', '100', 'Sathyabama University', 'ECE', '75', '100', '0'), (6371, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '160', '155', '315', '3.5', '106', 'M.V.S.R Engineering College', 'Electronics and Communication', '78.5', '100', '0'), (6372, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '590', '1390', '3', '94', 'JNTU', 'CSE', '68', '100', '0'), (6373, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '700', '460', '1160', '4', '101', 'Sri Venkateswara College of Engineering', 'ECE', '74', '100', '0'), (6374, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '720', '620', '1340', '3.5', '96', 'SRM', 'Computer Science', '9.35', '10', '0'), (6375, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '159', '152', '311', '3.5', 'None', 'Anna University', 'ECE', '74', '100', '0'), (6376, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '740', '480', '1220', '3', '100', 'University of Mumbai', 'Electronics and Telecommunication', '63', '100', '0'), (6377, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '580', '1380', '3', '109', 'PSG College of Technology', 'ECE', '9.29', '10', '0'), (6378, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '156', '152', '308', '3', '101', 'Anna University', 'Electronics and Communication Engineering', '7.6', '10', '0'), (6379, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '150', '153', '303', '3.5', '99', 'JNTU', 'electronics and instrumentation', '75', '100', '0'), (6380, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '153', '147', '300', '4', 'None', 'Amrita School of Engineering', 'ECE', '6.33', '10', '0'), (6381, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '720', '550', '1270', '3', '81', 'Anna University', 'Computer Science and Engineering', '80', '100', '0'), (6382, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '167', '154', '321', '3', '110', 'Amity School of Engineering and Technology', 'Instrumentation & Control Engineering', '66', '100', '0'), (6383, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Spring ', '2014', '159', '148', '307', '4', '103', 'SRM', 'ECE', '8.06', '10', '0'), (6384, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '161', '154', '315', '3', '105', 'VTU', 'Telecommunication', '7.82', '10', '0'), (6385, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '152', '314', '4', '114', 'VTU', 'Information Science', '60', '100', '0'), (6386, 'Arizona State University', '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '166', '160', '326', '4', '110', 'IIITDM-Jabalpur', 'Mechanical', '6.9', '10', '4'), (6387, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '166', '147', '313', '3', '86', 'Pune University', 'e&tc;', '8.66', '10', '0'), (6388, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '160', '146', '306', '3', '104', 'University of Pune', 'Electronics and Telecommunicatio', '71', '100', '0'), (6389, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '155', '149', '304', '3.5', '110', 'VTU', 'Computer Science', '78', '100', '0'), (6390, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics & Communication', 'Fall ', '2014', '164', '159', '323', '4', '115', 'CUSAT', 'ECE', '65.23', '100', '6'), (6391, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '158', '144', '302', '3', 'None', 'MREC(JNTUH)', 'ECE', '79', '100', '0'), (6392, 'Arizona State University', '6', 'Reject', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (6393, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '760', '600', '1360', '3.5', '114', 'VTU', 'Electronics and Communication', '80.04', '100', '0'), (6394, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '166', '151', '317', '4', '107', 'PESIT', 'Electronics and Communication Engineering', '7.7', '10', '28'), (6395, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '165', '153', '318', '4', '109', 'SJCE', 'Electronics and Communication', '67.2', '100', '49'), (6396, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '530', '1330', '4', '102', 'Anna University', 'Electronics and Communication Engg.', '7.12', '10', '0'), (6397, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '157', '161', '318', '3', '95', 'Pune University', 'ECE', '7.35', '10', '0'), (6398, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '770', '330', '1100', '3', '102', 'Amrita School of Engineering', 'ECE', '7', '10', '0'), (6399, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '162', '149', '311', '3.5', '89', 'GITAM', 'ELECTRONICS AND COMMUNICATION', '8.36', '10', '0'), (6400, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '460', '1250', '3', '93', 'Coimbatore Insitute of Technology', 'CSE', '7.87', '10', '0'), (6401, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering/Comp Science', 'Fall ', '2013', '157', '152', '309', '2.5', '99', 'PESIT', 'Electronics and Communication', '79', '100', '0'), (6402, 'Arizona State University', '6', 'Reject', 'MS', 'Sustainable enrgy and environment', 'Fall ', '2011', '800', '580', '1380', '4', '114', 'NITK Surathkal', 'Electrical & electronics', '6.99', '10', '0'), (6403, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '440', '1200', '3', '90', 'NITK Surathkal', 'Computer Engineering', '71', '100', '0'), (6404, 'Arizona State University', '6', 'Reject', 'MS', 'Embedded systems', 'Fall ', '2012', '780', '600', '1380', '3', '106', 'VIT Mumbai University', 'Electronics', '62', '100', '0'), (6405, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2008', '750', '520', '1270', '5', '114', 'PESIT', 'CS', '76', '100', '0'), (6406, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '750', '380', '1130', '3.5', '94', 'MU', 'Electronics', '65', '100', '0'), (6407, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '750', '570', '1320', '4', '106', 'K J Somaiya College of Engiineering', 'IT', '0', '0', '0'), (6408, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '760', '600', '1360', '4', '104', 'JNTU', 'cs', '72', '100', '0'), (6409, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '168', '149', '317', '3.5', '106', 'SASTRA', 'ECE', '7.4', '10', '0'), (6410, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2008', '800', '640', '1440', '4.5', '118', 'Bangalore Institute of Technology', 'ECE', '77.77', '100', '0'), (6411, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2011', '720', '560', '1280', '4', '110', 'Imperial college of Engineering and research Pune', 'E&TC;', '67', '100', '0'), (6412, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '158', '152', '310', '5', '109', 'Sathyabama University', 'EEE', '8.07', '10', '0'), (6413, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '161', '147', '308', '3', '97', 'Dayananda Sagar College of Engineering', 'Telecommunication', '75', '100', '0'), (6414, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '168', '148', '316', '3.5', '97', 'R V College of Engineering', 'ECE', '8.81', '10', '0'), (6415, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '162', '138', '300', '3', '87', 'Gujarat Technological University', 'Electronics and Communication', '8.05', '10', '0'), (6416, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '154', '316', '3.5', 'None', 'JNTU', 'Information Technology', '74.11', '100', '0'), (6417, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '710', '370', '1080', '3.5', '100', 'Pune University', 'Electronics Engineering', '58.13', '100', '0'), (6418, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering and Computer Science', 'Fall ', '2013', '163', '153', '316', '3', '104', 'BNMIT', 'ECE', '80', '100', '0'), (6419, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Electronics', 'Fall ', '2012', '730', '570', '1300', '3.5', '103', 'MU', 'EXTC', '3.4', '4', '0'), (6420, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '580', '1380', '2.5', '101', 'Kakatiya University', 'ece', '70.1', '100', '0'), (6421, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2007', '780', '520', '1300', '3', '277', 'K J Somaiya College of Engiineering', 'Computer Engineering', '53', '100', '0'), (6422, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '550', '1350', '4', '102', 'MU', 'Computer Science', '63', '100', '0'), (6423, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '170', '153', '323', '3', '97', 'IIT Kharagpur', 'Electrical Engineering', '7.22', '10', '0'), (6424, 'Arizona State University', '6', 'Reject', 'MS', 'Embedded systems', 'Fall ', '2012', '169', '162', '331', '4', '115', 'VTU', 'ECE', '8.43', '10', '0'), (6425, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '800', '610', '1410', '3', '107', 'University of Mumbai', 'Computer Engineering', '61.4', '100', '24'), (6426, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '162', '157', '319', '3', '104', 'MU', 'Information Technology', '58', '100', '15'), (6427, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '167', '162', '329', '4.5', '115', 'Datta Meghe College of Engineering', 'Electronics', '59.4', '100', '0'), (6428, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Spring ', '2014', '160', '160', '320', '3.5', '113', 'Fr. Conceicao Rodrigues College of Engineering', 'Electronics Engineering', '67.83', '100', '0'), (6429, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '164', '158', '322', '4', '108', 'Gujarat Technological University', 'Computer Engineering', '7.71', '10', '0'), (6430, 'Arizona State University', '6', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2012', '800', '670', '1470', '5', '115', 'Cochin University of Science and Technology', 'Mechanical Engg.', '76', '100', '0'), (6431, 'Arizona State University', '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '164', '149', '313', '3', '109', 'MU', 'Instrumentation', '63.2', '100', '0'), (6432, 'Arizona State University', '6', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Spring ', '2013', '163', '155', '318', '3.5', '115', 'Shivaji University', 'Information Technology', '65', '100', '0'), (6433, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '159', '323', '4.5', '115', 'Anna University', 'Computer Science and Engineering', '7.65', '10', '0'), (6434, 'Arizona State University', '6', 'Reject', 'MS', 'Industrial Engineering', 'Spring ', '2014', '155', '149', '304', '3', '89', 'PSG College of Technology', 'Mechanical Engineering', '7.96', '10', '0'), (6435, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '157', '151', '308', 'None', '95', 'VTU', 'EEE', '67', '100', '22'), (6436, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2006', '800', '500', '1300', '4', '283', 'University of Kerala', 'Electronics & Communication', '77', '100', '0'), (6437, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '152', '154', '306', '3', '108', 'Sri Krishna College Of Engineering And Technology', 'ECE', '7.6', '10', '0'), (6438, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '730', '490', '1220', '3', '102', 'VTU', 'Electronics and Communication', '66', '100', '0'), (6439, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '170', '149', '319', '3', '95', 'VJTI', 'Electronics', '8.22', '10', '12'), (6440, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '168', '151', '319', '3', '99', 'Nirma Institute of Technology', 'Eletronics and Communication', '7.52', '10', '0'), (6441, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '162', '160', '322', '4', '112', 'Bangalore University', 'electrical', '70', '100', '0'), (6442, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '153', '315', '3.5', '106', 'RGPV', 'I.T', '67', '100', '0'), (6443, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '161', '325', '4', '114', 'Pune University', 'CS', '59', '100', '0'), (6444, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall', 'None', '160', '151', '311', '3', '101', 'GITAM', 'ECE', '8.63', '10', '0'), (6445, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '420', '1220', '3', '100', 'CVRCE', 'Electronics and Instrumentation', '70.01', '100', '0'), (6446, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '153', '315', '2.5', '106', 'Jaypee Institute of Information Technology', 'Computer Science & Engineer', '6.8', '10', '0'), (6447, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Electronics', 'Fall ', '2013', '165', '154', '319', '4', '110', 'Pune University', 'Computer', '53', '100', '0'), (6448, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '159', '149', '308', '3', '104', 'Anna University', 'ECE', '79', '100', '0'), (6449, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '161', '158', '319', '3.5', '102', 'Amrita School of Engineering', 'EEE', '7.55', '10', '41'), (6450, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '166', '153', '319', '4', '106', 'VTU', 'Electronics & Communication', '84', '100', '24'), (6451, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '163', '156', '319', '3', '107', 'VTU', 'Electronics & Communication', '81.5', '100', '24'), (6452, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '153', '312', '3', 'None', 'JNTU', 'ELECTRONICS & COMMUNICATION ENGINEERING', '73', '100', '0'), (6453, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '160', '147', '307', '2.5', 'None', 'GITAM', 'Electronics and Communication', '7.8', '10', '0'), (6454, 'Arizona State University', '6', 'Reject', 'MS', 'energy', 'Fall ', '2012', '159', '144', '303', '3', '86', 'G.B.P.U.A.T Pantnagar', 'Electrical', '7.87', '10', '0'), (6455, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '530', '1320', '3.5', '103', 'JNTU', 'CSE', '70', '100', '0'), (6456, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Networks', 'Fall ', '2013', '162', '154', '316', '4.5', '112', 'VTU', 'Telecommunication', '81.059', '100', '0'), (6457, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2015', '166', '158', '324', '4', '115', 'VTU', 'Electronics & Communication', '74.06', '100', '25'), (6458, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '790', '580', '1370', '2.5', '102', 'SRM', 'Computer Science', '8', '10', '0'), (6459, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '162', '146', '308', '3.5', '96', 'MU', 'Electronics', '67.15', '100', '0'), (6460, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '168', '163', '331', '4', '114', 'IIT BHU', 'Electronics Engineering', '8.04', '10', '0'), (6461, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '152', '314', '3.5', '107', 'VTU', 'Information Science', '64', '100', '0'), (6462, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '149', '311', '3.5', '104', 'MU', 'Electronics and Telecommunication', '65', '100', '0'), (6463, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '168', '157', '325', '3.5', '105', 'Shri Vaishnav Institute Of Technology and Science', 'Electronics and Communication', '70', '100', '0'), (6464, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and computer engineering electrical engineering telecommunications engineering', 'Fall ', '2013', '164', '156', '320', '3', '109', 'Amrita School of Engineering', 'EIE(elec & instrumentation)', '7.36', '10', '0'), (6465, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '160', '146', '306', '4', 'None', 'Don Bosco Institute of Technology', 'Infortmation Technology', '65', '100', '0'), (6466, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '160', '145', '305', '3', '98', 'Anna University', 'ECE', '8.29', '10', '3'), (6467, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '164', '153', '317', '3', '102', 'JNTU', 'ECE', '74', '100', '0'), (6468, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '163', '149', '312', '3', 'None', 'Amrita School of Engineering', 'EEE', '7.43', '10', '27'), (6469, 'Arizona State University', '6', 'Reject', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (6470, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '160', '153', '313', '3', '112', 'Amrita School of Engineering', 'Electronics and communication', '8.19', '10', '24'), (6471, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '167', '149', '316', '3', '104', 'Jaypee Institute of Information Technology', 'CSE', '7.4', '10', '0'), (6472, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2016', '160', '144', '304', '3.5', 'None', 'Reva Institute of Technology', 'Electronics and communication', '72', '100', '12'), (6473, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '163', '150', '313', '3', '93', 'Amrita School of Engineering', 'Electronic and Instrumentation', '8.01', '10', '0'), (6474, 'Arizona State University', '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '163', '145', '308', '3', '94', 'LJIET', 'Mechanical', '6.69', '10', '0'), (6475, 'Arizona State University', '6', 'Reject', 'MS', 'Industrial Engineering', 'Spring ', '2012', '690', '630', '1320', '2.5', '89', 'MIT Pune', 'Mechanical Sandwich', '61.53', '100', '0'), (6476, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '640', '1440', '4', '115', 'NIT Karnataka', 'EEE', '6.76', '10', '0'), (6477, 'Arizona State University', '6', 'Reject', 'MS', 'Information Assurance', 'Fall ', '2015', '151', '154', '305', '4', '96', 'Anna University', 'ECE', '7.18', '10', '29'), (6478, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '740', '490', '1230', '3.5', '97', 'Vidyalankar Institute of Technology', 'ETRX', '62', '100', '0'), (6479, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '159', '147', '306', '3', '99', 'BVBCET', 'Electronics and Communication', '8.52', '10', '0'), (6480, 'Arizona State University', '6', 'Reject', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (6481, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '162', '152', '314', '4', '107', 'MU', 'Electrical', '64', '100', '18'), (6482, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '630', '1430', '3.5', '108', 'SPCE', 'Electrical', '62', '100', '0'), (6483, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering & Information Technology', 'Fall ', '2015', '160', '154', '314', '4', '112', 'MU', 'Instrumentation Engineeering', '65.55', '100', '0'), (6484, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '164', '146', '310', '3', '110', 'P.T.U.', 'ECE', '75', '100', '0'), (6485, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '680', '560', '1240', '3', '86', 'Coimbatore Insitute of Technology', 'EEE', '8.41', '10', '0'), (6486, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '161', '146', '307', '3.5', '105', 'Sri Venkateswara College of Engineering', 'ECE', '7.26', '10', '0'), (6487, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '167', '155', '322', 'None', '112', 'SASTRA', 'ECE', '0', '0', '0'), (6488, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '740', '450', '1190', '3', 'None', 'MU', 'Electronics and Telecommunications', '70', '100', '27'), (6489, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2011', '770', '500', '1270', '3', '93', 'VJTI', 'COMPUTER', '6.5', '10', '0'), (6490, 'Arizona State University', '6', 'Reject', 'MS', 'Chemical/Environmental Engg.', 'Fall ', '2015', '161', '154', '315', '3', '102', 'Anna University', 'Chemical Engineering', '7.51', '10', '0'), (6491, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '163', '158', '321', 'None', 'None', 'LNMIIT', 'ECE', '8.1', '10', '0'), (6492, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '161', '141', '302', '3', 'None', 'U.P.T.U.', 'Electrical Engineering', '74.32', '100', '30'), (6493, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '157', '149', '306', '3.5', '103', 'VTU', 'Electronics and Communication', '72.75', '100', '0'), (6494, 'Arizona State University', '6', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2006', '800', '650', '1450', '5', '287', 'Nirma Institute of Technology', 'ec', '73', '100', '0'), (6495, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '330', '1130', '3', '84', 'Velammal Engineering College', 'Information technology', '71', '100', '0'), (6496, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '156', '147', '303', '3', '93', 'VTU', 'Electronics and Communication', '0', '0', '0'), (6497, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '150', '317', '3.5', '107', 'MU', 'Computer Engineering', '58', '100', '34'), (6498, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '143', '305', '3', '86', 'MU', 'Electronics And Telecommunication', '71', '100', '0'), (6499, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2016', '156', '153', '309', '3.5', '107', 'VTU', 'Electronics and Communication', '67', '100', '57'), (6500, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2013', '157', '147', '304', '3', '112', 'VTU', 'Electronics and communication', '82.6', '100', '0'), (6501, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '159', '152', '311', 'None', 'None', 'MU', 'EXTC', '66.4', '100', '0'), (6502, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '157', '143', '300', '3.5', '97', 'Sri Sairam Engineering College', 'Instrumentation and Control Engineering', '7.82', '10', '0'), (6503, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '154', '313', '3.5', '97', 'SVCE', 'EEE', '75.04', '100', '0'), (6504, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '153', '317', '3.5', '109', 'MIT', 'Electronics', '6.5', '100', '0'), (6505, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '167', '152', '319', '3', '101', 'Jaypee Institute of Information Technology', 'ECE', '71', '100', '0'), (6506, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '149', '313', '3.5', '104', 'D j Sanghvi', 'IT', '62', '100', '0'), (6507, 'Arizona State University', '6', 'Reject', 'MS', 'physics', 'Fall ', '2013', '163', '156', '319', '3.5', '100', 'Guru Gobind Singh Indraprashta University', 'ECE', '72', '100', '0'), (6508, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '142', '305', '3', '89', 'Amrita School of Engineering', 'Electronics and Communication Engineering', '7.01', '10', '0'), (6509, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '158', '158', '316', '4', '100', 'PICT', 'Information Technology', '3.56', '4', '33'), (6510, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2008', '690', '320', '1010', '3.5', '250', 'Atharva College', 'Electronics and telecommunication', '67', '100', '0'), (6511, 'Arizona State University', '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '165', '150', '315', '3', '90', 'Dr. B.R Ambedkar NIT Jalandhar', 'Mechanical Engineering', '6.7', '10', '44'), (6512, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '570', '1370', '3.5', '114', 'MU', 'Electronics and Telecommunication', '70', '100', '0'), (6513, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '143', '309', '3', '98', 'MSU', 'Computer Science', '3.64', '4', '24'), (6514, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '151', '317', '3.5', '101', 'CEG', 'Information Technology', '7.1', '10', '30'), (6515, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '160', '147', '307', '3', '101', 'Anna University', 'EEE', '8', '10', '0'), (6516, 'Arizona State University', '6', 'Reject', 'MS', 'Chemical Engineering', 'Fall ', '2011', '740', '580', '1320', '4', '104', 'MSRIT', 'Chemical Engineering', '7.67', '100', '0'), (6517, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '170', '149', '319', '3.5', '111', 'Amrita School of Engineering', 'EIE', '7.7', '10', '0'), (6518, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '152', '314', '3.5', '93', 'SASTRA', 'EEE', '8.36', '10', '0'), (6519, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '159', '150', '309', '3', '96', 'VTU', 'ECE', '76', '100', '0'), (6520, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '760', '440', '1200', '3.5', '92', 'PESIT', 'electronics and communication', '64', '100', '0'), (6521, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '160', '151', '311', '3', '88', 'JNTU', 'EE', '78', '100', '0'), (6522, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '164', '141', '305', '3', '81', 'Vardhaman', 'ece', '69', '100', '0'), (6523, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '156', '144', '300', '3.5', '94', 'B.S.A.Crescent Engineering College', 'Electrical and Electronics Engineering', '69', '100', '0'), (6524, 'Arizona State University', '6', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2015', '156', '161', '317', 'None', '117', 'Rajiv Gandhi Technical University', 'Information Technology', '67', '100', '0'), (6525, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '530', '1290', '3', '89', 'Govt College of Engineering', 'Computer Science & Engineering', '71.125', '100', '0'), (6526, 'Arizona State University', '6', 'Reject', 'MS', 'electronics', 'Fall ', '2012', '740', '530', '1270', '3.5', '106', 'MU', 'Electronics', '68.5', '100', '0'), (6527, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2006', '790', '690', '1480', '5', '300', 'Vidylankar Institute of Technology', 'Computer Engineering', '57', '100', '0'), (6528, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '161', '155', '316', '3.5', '104', 'Sardar Patel University', 'Electronics', '7.47', '10', '53'), (6529, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '158', '142', '300', '3', '94', 'MSRIT', 'TC', '8.1', '10', '0'), (6530, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '640', '1430', '4.5', '115', 'MNM Jain Engineering College', 'CSE', '75.1', '100', '0'), (6531, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '158', '147', '305', '3', '90', 'WBUT', 'Electrical Engineering', '8.71', '10', '0'), (6532, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '145', '306', '3', '93', 'VTU', 'telecommunication', '78.4', '100', '0'), (6533, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Summer ', '2016', '163', '153', '316', '3.5', '102', 'IIIT Hyderabad', 'ECE', '8.4', '10', '0'), (6534, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '780', '590', '1370', '3', '98', 'BITS Pilani', 'Electrical and Electronics', '7.1', '10', '0'), (6535, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2008', '780', '540', '1320', '3.5', '105', 'MDU', 'Computer science', '66', '100', '0'), (6536, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '161', '156', '317', '3', '97', 'Sir MVIT', 'Telecommunication', '68.3', '100', '0'), (6537, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '163', '144', '307', '3', '95', 'JNTU', 'Electronics & Communications Engineering', '74.83', '100', '0'), (6538, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2016', '163', '153', '316', '3.5', '104', 'SVCE', 'Computer Science', '6.89', '10', '0'), (6539, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '158', '148', '306', '3.5', '103', 'None', 'ECE', '8.18', '10', '0'), (6540, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '160', '146', '306', '2.5', '91', 'Andhra University', 'E E E', '71', '100', '0'), (6541, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '158', '145', '303', '2.5', '105', 'None', 'IT', '7.57', '10', '0'), (6542, 'Arizona State University', '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '162', '157', '319', '3', '116', 'MU', 'Mechanical', '63', '100', '0'), (6543, 'Arizona State University', '6', 'Reject', 'MS', 'Aerospace Engineering', 'Spring ', '2013', '159', '150', '309', '2.5', '87', 'JNTU', 'Mechanical engg', '65', '100', '0'), (6544, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '159', '142', '301', '3', 'None', 'SVNIT', 'Electrical Engineering', '6.92', '10', '0'), (6545, 'Arizona State University', '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '152', '151', '303', '3', '98', 'University of Mumbai', 'Production Engineering', '71', '100', '24'), (6546, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '550', '1350', '4.5', '115', 'BITS Hyderabad', 'Electronics and Communication Engineering', '6.5', '10', '0'), (6547, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '163', '146', '309', '3.5', 'None', 'NMIMS', 'Electronics and Telecommunication', '3.55', '4', '0'), (6548, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '470', '1230', '3.5', '99', 'Panjab University', 'University Institute of Engineering and Technology', '70.5', '100', '0'), (6549, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '740', '460', '1200', '4', '104', 'Univ. of Mumbai', 'Electronics', '61', '100', '0'), (6550, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics & Communication', 'Fall', '2013', '166', '159', '325', '4', '113', 'Amrita Coimbatore', 'ECE', '7.73', '10', '0'), (6551, 'Arizona State University', '6', 'Admit', 'MS', 'Software Engineering', 'Fall', '2018', '-1', '-1', '-1', '-1', '100', 'Jaypee University of Engineering and Technology', 'Computer Science', '77', '100', '24'), (6552, 'Arizona State University', '6', 'Admit', 'MS', 'Software Engineering', 'Fall', '2017', '163', '145', '308', '4.5', '103', 'Anna University', 'Information Technology', '8.07', '10', '0'), (6553, 'Arizona State University', '6', 'Admit', 'MS', 'Aerospace Engineering', 'Fall', '2018', '150', '163', '313', '4', '98', 'SRM University', 'Mechanical Engineering', '9', '10', '0'), (6554, 'California State University, East Bay', '7', 'Reject', 'MS', 'Computer Science', 'Fall', '2018', '150', '133', '283', '-1', '-1', 'VR Siddhartha engineering college', 'Computer Science', '7.88', '10', '0'), (6555, 'California State University, East Bay', '7', 'Admit', 'MS', 'Engineering Management', 'Spring', '2017', '154', '135', '289', '2', '87', 'Kiit', 'Mechanical Engineering', '7', '10', '38'), (6556, 'Clarkson University', '8', 'Admit', 'MS', 'Engineering Management', 'Fall', '2019', '156', '138', '294', '3.5', '-1', 'KL University', 'Chemical Engineering', '6.53', '10', '13'), (6557, 'Clemson University', '9', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '155', '145', '300', '4.5', '85', 'GGSIPU', 'Electronics & Communication Engineering', '76', '100', '0'), (6558, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '770', '460', '1230', '3', '105', 'fr.c.r.c.e.(bandra)', 'production engineering', '75.36', '100', '0'), (6559, 'Clemson University', '9', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '167', '162', '329', '4', '110', 'University of Pune', 'E&TC;', '63.75', '100', '0'), (6560, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '170', '150', '320', '3', '104', 'BITS Goa', 'Mechanical', '6.32', '10', '48'), (6561, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '730', '390', '1120', '3', '90', 'IET DAVV', 'Computer Engineering', '0', '0', '0'), (6562, 'Clemson University', '9', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '680', '1460', '4.5', '110', 'MIT University of Pune', 'Electronics and Telecommunication', '65', '100', '0'), (6563, 'Clemson University', '9', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2013', '160', '157', '317', '3.5', '111', "St.Peter's Engineering College", 'Electronics & Instrumentation', '75', '100', '0'), (6564, 'Clemson University', '9', 'Admit', 'MS', 'Electronics and Communication', 'Spring ', '2013', '163', '145', '308', 'None', '96', 'RNSIT', 'ECE', '75', '100', '0'), (6565, 'Clemson University', '9', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2014', '164', '152', '316', '3.5', '106', 'Assam Engineering College', 'Civil Engineering', '79.6', '100', '0'), (6566, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '158', '152', '310', '3.5', '98', 'Shri Ramdeobaba Engineering College', 'Industrial Engineering', '77', '100', '0'), (6567, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '168', '152', '320', '3', 'None', 'Osmania University', 'Mechanical', '71.2', '100', '22'), (6568, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '164', '160', '324', '4.5', '112', 'NIT Calicut', 'Mechanical Engineering', '7.9', '10', '48'), (6569, 'Clemson University', '9', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '165', '145', '310', '3.5', '108', 'SVNIT', 'Electronics', '8.7', '10', '0'), (6570, 'Clemson University', '9', 'Admit', 'MS', 'Automotive Engineering', 'Fall ', '2012', '153', '150', '303', '3.5', '106', 'None', '0', '0', '0', '0'), (6571, 'Clemson University', '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '166', '148', '314', '4', '102', 'Maharishi Dayanand University', 'ECE', '77.74', '100', '0'), (6572, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '790', '420', '1210', '3', '93', 'K J Somaiya College of Engiineering', 'Mechanical', '66', '100', '0'), (6573, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '164', '151', '315', '3.5', '112', 'Pune University', 'Mechanical Engineering', '56.9', '100', '12'), (6574, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '154', '317', '3.5', '114', 'PESIT', 'Information Science', '8.32', '10', '0'), (6575, 'Clemson University', '9', 'Admit', 'MS', 'Automotive Engineering', 'Fall ', '2013', '160', '152', '312', '3.5', '110', 'VIT University', 'Mechanical Engineering', '8.25', '10', '0'), (6576, 'Clemson University', '9', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '800', '590', '1390', '3.5', '107', 'UPTU', 'Computer Science', '65', '100', '0'), (6577, 'Clemson University', '9', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '168', '159', '327', '4', '111', 'MU', 'Electronics', '57.8', '100', '37'), (6578, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '167', '152', '319', '4', '116', 'Vishwakarma Institute of Technology', 'Mechanical Engineering', '9.47', '10', '22'), (6579, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '680', '640', '1320', '4.5', '114', 'University of Pune', 'Computer Engineering', '65.44', '100', '0'), (6580, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '156', '150', '306', '4', 'None', 'Anna University', 'Computer Science', '73', '100', '0'), (6581, 'Clemson University', '9', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2014', '162', '150', '312', '3', '108', 'University of Petroleum and Energy Studies', 'Civil Engineering', '3.13', '4', '0'), (6582, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '163', '158', '321', '4', '109', 'MU', 'Computer Engineering', '67', '100', '0'), (6583, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '700', '640', '1340', '3', '109', 'Pune University', 'Computer Engineering', '2.9', '4', '0'), (6584, 'Clemson University', '9', 'Admit', 'MS', 'Automotive Engineering', 'Fall ', '2011', '760', '590', '1350', '3', '92', 'West Bengal University Of Technology', 'Automobile', '7.55', '10', '0'), (6585, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '540', '1290', '3.5', '105', 'VTU', 'Computer Science', '71', '100', '0'), (6586, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '170', '149', '319', '3', '102', 'MSRIT', 'Mechanical', '9.51', '10', '0'), (6587, 'Clemson University', '9', 'Admit', 'MS', 'Electronics & Communication', 'Fall ', '2012', '720', '620', '1340', '3.5', '108', 'Sri Venkateswara College of Engineering', 'ECE', '8.05', '10', '0'), (6588, 'Clemson University', '9', 'Admit', 'MS', 'Electronics and electrical engineering', 'Fall ', '2014', '164', '157', '321', '4.5', '114', 'MU', 'Electronics', '64.44', '100', '0'), (6589, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '790', '520', '1310', '3.5', '273', 'Cochin University of Science and Technology', 'Computer Science', '74.5', '100', '0'), (6590, 'Clemson University', '9', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2012', '1340', '560', '1900', '3', 'None', 'COEP', 'Computer Science', '7.64', '10', '0'), (6591, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '170', '150', '320', '3', '105', 'BITS Pilani', 'Mechanical', '8.62', '10', '24'), (6592, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '166', '152', '318', '3.5', '108', 'PESIT', 'Mechanical', '9.13', '10', '12'), (6593, 'Clemson University', '9', 'Admit', 'MS', 'Automotive Engineering', 'Fall ', '2012', '164', '145', '309', '3', '95', 'Andhra University', 'Mechanical Engineering', '7.56', '10', '0'), (6594, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '165', '149', '314', '3.5', '91', 'University of Pune', 'Mechanical Engineering', '59.3', '100', '0'), (6595, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '161', '148', '309', '3', '96', 'Walchand College Of Engineering', 'IT', '7.66', '10', '29'), (6596, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '790', '570', '1360', '3', 'None', 'YCCE', 'mechanical', '64', '100', '0'), (6597, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '370', '1170', '3', '102', 'PICT', 'IT', '65', '100', '0'), (6598, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '750', '550', '1300', '3.5', '110', 'Sri Venkateswara College of Engineering', 'Mechanical', '7.2', '10', '0'), (6599, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '790', '540', '1330', '4', '109', 'CEG', 'Mechanical engineering', '7', '10', '0'), (6600, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '167', '163', '330', 'None', 'None', 'R V College of Engineering', '0', '8.63', '10', '0'), (6601, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '168', '145', '313', '2.5', '87', 'CBIT', 'CSE', '80', '100', '0'), (6602, 'Clemson University', '9', 'Admit', 'MS', 'Automotive Engineering', 'Fall ', '2012', '161', '147', '308', '3.5', '98', 'MU', 'Mechanical Engineering', '57', '100', '0'), (6603, 'Clemson University', '9', 'Admit', 'MS', 'Sustainable enrgy and environment', 'Fall ', '2012', '161', '152', '313', '3.5', '97', 'NIT Nagpur', 'Mechanical', '6.9', '10', '0'), (6604, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '160', '152', '312', '3.5', '109', 'COEP', 'Instrumentation and Control', '8.16', '10', '0'), (6605, 'Clemson University', '9', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '570', '1360', '4', '110', 'PESIT', 'Telecommunications', '8.33', '10', '0'), (6606, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '154', '316', '4', '114', 'GITAM', 'CS', '7.6', '10', '0'), (6607, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '780', '1570', '4.5', '107', 'University of Pune', 'Information technology', '58.5', '100', '0'), (6608, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '790', '560', '1350', '3', '100', 'Panjab University', 'Mechanical Engineering', '65.63', '100', '0'), (6609, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '165', '162', '327', '3', '109', 'NIT Silchar', '0', '6.96', '10', '54'), (6610, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '155', '159', '314', '4', '114', 'SRM', 'Mechanical Engineering', '7.484', '10', '30'), (6611, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '159', '151', '310', '3.5', '98', 'SRKNEC', 'Electronics', '61', '100', '0'), (6612, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '160', '152', '312', '4', '101', 'MU', 'Mechanical Engg.', '68', '100', '0'), (6613, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '165', '149', '314', '3', '95', 'RGPV', 'Mechanical Engineering', '7', '10', '0'), (6614, 'Clemson University', '9', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '750', '560', '1310', '3.5', '111', 'Anna University', 'EEE', '8.02', '10', '0'), (6615, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '660', '1460', '4', '116', 'WBUT', 'Computer Science Engineering', '8.93', '10', '0'), (6616, 'Clemson University', '9', 'Admit', 'MS', 'Instrumentation and Control', 'Fall ', '2015', '162', '149', '311', '3.5', '105', 'Anna University', 'Electronics and Instrumentation', '7.6', '10', '18'), (6617, 'Clemson University', '9', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '780', '640', '1420', '4', '105', 'Pune University', 'E-tc', '57', '100', '0'), (6618, 'Clemson University', '9', 'Admit', 'MS', 'Automotive Engineering', 'Fall ', '2011', '780', '520', '1300', '3', '98', 'SRM', 'ECE', '7', '10', '0'), (6619, 'Clemson University', '9', 'Admit', 'MS', 'Automotive Engineering', 'Fall ', '2012', '166', '151', '317', '3.5', '103', 'Anna University', 'Mechanical', '86', '100', '0'), (6620, 'Clemson University', '9', 'Admit', 'MS', 'Automotive Engineering', 'Fall ', '2011', '730', '590', '1320', '3.5', '105', 'SRM', 'Mechanical Engineering', '9.2', '10', '0'), (6621, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '640', '1420', '4', '108', 'Anna University', 'Mathematics and Computer Applications', '8.79', '10', '0'), (6622, 'Clemson University', '9', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '160', '155', '315', '4', '94', 'DTU', 'ECE', '63', '100', '0'), (6623, 'Clemson University', '9', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2011', '700', '360', '1060', 'None', '105', 'Softvision College', 'Bioinformatics', '78', '100', '0'), (6624, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '164', '155', '319', '4', '110', 'Anna University', 'EEE', '6.45', '10', '0'), (6625, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '156', '142', '298', '3', '92', 'Pune University', 'Production Engineering', '0', '0', '0'), (6626, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '163', '150', '313', '2.5', '97', 'VIT', 'IT', '8.79', '10', '0'), (6627, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '167', '157', '324', '3.5', '109', 'NIT Tirchy', 'Mechanical Engineering', '7.04', '10', '11'), (6628, 'Clemson University', '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '750', '650', '1400', '3.5', '104', 'SBMJCE', 'ECE', '65', '100', '0'), (6629, 'Clemson University', '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '165', '158', '323', '3.5', '111', 'Amrita Vishwa Vidhyapeetham', 'Electrical and Electronics Engineering', '7.21', '10', '0'), (6630, 'Clemson University', '9', 'Admit', 'MS', 'Electronics Instrumentation and Control', 'Fall ', '2014', '155', '158', '313', '3.5', '114', 'RMK Engineering College', 'ELECTRONICS AND INSTRUMENTATION', '8.4', '10', '0'), (6631, 'Clemson University', '9', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '166', '156', '322', '4', '108', 'Amrita School of Engineering', 'ECE', '7.86', '10', '18'), (6632, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '167', '154', '321', '4', '103', 'LNMIIT', 'cs', '6.33', '10', '0'), (6633, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2008', '740', '400', '1140', '4', '83', 'VIT', 'Mechanical', '7.44', '10', '0'), (6634, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '730', '500', '1230', '3', '104', 'UPTU', 'Computer Science', '67', '100', '0'), (6635, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '164', '152', '316', '4', '100', 'GGSIPU', 'Mechanical and Automation Engineering', '77.7', '100', '0'), (6636, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '158', '154', '312', '3', '109', 'GGSIPU', 'Computer Science', '78', '100', '0'), (6637, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '700', '400', '1100', '3', '93', 'Pune University', 'IT', '64', '100', '0'), (6638, 'Clemson University', '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2010', '800', '600', '1400', '4', '105', 'VIT', 'EEE', '9.28', '10', '0'), (6639, 'Clemson University', '9', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2011', '730', '470', '1200', '3', '100', 'University of Pune', 'Chemical Engineering', '60', '100', '0'), (6640, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '750', '500', '1250', '3.5', '112', 'VTU', 'Mechanical', '76.66', '100', '0'), (6641, 'Clemson University', '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '590', '1390', '4.5', '108', 'Amrita School of Engineering', 'EIE', '7.45', '10', '0'), (6642, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '161', '156', '317', '4', 'None', 'BMSCE', 'Industrial Engineering', '71', '100', '0'), (6643, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '163', '147', '310', '3', 'None', 'Osmania University', 'mechanical engineering', '87', '100', '1'), (6644, 'Clemson University', '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '155', '157', '312', '3.5', '110', 'R V College of Engineering', 'Instrumentation Technology', '9.42', '100', '0'), (6645, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '155', '317', '3', '101', 'NIT Alld', 'CSE', '7.7', '10', '48'), (6646, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '165', '149', '314', '3.5', '103', 'Rajasthan Technical University', 'Computer Science and Engineering', '73', '100', '0'), (6647, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '790', '490', '1280', '3.5', '96', 'Rajiv Gandhi Prodyogiki Vishwavidyalaya', 'Information Technology', '81', '100', '0'), (6648, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '770', '590', '1360', '3', '102', 'Rajiv Gandhi Institute Of Technology', 'MECHANICAL ENGINEERING', '63', '100', '0'), (6649, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2006', '800', '520', '1320', '4', '290', 'Crescent Engineering College', 'Mechanical Engineering', '76', '100', '0'), (6650, 'Clemson University', '9', 'Admit', 'MS', 'Electronics & Communication', 'Fall ', '2012', '790', '530', '1320', '4', '110', 'NIT Hamirpur', 'Electronics and communication', '7.56', '10', '0'), (6651, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '159', '155', '314', 'None', '93', 'ESPOL - ECU', 'Elect & Comput Science', '7.52', '10', '0'), (6652, 'Clemson University', '9', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2014', '170', '149', '319', '3', '96', 'NIT Bhopal', 'CIVIL', '6.98', '10', '31'), (6653, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '164', '155', '319', '4.5', '115', 'VJTI', 'PRODUCTION', '8.3', '10', '0'), (6654, 'Clemson University', '9', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '780', '560', '1340', '3.5', '104', 'MU', 'Electronics & Telecommunication', '62', '100', '0'), (6655, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '440', '1220', '3', '104', 'JNTU', 'Computer Science', '66.27', '100', '0'), (6656, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '380', '1170', '3', '104', 'SVCE', 'CS', '77', '100', '0'), (6657, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '169', '158', '327', '4', '109', 'Nanjing University', 'Software Institute', '82.9', '100', '0'), (6658, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2008', '760', '490', '1250', '3.5', '97', 'JNTU', 'Computer Engg', '68', '100', '0'), (6659, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '151', '154', '305', '4', '115', 'Gurukula Kangri Vishwavidyalaya', 'Computer Science Engineering', '82.1', '100', '0'), (6660, 'Clemson University', '9', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2013', '162', '156', '318', '4', '114', 'Techno India College of Technology Rajarhat (West Bengal University of Technology)', 'Electronics and Communication', '8.29', '10', '0'), (6661, 'Clemson University', '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '164', '159', '323', '4', 'None', 'Clemson University', 'Electrical Engineering', '3.81', '4', '0'), (6662, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '162', '155', '317', '4', '111', 'ITM University M.D.U. Rohtak', 'Mechanical', '8.28', '10', '0'), (6663, 'Clemson University', '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall', 'None', '160', '156', '316', '4', 'None', 'None', 'ECE', '8.87', '10', '0'), (6664, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '790', '530', '1320', '3', '114', 'Anna University', 'Mechanical Engineering', '8.1', '10', '0'), (6665, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '620', '1420', '4', '114', 'MU', 'IT', '72.4', '100', '0'), (6666, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '159', '153', '312', '3.5', '107', 'Pune University', 'IT', '62', '100', '0'), (6667, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '620', '1400', '3', '109', 'University of Pune', 'Computer', '72', '100', '0'), (6668, 'Clemson University', '9', 'Admit', 'MS', 'Architectural Engineering', 'Fall ', '2014', 'None', 'None', '0', 'None', 'None', 'JNAFAU HYDERABAD', '0', '0', '0', '0'), (6669, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '168', '155', '323', '4', '110', 'MU', 'Mechanical engg.', '55', '100', '0'), (6670, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '162', '150', '312', '4.5', '101', 'None', 'Mechanical Engineering', '8.2', '10', '0'), (6671, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '161', '161', '322', '4', '112', 'SVNIT Surat', 'Mechanical', '8.3', '10', '0'), (6672, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '700', '540', '1240', '3', '99', 'Sri Venkateswara College of Engineering', 'Information Technology', '72', '100', '0'), (6673, 'Clemson University', '9', 'Admit', 'MS', 'Architecture', 'Fall ', '2015', '162', '157', '319', 'None', '115', 'MU', "Rachana Sansad\\'s Academy of Architecture Mumbai", '67.5', '100', '12'), (6674, 'Clemson University', '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '161', '154', '315', '3.5', '107', 'Goa University', 'Electronics & Telecommunications', '72', '100', '48'), (6675, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '154', '315', '3.5', '112', 'MU', 'Computer Engineering', '56', '100', '0'), (6676, 'Clemson University', '9', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '580', '1380', '3.5', '107', 'NIT Durgapur', 'Electronics and Communication Engineering', '7.78', '10', '0'), (6677, 'Clemson University', '9', 'Admit', 'MS', 'Automotive Engineering', 'Fall ', '2010', '740', '730', '1470', '1470', '112', 'Thapar University', 'Mechanical Engineering', '8.13', '10', '0'), (6678, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '157', '153', '310', '4', '108', 'VTU', 'Computer Science', '66', '100', '0'), (6679, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '157', '323', '4', '110', 'Galgotias College of Engineering and Technology', 'Electronics and Instrumentation', '79.26', '100', '0'), (6680, 'Clemson University', '9', 'Admit', 'MS', 'Robotics', 'Fall ', '2015', '164', '153', '317', '3', '91', 'Mepco Schlenk Engineering College', 'EEE', '8.51', '10', '0'), (6681, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '780', '650', '1430', '3.5', '113', 'Fr.C.R.I.T. Vashi', 'Electronics and Tele Comm', '0', '0', '0'), (6682, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '710', '1500', '2.5', '114', 'Anna University', 'CSE', '7.58', '10', '0'), (6683, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '800', '500', '1300', '3', '100', 'NIT Jaipur', 'Mechanical Engineering', '7.56', '10', '0'), (6684, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '155', '152', '307', '3.5', '91', 'VIT University', 'CSE', '8.34', '10', '0'), (6685, 'Clemson University', '9', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2014', '164', '142', '306', '3', '93', 'GMRIT', 'Mechanical', '78', '100', '0'), (6686, 'Clemson University', '9', 'Admit', 'MS', 'Civil Engineering', 'Spring ', '2015', '163', '151', '314', '3', 'None', 'SRM', 'Civil Engineering', '8.82', '10', '0'), (6687, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '550', '1300', '3.5', '109', 'Coimbatore Insitute of Technology', 'CSE', '7', '10', '0'), (6688, 'Clemson University', '9', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2013', '157', '136', '293', '3.5', '87', 'RTM Nagpur University', 'Electrical Engg', '65.03', '100', '0'), (6689, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (6690, 'Clemson University', '9', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '790', '510', '1300', '4', '114', 'NIT Rourkela', 'Electronics and Communication Department', '9.45', '10', '0'), (6691, 'Clemson University', '9', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '760', '640', '1400', '4.5', '113', 'JNTU', 'ECE', '79', '100', '0'), (6692, 'Clemson University', '9', 'Admit', 'MS', 'Civil Engineering', 'Spring ', '2014', '154', '149', '303', '3', '7', 'MVGR College of Engg (JNTU-K)', 'Civil Engineering', '68.11', '100', '0'), (6693, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall', 'None', '168', '153', '321', '3', '107', 'NIT Hamirpur', 'Mechanical Engineering', '7.4', '10', '0'), (6694, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '690', '520', '1210', '3.5', '96', 'Koneru Lakshmaiah College of Engineering', 'Industrial & Production Engineering', '74', '100', '0'), (6695, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '710', '420', '1130', '3', '97', 'M.G.M College of Eng', 'Computer', '72', '100', '0'), (6696, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '160', '155', '315', '4.5', 'None', 'SSN College of Engineering', 'Mechanical', '8.1', '10', '0'), (6697, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '370', '720', '1090', '3.5', '93', 'Osmania University', 'Mechanical', '0', '0', '0'), (6698, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '720', '540', '1260', '3.5', '107', 'B N M Institute of Technology', 'ISE', '71.72', '100', '0'), (6699, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '158', '153', '311', '3.5', '103', 'VTU', 'Computer Science Engg', '70', '100', '0'), (6700, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '740', '470', '1210', '3', '87', 'Vishwakarma Institute of Technology', 'Industrial Engineering', '9.45', '10', '0'), (6701, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '740', '510', '1250', '3', '102', 'K J Somaiya College of Engiineering', 'Mechanical Engineering', '64.59', '100', '0'), (6702, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '800', '570', '1370', '3.5', '113', 'Govt Rajiv Gandhi Institute of Technology', 'ME', '78', '100', '0'), (6703, 'Clemson University', '9', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2015', '161', '157', '318', '4.5', '114', 'NUST', 'Electrical and Power Engineering Department - Electronics Engineering', '3.13', '4', '3'), (6704, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '155', '314', '4', '106', 'University of Mumbai', 'Computer Engineering', '55.74', '100', '0'), (6705, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '710', '540', '1250', '3', '81', 'Thiagarajar College of engineering', 'Computer Science', '9.31', '10', '0'), (6706, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '163', '153', '316', '3.5', '107', 'Sardar Patel University', 'mechanical engineering', '8.43', '10', '0'), (6707, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '159', '144', '303', '3', '91', 'GITAM', 'Mechanical Engineering', '9.11', '10', '0'), (6708, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '390', '1190', '3', '103', 'Pune University', 'Information Technology', '68.92', '100', '0'), (6709, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '360', '1130', '3.5', '111', 'Anna University', 'Computer Science & Engg', '79', '100', '0'), (6710, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '790', '380', '1170', '3.5', '101', 'RGPV', 'Information Technology', '76.16', '100', '0'), (6711, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '720', '440', '1160', '4', '107', 'Pune University', 'Mechanical Engineering', '68.72', '100', '0'), (6712, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '157', '146', '303', '4', '110', 'Government Engineering College Thrissur Kerala', 'Mechanical Engineering', '72.5', '100', '0'), (6713, 'Clemson University', '9', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (6714, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '720', '530', '1250', '3.5', '101', 'Anna University', 'Mechanical Engineering', '80.5', '100', '0'), (6715, 'Clemson University', '9', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2012', '164', '156', '320', '4', '110', 'University of Calicut', 'INSTRUMENTATION & CONTROL', '77.4', '100', '0'), (6716, 'Clemson University', '9', 'Admit', 'MS', 'biosystems engineering', 'Fall ', '2011', '710', '650', '1360', '4', '104', 'SASTRA', 'biotechnology', '9.5', '10', '0'), (6717, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '680', '570', '1250', '3.5', '106', 'MU', 'Information Technology', '65', '100', '0'), (6718, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '155', '147', '302', '3.5', '110', 'None', 'ECE', '81', '100', '0'), (6719, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '650', '1450', '4', '106', 'NIT Durgapur', 'CSE', '8.68', '10', '0'), (6720, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '420', '1170', '3', '96', 'COEP', 'IT', '7.05', '10', '0'), (6721, 'Clemson University', '9', 'Admit', 'MS', 'Automotive Engineering', 'Fall ', '2013', '159', '145', '304', '3', '93', 'Ajalakshmi Engineering College', 'Automobile Engineering', '8.1', '10', '0'), (6722, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '160', '320', '4', '109', 'B M S College of Engineering', 'Computer Science and Engineering', '77.4', '100', '0'), (6723, 'Clemson University', '9', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '158', '155', '313', '4.5', '106', 'VTU', 'Electronics and Communication', '73', '100', '13'), (6724, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '800', '600', '1400', '4', '111', 'SSN College of Engineering', 'Mechanical Engineering', '8.99', '10', '0'), (6725, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '160', '147', '307', '3.5', 'None', 'Anna University', 'Mechanical Engineering', '81', '100', '0'), (6726, 'Clemson University', '9', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2012', '760', '630', '1390', '4', '108', 'K J Somaiya College of Engiineering', 'Electronics', '70', '100', '0'), (6727, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '160', '146', '306', '3', 'None', 'Coimbatore Insitute of Technology', 'Mechanical', '9.15', '10', '0'), (6728, 'Clemson University', '9', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2011', '690', '500', '1190', '2.5', '89', 'AISSMS College of Engineering Pune', 'Civil', '64', '100', '0'), (6729, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '750', '510', '1260', '3.5', '86', 'Anna University', 'Computer Science', '80.4', '100', '0'), (6730, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '158', '153', '311', '4', '117', 'VTU', 'Information Science and Engineering', '75', '100', '0'), (6731, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '670', '430', '1100', '2.5', '100', 'SASTRA', 'Information and Communication Tech.', '6.6', '10', '0'), (6732, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '162', '157', '319', '4', '113', 'BIT Mesra', 'Mechanical', '8.5', '10', '0'), (6733, 'Clemson University', '9', 'Admit', 'MS', 'Automotive Engineering', 'Fall ', '2013', '168', '153', '321', '3', '102', 'NIT Surat', 'Production Engineering', '8.24', '10', '0'), (6734, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Spring ', '2014', '156', '150', '306', '3', '100', 'Manipal Institue of Technology', 'MECHANICAL', '7', '10', '0'), (6735, 'Clemson University', '9', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '780', '650', '1430', 'None', '120', 'VTU', 'ECE', '73.71', '100', '0'), (6736, 'Clemson University', '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2007', '780', '370', '1150', '5', '270', 'College of Technology Pantnagar', 'Electronics and Communication Engineering', '7.922', '10', '0'), (6737, 'Clemson University', '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '166', '151', '317', '3.5', '111', 'Amrita School of Engineering', 'Electrical Engineering', '8.2', '10', '0'), (6738, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '157', '146', '303', '3', '96', 'Anna University', 'Mechanical Engineering', '7', '10', '0'), (6739, 'Clemson University', '9', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2014', '800', '570', '1370', '3.5', '109', 'MSRIT', 'Electrical and Electronics', '8.74', '10', '24'), (6740, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '790', '490', '1280', '3.5', '110', 'MU', 'Mechanical', '73', '100', '0'), (6741, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '660', '1460', '3.5', '113', 'None', 'Electronics and Comm', '75.6', '100', '0'), (6742, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical / Industrial Engg.', 'Fall ', '2013', '163', '160', '323', '4.5', '117', 'Manipal Institue of Technology', 'Mechanical', '8.7', '10', '0'), (6743, 'Clemson University', '9', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '780', '530', '1310', '4', '103', 'Anna University', 'ECE', '84', '100', '0'), (6744, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '159', '149', '308', '3', '99', 'Thiagarajar College of engineering', 'mechanical', '8.87', '10', '0'), (6745, 'Clemson University', '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '600', '1390', '4', '108', 'Asansol Engineering College', 'Elctrical Engineering', '8.27', '10', '0'), (6746, 'Clemson University', '9', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '162', '154', '316', '3.5', '114', 'VTU', 'Electronics and Communication', '8.31', '10', '0'), (6747, 'Clemson University', '9', 'Admit', 'MS', 'Applied Mathematics', 'Fall ', '2013', '750', '530', '1280', '2.5', '102', 'University of Dhaka', 'Mathematics', '72.4', '100', '0'), (6748, 'Clemson University', '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '760', '540', '1300', '3.5', '113', 'University of Pune', 'Electrical', '78.13', '100', '0'), (6749, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '480', '1260', '3', '104', 'Pune University', 'Computer Engineering', '65.2', '100', '0'), (6750, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '166', '157', '323', '3', '103', 'Goa University', 'Mechanical Dept.', '74.3', '100', '0'), (6751, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '163', '151', '314', '3', '106', 'Anna University', 'Information technology', '80', '100', '0'), (6752, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '800', '580', '1380', '3.5', '111', 'Delhi College Of Engineeing', 'Mechanical Engineering', '67', '100', '0'), (6753, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '780', '380', '1160', '4', '96', 'MU', 'Mechanical', '65', '100', '0'), (6754, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '770', '460', '1230', '4', '110', 'Pune University', 'Mechanical', '71.1', '100', '0'), (6755, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '163', '152', '315', 'None', '105', 'MU', 'Mechanical', '70.12', '100', '0'), (6756, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '720', '500', '1220', '3.5', '108', 'University of Mumbai', 'Mechanical Engineering', '61', '100', '0'), (6757, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '165', '150', '315', '4', '106', 'None', 'Mechanical Engineering', '9.1', '10', '0'), (6758, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '163', '149', '312', '4.5', '106', 'MU', '0', '58', '100', '0'), (6759, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '780', '440', '1220', '3', '97', 'MU', 'Instrumentation Engineering', '65', '100', '0'), (6760, 'Clemson University', '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '150', '311', '3.5', '94', 'NIT Paatna', 'ELECTRICAL ENGINEERING', '8.57', '10', '0'), (6761, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '720', '440', '1160', '3', '105', 'JNTU', 'Mechanical', '62', '100', '0'), (6762, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '168', '152', '320', '3.5', '103', 'Sardar Patel University', 'Mechanical', '9.18', '10', '0'), (6763, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '164', '152', '316', '3', '97', 'University of Mumbai', 'Production Engineering', '70.3', '100', '0'), (6764, 'Clemson University', '9', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2012', '800', '540', '1340', '2.5', '104', 'NIT DGP', 'CE', '3.64', '4', '0'), (6765, 'Clemson University', '9', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2012', '770', '600', '1370', '3.5', '104', 'Pune University', 'Electronics and Telecom', '72.86', '100', '0'), (6766, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '520', '1320', '4', '90', 'Reputed private institute [deemed university] equivalent in standard to a upper-middle-ranked NIT', 'Computer Science', '6', '10', '0'), (6767, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '450', '1250', '3.5', '98', 'JNTU', 'ECE', '74', '100', '0'), (6768, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '169', '151', '320', '3.5', '108', 'NIT Jaipur', 'Mechanical', '6.2', '10', '0'), (6769, 'Clemson University', '9', 'Admit', 'MS', 'None', 'Fall ', '2013', '164', '153', '317', '4', '114', 'CEG', 'Manufacturing Engineering', '8.81', '10', '0'), (6770, 'Clemson University', '9', 'Admit', 'MS', 'Civil and Environmental Engg', 'Fall ', '2015', '164', '149', '313', '4', '113', 'Pondicherry University', 'Civil Engg', '7.7', '10', '0'), (6771, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '800', '520', '1320', '3.5', '94', 'Pune University', 'Mechanical', '77.4', '100', '0'), (6772, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '610', '1410', '4', '107', 'R V College of Engineering', 'computer science', '79', '100', '0'), (6773, 'Clemson University', '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '160', '153', '313', '4', '102', 'Sri Venkateswara College of Engineering', 'EEE', '7.5', '10', '0'), (6774, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '152', '150', '302', '3', '93', 'None', '0', '3.87', '4', '0'), (6775, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '780', '520', '1300', '4', '112', 'VTU', 'Mechanical', '77', '100', '0'), (6776, 'Clemson University', '9', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Spring ', '2016', '159', '154', '313', '3.5', '113', 'VTU', 'Electrical and Electronics', '80.08', '100', '17'), (6777, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '151', '313', '3.5', '106', 'MU', 'Computer Engineering', '60.25', '100', '58'), (6778, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '167', '158', '325', '3', '110', 'VIT University', 'Mechanical', '8.73', '10', '0'), (6779, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '720', '380', '1100', '3.5', '88', 'Anna University', 'CSE', '8', '10', '0'), (6780, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '720', '380', '1100', '3.5', '88', 'Anna University', 'Computer Science', '8', '10', '0'), (6781, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '520', '1290', '3', '118', 'SSN College of Engineering', 'Information Technology', '72', '100', '0'), (6782, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '690', '1480', '3', '97', 'Pune University', 'Computer', '73', '100', '0'), (6783, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '750', '500', '1250', '3.5', '100', 'University of Pune', 'Mechanical', '67', '100', '0'), (6784, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '800', '430', '1230', '4', '104', 'JNTU', 'mechanical engineering', '74', '100', '0'), (6785, 'Clemson University', '9', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2012', '770', '630', '1400', '3', '104', 'Technological Edu. Institute of Piraeus', 'Electrical Engineering', '6.49', '10', '0'), (6786, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '420', '1170', '3', '94', 'TCET mumbai university', 'Information technology', '62.42', '100', '0'), (6787, 'Clemson University', '9', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '169', '161', '330', '4', '109', 'NIT Rourkela', 'Electronics and Instrumentation Engg', '9.41', '10', '0'), (6788, 'Clemson University', '9', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2011', '770', '530', '1300', '3.5', '106', 'SAKEC Mumbai University', 'Electronics', '70.23', '100', '0'), (6789, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '167', '157', '324', '3.5', '102', 'None', 'Mechanical', '80', '100', '29'), (6790, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '159', '148', '307', '3', '101', 'University of Pune', 'Mechanical', '68', '100', '0'), (6791, 'Clemson University', '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '740', '590', '1330', '4', '104', 'NIT Silchar', 'Electrical Engineering', '6.67', '10', '0'), (6792, 'Clemson University', '9', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2011', '790', '520', '1310', '3', '99', 'BITS Pilani', 'Electronics & Instrumentation', '8', '10', '0'), (6793, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '150', '308', '3.5', '102', 'PSG College of Technology', 'ECE', '9.2', '10', '33'), (6794, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '170', '158', '328', '3.5', '108', 'IIT Indore', 'Mechanical Engineering', '7.16', '10', '24'), (6795, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', 'None', 'None', '0', 'None', 'None', 'VIT University', 'Mechanical', '7.82', '10', '0'), (6796, 'Clemson University', '9', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2011', '620', '580', '1200', '3.5', '86', 'Pune University', 'computer engg', '60', '100', '0'), (6797, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '165', '155', '320', '3.5', '113', 'None', '0', '3.2', '4', '44'), (6798, 'Clemson University', '9', 'Admit', 'MS', 'Computer Engineering', 'Fall', 'None', '770', '500', '1270', '3.5', '111', 'Ansal Institute of Technology', 'Computer Science', '73', '100', '0'), (6799, 'Clemson University', '9', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '610', '1410', '3.5', '108', 'DA-IICT', 'ECE', '6.79', '10', '0'), (6800, 'Clemson University', '9', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '752', '491', '1243', '3', '235', 'BITS Pilani', 'ENGGINEERING', '7', '10', '0'), (6801, 'Clemson University', '9', 'Admit', 'MS', 'Automotive Engineering', 'Fall ', '2011', '730', '580', '1310', 'None', '113', 'NMAMIT Karkala Karnataka', 'Mech Engineering', '8.6', '10', '0'), (6802, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '760', '490', '1250', '3', '89', 'Pune University', 'Mechanical', '63', '100', '0'), (6803, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '163', '146', '309', '3.5', '106', 'Pune University', 'Mechanical Engineering', '63', '100', '0'), (6804, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '770', '730', '1500', '4', '114', 'VIT University', 'Mechanical with spl. in Energy', '8.63', '10', '0'), (6805, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '161', '154', '315', '3.5', '111', 'Delhi College Of Engineeing', 'Production and Industrial Engg', '65', '100', '0'), (6806, 'Clemson University', '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '165', '154', '319', '3.5', '107', 'Pune University', 'E&TC;', '65', '100', '0'), (6807, 'Clemson University', '9', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2011', '760', '540', '1300', '3', '101', 'JNTU', 'Computer Science', '0', '0', '0'), (6808, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '163', '152', '315', '4', '111', 'COEP', 'Production Engineering (Sandwich)', '8.94', '10', '16'), (6809, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '780', '520', '1300', '4.5', '280', 'JNTU', 'Computer Science and Engineering', '67', '100', '0'), (6810, 'Clemson University', '9', 'Admit', 'MS', 'Electrical and computer engineering electrical engineering telecommunications engineering', 'Fall ', '2015', '162', '157', '319', '3', '112', 'PCCOE Pune University', 'Electronics and Telecommunication Engineering', '0', '0', '28'), (6811, 'Clemson University', '9', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '720', '640', '1360', '4', 'None', 'BNMIT', 'ECE', '73', '100', '0'), (6812, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '160', '152', '312', '3', '102', 'VTU', 'Mechanical engineering', '73.5', '100', '0'), (6813, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Spring', 'None', '167', '149', '316', '2.5', '90', 'NIT Warangal', 'ECE', '7.36', '10', '26'), (6814, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Spring ', '2012', '800', '620', '1420', '4', '102', 'Thiagarajar College of engineering', 'Mechanical engineering', '8.77', '10', '0'), (6815, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '154', '152', '306', '3.5', '102', 'PESIT', 'Mechanical Engineering', '6.3', '10', '0'), (6816, 'Clemson University', '9', 'Admit', 'MS', 'Automotive Engineering', 'Fall ', '2012', '161', '149', '310', 'None', '96', 'K J Somaiya College of Engiineering', 'mechanical engineering', '64', '100', '0'), (6817, 'Clemson University', '9', 'Admit', 'MS', 'Automotive Engineering', 'Fall ', '2012', '161', '149', '310', '310', '96', 'K J Somaiya College of Engiineering', 'mechanical engineering', '64', '100', '0'), (6818, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '165', '149', '314', '3.5', '109', 'Univ Of Pune', 'Mechanical', '58', '100', '0'), (6819, 'Clemson University', '9', 'Admit', 'MS', 'Automotive Engineering', 'Fall ', '2012', '160', '156', '316', '4.5', '111', 'NIT Calicut', 'Mechanical', '6.23', '10', '0'), (6820, 'Clemson University', '9', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2011', '790', '320', '1110', '3', '102', 'MU', 'Civil', '78', '100', '0'), (6821, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '158', '151', '309', '3', '93', 'Mody University', 'MCA', '9.2', '10', '0'), (6822, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '164', '152', '316', '3.5', '110', 'Pune University', 'Mechanical Engineering', '69.8', '100', '0'), (6823, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '158', '150', '308', '2.5', 'None', 'Panimalar Engineering College', 'Computer science', '74', '100', '0'), (6824, 'Clemson University', '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '165', '151', '316', 'None', '112', 'Sri Venkateswara College of Engineering', 'EEE', '7.94', '10', '0'), (6825, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '153', '315', '3.5', '103', 'Andhra University', 'CSE', '8.14', '10', '47'), (6826, 'Clemson University', '9', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '161', '156', '317', '4', '111', 'Osmania University', 'ECE', '82.3', '100', '0'), (6827, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '160', '148', '308', '3', '100', 'MU', 'Computer Engineer', '56', '100', '0'), (6828, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '162', '155', '317', '3.5', '106', 'Anna University / Sri Ramakrishna Engineering College', 'Mechanical Engineering', '8.45', '10', '33'), (6829, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '161', '152', '313', '4', '102', 'SRM', 'Mechanical Engg', '8.6', '10', '0'), (6830, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '720', '400', '1120', '4', '104', 'ICFAI', 'CSE', '7.95', '10', '0'), (6831, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '165', '160', '325', '4', '109', 'Calicut University', 'Mechanical Engineering', '7.96', '10', '0'), (6832, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '161', '152', '313', '4', '107', 'Sri Sairam Engineering College', 'Electronics and Instrumentation', '7.95', '10', '0'), (6833, 'Clemson University', '9', 'Admit', 'MS', 'Automotive Engineering', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (6834, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '161', '159', '320', '3.5', 'None', 'Aurora College of Engineering', 'Mechanical Engg', '69.7', '100', '0'), (6835, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '520', '1310', '4', '107', 'PESIT', 'Electronics and communication', '77.27', '100', '0'), (6836, 'Clemson University', '9', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '159', '139', '298', '2', 'None', 'None', 'Computer Science', '8.37', '10', '0'), (6837, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '158', '154', '312', '3', 'None', 'MVSR', 'I.T', '82', '100', '0'), (6838, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '720', '300', '1020', '3.5', '101', 'None', '0', '0', '0', '0'), (6839, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '720', '300', '1020', '3.5', '101', 'R N S Institute of Technology', 'Computer Science', '74', '100', '0'), (6840, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Spring ', '2012', '780', '450', '1230', 'None', '98', 'Anna University', 'Mechanical', '7.36', '10', '0'), (6841, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '166', '152', '318', '4', '105', 'BITS Pilani', 'Mechanical Eng', '8.98', '10', '0'), (6842, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '162', '162', '324', '3.5', '111', 'Anna University', 'Mechanical Engineering', '78', '100', '44'), (6843, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '169', '156', '325', '3.5', '102', 'VTU', 'ECE', '70', '100', '0'), (6844, 'Clemson University', '9', 'Admit', 'MS', 'Electrical and computer science', 'Fall ', '2012', '740', '610', '1350', 'None', '112', 'University of Pune', 'ENTC', '60.2', '100', '0'), (6845, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '166', '157', '323', '3', '102', 'VNR VJIET', 'Computer Science', '75.3', '100', '0'), (6846, 'Clemson University', '9', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '760', '660', '1420', '4', '108', 'The Technological institute of Textile and Sciences Bhiwani', 'Electronics & Communication Engineering', '68.3', '100', '0'), (6847, 'Clemson University', '9', 'Admit', 'MS', 'Electronics and Communication', 'Spring ', '2016', '163', '158', '321', '5.5', 'None', 'University of Calicut', 'Electronics and Communication Engineering', '65', '100', '54'), (6848, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '168', '157', '325', '3.5', '104', 'VCET', 'MEchanical', '64', '100', '12'), (6849, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '650', '440', '1090', '3', '91', 'Government College Of Engineering Aurangabad', 'Information Technology', '69', '100', '0'), (6850, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '750', '430', '1180', '3.5', '101', 'CBIT', 'IT', '73.75', '100', '0'), (6851, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '164', '155', '319', '3.5', '109', 'Pune University', 'Mechanical Engineering', '8.83', '10', '0'), (6852, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '800', '630', '1430', '4', '109', 'Shivaji University', 'mechanical', '7.7', '10', '0'), (6853, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '159', '154', '313', '3', 'None', 'Guru Gobind Singh Indraprashta University', 'Electrical and electronics', '75', '100', '0'), (6854, 'Clemson University', '9', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '165', '164', '329', '4.5', '119', 'Dayananda Sagar College of Engineering', 'ece', '78', '100', '0'), (6855, 'Clemson University', '9', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '160', '156', '316', '4', '103', 'Delhi College Of Engineeing', 'Electrical Engineering', '66', '100', '22'), (6856, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '570', '1330', '3', '110', 'COEP', 'Computer Science', '67.9', '100', '0'), (6857, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '750', '500', '1250', '3', '86', 'Chilkur Balaji Institute of Tecnology (JNTUH)', 'C.S.E', '78', '100', '0'), (6858, 'Clemson University', '9', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2015', '159', '160', '319', '3.5', '109', 'VTU', 'Civil Engineering', '80.5', '100', '0'), (6859, 'Clemson University', '9', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall', 'None', '167', '148', '315', '4.5', '108', 'Osmania University', 'Electronics and Communication Engineering', '86.7', '100', '0'), (6860, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '155', '315', '3', '109', 'MGIT (JNTU)', 'CSE', '74', '100', '0'), (6861, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '164', '148', '312', '3', 'None', 'VIT University', 'Mechanical( ABET Accredited)', '9.1', '100', '0'), (6862, 'Clemson University', '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (6863, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '158', '154', '312', '4', '113', 'Pune University', 'Electronics & Telecommunication', '60', '100', '8'), (6864, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '155', '319', '3.5', '105', 'NMIMS', 'Computer Science', '3.26', '4', '0'), (6865, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '400', '1190', '3', '98', 'JSSATE / VTU', 'CS', '74', '100', '0'), (6866, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '800', '720', '1520', '4', '116', 'NIT Durgapur', 'Computer Science and Engineering', '7.89', '10', '0'), (6867, 'Clemson University', '9', 'Admit', 'MS', 'Civil Engineering', 'Fall', 'None', '159', '150', '309', '3.5', '96', 'Amrita School of Engineering', 'Civil', '8.19', '100', '0'), (6868, 'Clemson University', '9', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '750', '620', '1370', '3.5', '103', 'COEP', 'Electronics and Telecommunication', '7.8', '10', '0'), (6869, 'Clemson University', '9', 'Admit', 'MS', 'Electrical and computer science', 'Fall ', '2011', '750', '620', '1370', '3.5', '103', 'COEP', 'Electronics and Telecommunication', '7.8', '10', '0'), (6870, 'Clemson University', '9', 'Admit', 'MS', 'Electronic and Telecommunication Engineering', 'Fall ', '2012', '790', '620', '1410', '3.5', '108', 'MU', 'Electronics and Telecommunication', '69', '100', '0'), (6871, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '158', '143', '301', '3.5', 'None', 'SNIST', 'Electronics and Computer Engineering', '82.98', '100', '15'), (6872, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '158', '147', '305', '3.5', '104', 'VTU', 'Industrial engineering', '73', '100', '0'), (6873, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '730', '670', '1400', '4', '115', 'None', 'Mechanical Engineering', '76', '100', '0'), (6874, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '160', '159', '319', '3.5', '111', 'MU', 'Automobile Engineering', '62', '100', '0'), (6875, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '430', '1230', '4', '110', 'Pune University', 'Computer', '69', '100', '0'), (6876, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '700', '480', '1180', '3', '89', 'Anna University', 'Computer Science', '72', '100', '0'), (6877, 'Clemson University', '9', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '170', '155', '325', '3.5', '111', 'ASE Blr', 'ECE', '8.22', '10', '0'), (6878, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '156', '150', '306', '3', '105', 'BVBCET', 'mechanical', '8.98', '10', '0'), (6879, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '160', '150', '310', '3', 'None', 'MU', 'CS', '61', '100', '0'), (6880, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '350', '1150', '3.5', '104', 'Madras Institute of Technology', 'Computer Science', '8', '10', '0'), (6881, 'Clemson University', '9', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2011', '740', '570', '1310', '3.5', '110', 'University of Mumbai', 'Electronics', '62', '100', '0'), (6882, 'Clemson University', '9', 'Admit', 'MS', 'Automotive Engineering', 'Fall ', '2013', '800', '630', '1430', '4.5', '113', 'University of Mumbai', 'Information Technology', '66', '100', '34'), (6883, 'Clemson University', '9', 'Admit', 'MS', 'Automotive Engineering', 'Fall ', '2016', '162', '155', '317', '3', 'None', 'Medicaps Institute of Science & Technology Indore', 'automobile', '6.67', '10', '0'), (6884, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '158', '146', '304', '3', '96', 'Don Bosco Institute of Technology', 'IT', '67', '100', '24'), (6885, 'Clemson University', '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2007', '800', '630', '1430', '4', '283', 'Osmania University', 'Electronics and Communication', '82.92', '100', '0'), (6886, 'Clemson University', '9', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '160', '152', '312', '3.5', '95', 'University of Pune', 'E&TC;', '65.8', '100', '8'), (6887, 'Clemson University', '9', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2014', '161', '149', '310', '3', '107', 'Sir MVIT', 'Civil engineering', '0', '0', '0'), (6888, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '750', '470', '1220', '4', '109', 'The National Institute of Engineering', 'Mechanical Engineering', '65', '100', '0'), (6889, 'Clemson University', '9', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '168', '151', '319', '4', '117', 'BITS Hyderabad', 'ECE', '9.22', '10', '0'), (6890, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '790', '450', '1240', '3', '97', 'VITU', 'Mechanical', '8.5', '10', '0'), (6891, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '160', '155', '315', '3.5', '105', 'BITS Pilani', 'Mechanical', '7.39', '10', '0'), (6892, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '158', '146', '304', '3.5', '7', 'Anna University', 'Mechanical engg', '7.98', '100', '0'), (6893, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '160', '149', '309', '3.5', '104', 'Chaitanya Bharathi Institute of Technology', 'Mechanical Production', '76', '100', '0'), (6894, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '750', '420', '1170', '3', '100', 'GGSIPU', 'mechanical n automation', '73', '100', '0'), (6895, 'Clemson University', '9', 'Admit', 'MS', 'Automotive Engineering', 'Fall ', '2015', '170', '158', '328', '4', '107', 'Sri Venkateswara College of Engineering', 'EEE', '84', '100', '46'), (6896, 'Clemson University', '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '760', '580', '1340', '4', '110', 'GITAM', 'EEE', '6.6', '10', '0'), (6897, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '161', '152', '313', '4', '109', 'JNTU', 'CS', '71', '100', '0'), (6898, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '590', '1390', '3', '105', 'Anna University', 'Computer Science', '82', '100', '0'), (6899, 'Clemson University', '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '163', '155', '318', '3.5', '111', 'Velammal Engineering College', 'EEE', '8.5', '10', '0'), (6900, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2010', '740', '620', '1360', '4', '114', 'Mar Athanasius College of Engineering Kerala', 'Mechanical Engineering', '70', '100', '0'), (6901, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '800', '600', '1400', '3', '109', 'Vasavi College of Engineering', 'mech', '70.7', '100', '0'), (6902, 'Clemson University', '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2010', '790', '550', '1340', '4', '100', 'PESIT', 'ECE', '69.45', '100', '0'), (6903, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '164', '156', '320', '3', '107', 'COEP', 'Production engineering', '8.11', '10', '0'), (6904, 'Clemson University', '9', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '166', '154', '320', '3', '107', 'Delhi College Of Engineeing', 'Electrical and Electronics', '74.19', '100', '24'), (6905, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '163', '143', '306', '3.5', '107', 'K J Somaiya College of Engiineering', 'Mechanical Engg', '65', '100', '0'), (6906, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '720', '530', '1250', '3', '91', 'University of Pune', 'information technology', '65', '100', '0'), (6907, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '164', '161', '325', '4', '114', 'SPCE', 'Mech', '74.14', '100', '0'), (6908, 'Clemson University', '9', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (6909, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '156', '158', '314', '4.5', '105', 'Amrita School of Engineering', 'Mechanical engineering', '6.42', '10', '0'), (6910, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '161', '141', '302', '3', '107', 'SRKNEC', 'Industrial Engineering', '70.89', '100', '0'), (6911, 'Clemson University', '9', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2009', '780', '440', '1220', '4.5', '103', 'Anna University', 'Computer Science and Engineering', '77', '100', '0'), (6912, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '157', '154', '311', '4', '111', 'Swami Vivekananda Institute of Science and Technology', 'Mechanical Enginnering', '7.8', '10', '0'), (6913, 'Clemson University', '9', 'Admit', 'MS', 'Electronics & Communication', 'Fall ', '2012', '750', '570', '1320', '4', '99', 'GITAM', 'ECE', '8.98', '10', '0'), (6914, 'Clemson University', '9', 'Admit', 'MS', 'Automotive Engineering', 'Fall ', '2015', '167', '150', '317', '4', '104', 'NIT Raipur', 'Mechanical Engineering', '8.89', '10', '0'), (6915, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '520', '1300', '3.5', '114', 'None', 'Computer Science', '76', '100', '0'), (6916, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '167', '160', '327', '4.5', '115', 'Pune University', 'mechanical', '63', '100', '42'), (6917, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '530', '1330', '3', '96', 'Pune University', 'Information technology', '65', '100', '0'), (6918, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '760', '530', '1290', '3', '113', 'Sri Venkateswara College of Engineering', 'Mechanical Engineering', '8.28', '10', '0'), (6919, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '800', '440', '1240', '3.5', '98', 'NIT Bhopal', 'Computer Science & Engg.', '7', '10', '0'), (6920, 'Clemson University', '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '740', '690', '1430', '3.5', '111', 'PSG College of Technology', 'EEE (SW)', '8.3', '10', '0'), (6921, 'Clemson University', '9', 'Admit', 'MS', 'Civil Engineering', 'Spring ', '2014', '150', '147', '297', '3.5', 'None', 'MSRIT', 'civil', '7.9', '10', '0'), (6922, 'Clemson University', '9', 'Admit', 'MS', 'Electrical/ Art & Technology', 'Fall ', '2012', '166', '155', '321', '4', '113', 'University of Pune', 'E&TC;', '58', '100', '0'), (6923, 'Clemson University', '9', 'Admit', 'MS', 'Electrical & Computer Engg/MIS/Industrial/Systems Engg', 'Fall ', '2013', '161', '156', '317', '4.5', '113', 'University of Mumbai', 'Electronics', '73', '100', '0'), (6924, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '780', '470', '1250', '3', '96', 'MITS', 'MECHANICAL', '78', '100', '0'), (6925, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '165', '152', '317', '3.5', '109', 'National Institute of Engineering', 'Mechanical', '8.9', '100', '0'), (6926, 'Clemson University', '9', 'Admit', 'MS', 'Bioresource/Biosystems Engg', 'Fall ', '2012', '800', '550', '1350', '3.5', '110', 'Manipal Institue of Technology', 'Biotechnology', '8.83', '10', '0'), (6927, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '730', '520', '1250', '3', '100', 'Pune University', 'Mechanical', '62', '100', '0'), (6928, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Spring', 'None', '159', '150', '309', '3', '98', 'None', '0', '73', '100', '0'), (6929, 'Clemson University', '9', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2011', '750', '620', '1370', '4', 'None', 'PSG College of Technology', 'Biotechnology', '8.48', '10', '0'), (6930, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '570', '1320', '4', '106', 'K J Somaiya College of Engiineering', 'IT', '0', '0', '0'), (6931, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '164', '157', '321', '4', '100', 'MU', 'mechanical', '76', '100', '0'), (6932, 'Clemson University', '9', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (6933, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '154', '316', '3.5', 'None', 'JNTU', 'Information Technology', '74.11', '100', '0'), (6934, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '780', '380', '1160', '3', '98', 'Vignan Institute of Technology and Science', 'Mechanical Engineering', '78.1', '100', '0'), (6935, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '169', '152', '321', '4', '103', 'IIT Indore', 'Mechanical', '8.43', '10', '12'), (6936, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall', 'None', '163', '160', '323', '3.5', '105', 'Telangana', 'Mechanical', '80', '100', '12'), (6937, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '156', '137', '293', '2.5', '92', 'SRM', 'Mechanical Engineering', '8.391', '10', '0'), (6938, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '156', '148', '304', '4', '109', 'JNTU', 'Mechatronics', '70.58', '100', '0'), (6939, 'Clemson University', '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2010', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (6940, 'Clemson University', '9', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Spring ', '2014', '160', '160', '320', '3.5', '113', 'Fr. Conceicao Rodrigues College of Engineering', 'Electronics Engineering', '67.83', '100', '0'), (6941, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '730', '360', '1090', '3', '92', 'Thiagarajar College of engineering', 'Computer Science Engineering', '7.56', '10', '0'), (6942, 'Clemson University', '9', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '161', '152', '313', '4.5', 'None', 'Amrita School of Engineering', 'Electrical and Electronics', '8.2', '10', '0'), (6943, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '740', '600', '1340', '4', '114', 'Modern College of Engineering', 'Mechanical Engineering', '76', '100', '0'), (6944, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '750', '350', '1100', '3', '90', 'NIT Rourkela', 'Mechanical', '8.36', '10', '0'), (6945, 'Clemson University', '9', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '162', '154', '316', '4.5', '108', 'University of Pune', 'Electronics & Telecommunications', '58', '100', '0'), (6946, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '168', '159', '327', '4', '115', 'NITK Surathkal', 'Mechanical Engg', '7.6', '10', '18'), (6947, 'Clemson University', '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '790', '550', '1340', '4', '101', 'COEP', 'Electrical', '7.48', '10', '0'), (6948, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '167', '167', '334', '5', '116', 'NITK Surathkal', 'Mechanical', '8.2', '10', '21'), (6949, 'Clemson University', '9', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2014', '162', '151', '313', 'None', 'None', 'Malaviya NIT Jaipur', 'Civil Engineering', '7.03', '10', '0'), (6950, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '800', '530', '1330', '3', '102', 'NIT Jamshedpur', 'Mechanical', '6.62', '10', '0'), (6951, 'Clemson University', '9', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2014', '170', '144', '314', '3', '99', 'Andhra University', 'Civil Engineering', '8.24', '10', '0'), (6952, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '730', '570', '1300', '4', 'None', 'Manipal Institue of Technology', 'Mechanical Engineering', '8.46', '10', '0'), (6953, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '160', '165', '325', '3.5', '110', 'NIT Bhopal', 'Mechanical Engg.', '7.53', '10', '0'), (6954, 'Clemson University', '9', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '160', '153', '313', '3', '112', 'Amrita School of Engineering', 'Electronics and communication', '8.19', '10', '24'), (6955, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '785', '360', '1145', '4', '91', 'Anna University', 'Mechanical', '8.3', '10', '0'), (6956, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '710', '500', '1210', '3.5', '96', 'MU', 'Computer Engg.', '57.85', '100', '0'), (6957, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '680', '560', '1240', '3.5', '108', 'Anna University', 'Electrical & Electronics', '80', '100', '0'), (6958, 'Clemson University', '9', 'Admit', 'MS', 'Automotive Engineering', 'Fall ', '2015', '167', '155', '322', '3.5', '111', 'Anna University', 'Mechanical Engineering', '7.9', '10', '32'), (6959, 'Clemson University', '9', 'Admit', 'MS', 'physics', 'Fall ', '2013', '164', '151', '315', '3.5', '112', 'University of Calcutta', 'Physics', '58.83', '100', '0'), (6960, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '160', '148', '308', '3.5', '105', 'Anna University', 'Mechanical Engineering', '6.7', '10', '0'), (6961, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '660', '550', '1210', '3', '92', 'RTM Nagpur University', 'Mechanical Engineering', '66', '100', '0'), (6962, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Spring ', '2014', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (6963, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '710', '330', '1040', '3', '83', 'JNTU', 'Mechnaical Engineering', '75', '100', '0'), (6964, 'Clemson University', '9', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2014', '790', '550', '1340', '3', '102', 'COEP', 'Civil', '7.16', '10', '0'), (6965, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '166', '143', '309', 'None', '91', 'Sri Venkateswara College of Engineering', 'CSE', '80', '100', '0'), (6966, 'Clemson University', '9', 'Admit', 'MS', 'mba', 'Spring ', '2015', '46', '25', '71', '4.5', 'None', 'Anna University', 'Mechanical', '8.87', '10', '0'), (6967, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '790', '570', '1360', '3.5', '110', 'None', '0', '0', '0', '0'), (6968, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '800', '570', '1370', '3.5', '103', 'YCCE', 'Mechanical Engineering', '72.2', '100', '0'), (6969, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2007', '800', '620', '1420', '4', '283', 'NIT Calicut', 'Mechanical Engineering', '8.46', '10', '0'), (6970, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '760', '400', '1160', '3.5', '96', 'Anna University', 'CSE', '8.48', '10', '0'), (6971, 'Clemson University', '9', 'Admit', 'MS', 'CS', 'Fall ', '2012', '800', '500', '1300', '5', '104', 'VTU', 'Electronics', '70', '100', '0'), (6972, 'Clemson University', '9', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2011', '710', '570', '1280', '3.5', '114', 'Goa University', 'E&TC;', '60.01', '100', '0'), (6973, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '159', '148', '307', '3.5', '103', 'VTU', 'mechanical engineering', '77', '100', '0'), (6974, 'Clemson University', '9', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '570', '1370', '4', '114', 'None', 'E.C.E', '70', '100', '0'), (6975, 'Clemson University', '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '660', '1460', '3.5', '104', 'CoE Trivandrum', 'Electronics', '7.25', '10', '0'), (6976, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '740', '740', '1480', '4.5', '116', 'SSN College of Engineering', 'IT', '7.96', '10', '0'), (6977, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '157', '153', '310', '4.5', '100', 'CEG', 'Manufacturing Engineering', '8.4', '10', '0'), (6978, 'Clemson University', '9', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2013', '158', '145', '303', '3.5', '93', 'BVM Engineering College', 'Civil', '8.34', '10', '0'), (6979, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '160', '154', '314', '4', '112', 'R V College of Engineering', 'Industrial Engineering', '8.75', '10', '0'), (6980, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '770', '670', '1440', '3.5', '102', 'UPTU', 'Mechanical Engineering', '65.48', '100', '0'), (6981, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '166', '148', '314', '3', 'None', 'GITAM', 'Mechanical', '7.62', '10', '0'), (6982, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '152', '314', '3.5', '91', 'Jaypee Institute of Information Technology', 'Information Technology', '6.5', '10', '58'), (6983, 'Clemson University', '9', 'Admit', 'MS', 'Computational Engineering', 'Fall ', '2013', '164', '150', '314', '3', '104', 'BITS Goa', 'Mechanical Engineering', '7.17', '10', '0'), (6984, 'Clemson University', '9', 'Admit', 'MS', 'Automotive Engineering', 'Fall ', '2011', '740', '620', '1360', '4', '105', 'Amrita School of Engineering', 'Mechanical', '7.21', '10', '0'), (6985, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '163', '154', '317', '3.5', '108', 'PSG College of Technology', 'Mechanical Engineering', '8.28', '10', '48'), (6986, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '800', '710', '1510', '3.5', '108', 'Amrita School of Engineering', 'Mech', '7.6', '10', '0'), (6987, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '154', '154', '308', 'None', '114', 'SRKNEC Nagpur University', 'Industrial', '66', '100', '0'), (6988, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Spring ', '2015', '165', '157', '322', '3.5', '112', 'JNTU', 'Mechanical(Mechatronics)', '73', '100', '0'), (6989, 'Clemson University', '9', 'Reject', 'MS', 'Electronics Instrumentation and Control', 'Fall ', '2013', '160', '144', '304', '4', '100', 'Anna University', 'Electronics and instrumentation', '8.6', '10', '0'), (6990, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '155', '317', '4', 'None', 'RNSIT', 'CS', '72', '100', '0'), (6991, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '165', '151', '316', '4', '107', 'NIT Hamirpur', 'Mechanical Engineering', '7.42', '10', '6'), (6992, 'Clemson University', '9', 'Reject', 'MS', 'Computer Engineering / Electrical Computer Engineering', 'Fall ', '2015', '162', '152', '314', '3', '104', 'MU', '0', '62', '100', '0'), (6993, 'Clemson University', '9', 'Reject', 'MS', 'Industrial Engineering', 'Spring ', '2013', '161', '145', '306', '3', 'None', 'COEP', 'Production engineerimg', '7.26', '10', '0'), (6994, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '800', '600', '1400', '3', '106', 'Delhi College Of Engineeing', 'Mechanical', '56.3', '100', '0'), (6995, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '770', '480', '1250', '3', '99', 'GRIET', 'CSE', '75.87', '100', '0'), (6996, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '153', '312', '4', '109', 'Amrita School of Engineering', 'Computer Science', '7.69', '10', '0'), (6997, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '166', '148', '314', '4', '106', 'PESIT', 'Telecommunication', '8.07', '10', '0'), (6998, 'Clemson University', '9', 'Reject', 'MS', 'CS', 'Fall ', '2015', '159', '146', '305', '3', '91', 'Pune University', 'Computer Engineering', '61.1', '100', '0'), (6999, 'Clemson University', '9', 'Reject', 'MS', 'electronics', 'Fall ', '2012', '720', '590', '1310', '3', '96', 'MU', 'Electronics', '65', '100', '0'), (7000, 'Clemson University', '9', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2015', '161', '152', '313', '3', '97', 'Pune University', 'electrical engineering', '57.06', '100', '0'), (7001, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '720', '650', '1370', '4', '104', 'Prince Shri Venkateshwara Padmavathy Engineering College', 'EEE', '6.6', '10', '0'), (7002, 'Clemson University', '9', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2013', '151', '150', '301', '3', '99', 'Anna University', 'Mechanical Engineering', '7.62', '10', '0'), (7003, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '162', '151', '313', '3.5', '101', 'VTU', 'Mechanical', '9.2', '10', '0'), (7004, 'Clemson University', '9', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '161', '151', '312', '3', '84', 'Rajiv Gandhi Institute Of Technology', 'Instrumentation engg.', '56', '100', '0'), (7005, 'Clemson University', '9', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '162', '141', '303', '3', '92', 'Sir MVIT', 'Electronics and communication', '67', '100', '16'), (7006, 'Clemson University', '9', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '157', '153', '310', '3.5', '110', 'VTU', 'Mechanical', '62', '100', '0'), (7007, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '157', '142', '299', '3', '86', 'V J T I', 'EE', '7', '10', '0'), (7008, 'Clemson University', '9', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2013', '155', '148', '303', '3', '86', 'Shivaji University', 'civil engineering', '64', '100', '0'), (7009, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '142', '305', '3', '87', 'Dayananda Sagar College of Engineering', 'Electronics and communication', '69', '100', '0'), (7010, 'Clemson University', '9', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '158', '154', '312', '4', '104', 'Bannari Amman Institute Of Technology', 'Electrical and Electronics Engineering', '8.67', '10', '0'), (7011, 'Clemson University', '9', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '162', '154', '316', '3.5', '106', 'RNSIT', 'Electronics & Communication', '71', '100', '0'), (7012, 'Clemson University', '9', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Spring ', '2013', '161', '149', '310', '3', '103', 'University of Pune', 'Electronics and Telecommunication', '67', '100', '0'), (7013, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '790', '470', '1260', '3.5', '105', 'Pune University', 'Electronics and Telecomm.', '56', '100', '0'), (7014, 'Clemson University', '9', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '159', '148', '307', '3.5', '98', 'Fr. Conceicao Rodrigues College of Engineering', 'Electronics', '71.22', '100', '0'), (7015, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '152', '314', '3', '100', 'West Bengal University Of Technology', 'Electronics and Communicatiion Engineering', '7.62', '10', '0'), (7016, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '147', '158', '305', '3.5', '109', 'Anna University', 'Electrical and Electronics', '7.3', '10', '0'), (7017, 'Clemson University', '9', 'Reject', 'MS', 'energy', 'Fall ', '2012', '760', '450', '1210', '3', '104', 'VIT Pune', 'Instrumentation & Control', '8.61', '10', '0'), (7018, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '510', '1310', '4', '100', 'VIT Mumbai University', 'Computer Engg', '57.38', '100', '0'), (7019, 'Clemson University', '9', 'Reject', 'MS', 'Automotive Engineering', 'Fall ', '2014', '165', '162', '327', '3', '114', 'VIT University', 'Mechanical', '8.57', '10', '17'), (7020, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '158', '151', '309', '3', '101', 'PSG College of Technology', 'MECHANICAL ENGINEERING', '8', '10', '0'), (7021, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '167', '148', '315', '3.5', '90', 'COEP', 'Mechanical engineering', '7.45', '10', '30'), (7022, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '710', '560', '1270', '4', '112', 'University of Pune', 'Mechanical Engineering', '59', '100', '0'), (7023, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '150', '313', '3.5', '97', 'Ramdeobaba Kamla Nehru Engg College', 'Electronics', '64.21', '100', '0'), (7024, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '165', '148', '313', '2.5', '97', 'NIT Allahabad', 'Mechanical Engineering', '7.26', '10', '0'), (7025, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '147', '145', '292', '2.5', '90', 'Bharati Vidyapeeth', 'Mechanical', '67.65', '100', '0'), (7026, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '163', '163', '326', '4', '114', 'Anna University', 'Mechanical Engineering', '72', '100', '0'), (7027, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '164', '152', '316', '3', '97', 'BITS Pilani', 'Mechanical', '7.35', '10', '0'), (7028, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '160', '146', '306', '3.5', '107', 'Sir MVIT', 'TELECOMMUNICATION', '82.54', '100', '0'), (7029, 'Clemson University', '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '161', '141', '302', '2.5', 'None', 'Anna University', 'Electronics and Communication engineering', '8.3', '10', '0'), (7030, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '750', '670', '1420', '4', '110', 'Rajiv Gandhi Institute Of Technology', 'Mechanical Engineering', '61.53', '100', '0'), (7031, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '158', '146', '304', '3', '101', 'Thiagarajar College of engineering', 'Mechanical Engineering', '8.84', '10', '0'), (7032, 'Clemson University', '9', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '164', '144', '308', '3', 'None', 'GTU', 'mechanical', '8.76', '10', '0'), (7033, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '530', '1290', '3.5', '101', 'Anna University', 'Electrical & Electronics Engineering', '77', '100', '0'), (7034, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '750', '330', '1080', '2.5', 'None', 'JNTU', 'Information Technology', '72.8', '100', '0'), (7035, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '450', '1230', '3', '107', 'MU', 'Computer Engineering', '58', '100', '0'), (7036, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '169', '150', '319', '3', '99', 'Jadavpur University', 'Electrical Engineering', '7.33', '10', '0'), (7037, 'Clemson University', '9', 'Reject', 'MS', 'Automotive Engineering', 'Fall ', '2015', '164', '151', '315', '3', 'None', 'Amrita School of Engineering', 'Mechanical Engineering', '9.01', '10', '25'), (7038, 'Clemson University', '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '169', '144', '313', '3', '98', 'Amrita School of Engineering', 'ECE', '8.01', '10', '0'), (7039, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '770', '660', '1430', '3', '106', 'MU', 'Mechanical', '59', '100', '0'), (7040, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '166', '162', '328', '3', '103', 'None', 'computer science', '7.68', '10', '0'), (7041, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall', 'None', '161', '149', '310', 'None', '93', 'MVSR', 'ECE', '77', '100', '0'), (7042, 'Clemson University', '9', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2014', '166', '144', '310', '3', '90', 'Manipal Institue of Technology', 'CIVIL', '6.6', '10', '6'), (7043, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '163', '156', '319', '3', '102', 'MU', 'Computer Engineering', '65', '100', '0'), (7044, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical / Industrial Engg.', 'Fall ', '2014', '162', '147', '309', '3', '98', 'RTM Nagpur University', 'mechanical', '61', '100', '0'), (7045, 'Clemson University', '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '165', '143', '308', '3', '96', 'MVSR', 'ECE', '89', '100', '0'), (7046, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Spring ', '2015', '160', '155', '315', '3', '105', 'VTU', 'Mechanical', '7.27', '10', '36'), (7047, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '740', '350', '1090', '3.5', '99', 'VTU', 'ECE', '73', '100', '0'), (7048, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '150', '311', '3', '106', 'SSN College of Engineering', 'EEE', '7.98', '10', '0'), (7049, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '740', '300', '1040', '2.5', '84', 'Sathyabama University', 'electronics and instrumentation', '81', '100', '0'), (7050, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Spring ', '2014', '161', '144', '305', '3', 'None', 'Osmania University', 'production engineering', '75', '100', '0'), (7051, 'Clemson University', '9', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '162', '147', '309', '3', '95', 'University of Pune', 'Electronics and Telecommunication', '62', '100', '12'), (7052, 'Clemson University', '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '158', '153', '311', '4', '114', "St Joseph's College of Engineering", 'ECE', '8.61', '10', '24'), (7053, 'Clemson University', '9', 'Reject', 'MS', 'Automotive Engineering', 'Fall ', '2013', '155', '150', '305', '3', '7', 'Pune University', 'Mechanical', '62', '100', '17'), (7054, 'Clemson University', '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '166', '147', '313', '3', '99', 'SRM', 'ECE', '8.79', '10', '0'), (7055, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '159', '146', '305', '4', '99', 'JNTU', 'CSE', '71.59', '100', '0'), (7056, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '162', '143', '305', '3', '95', 'NIT-Raipur', 'Mechanical', '7.77', '10', '0'), (7057, 'Clemson University', '9', 'Reject', 'MS', 'Telecommunication', 'Spring ', '2012', '790', '420', '1210', '3.5', '106', 'Dharamsinh Desai University', 'EC', '58.5', '100', '0'), (7058, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Spring ', '2015', '160', '147', '307', '3', '92', 'MU', 'Mechanical Engineering', '60', '100', '0'), (7059, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '158', '148', '306', '4', '98', 'K J Somaiya College of Engiineering', 'Computer Engineering', '58', '100', '0'), (7060, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '163', '149', '312', '3.5', '99', 'Amrita Vishwa Vidhyapeetham', 'Mechanical Engineering', '7.28', '10', '0'), (7061, 'Clemson University', '9', 'Reject', 'MS', 'Information Technology', 'Fall ', '2012', '157', '145', '302', '3', '103', 'PTU', 'cse', '80', '100', '0'), (7062, 'Clemson University', '9', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '158', '147', '305', '3', 'None', "St Joseph's College of Engineering", 'Mechanical engineering', '6.74', '10', '12'), (7063, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2009', '790', '500', '1290', '3.5', '113', 'University of Mumbai', 'Electronics Engineering', '66', '100', '0'), (7064, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '157', '147', '304', '3', '92', 'Rajasthan Technical University', 'Computer Science', '68.8', '100', '0'), (7065, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '153', '152', '305', '3', '100', 'None', 'cse', '65', '100', '0'), (7066, 'Clemson University', '9', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '162', '148', '310', '3', 'None', 'VTU', 'Telecommunication', '71', '100', '0'), (7067, 'Clemson University', '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '580', '1380', '3', '103', 'GITAM', 'ECE', '7.3', '10', '0'), (7068, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '420', '1220', '3', '106', 'BNMIT', 'Electronics and Communication', '72', '100', '0'), (7069, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Spring ', '2015', '160', '142', '302', '3', '95', 'VITS', 'mechanical', '71', '100', '0'), (7070, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '147', '309', '3.5', '98', 'VIT University', 'EEE', '8.75', '10', '0'), (7071, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '154', '154', '308', '3.5', '8', 'Anna University', 'Electronics and communication engineering', '68', '100', '0'), (7072, 'Clemson University', '9', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '162', '144', '306', '3', '96', 'Velammal Engineering College', 'production engineering', '8.35', '10', '0'), (7073, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '161', '147', '308', '3', '98', 'Dr. Ambedkar Institute of technology', 'Information Science', '77.67', '100', '0'), (7074, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '166', '153', '319', '3', '103', 'ISM Dhanbad', 'Mechanical engineering', '7.01', '10', '51'), (7075, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '161', '163', '324', '3', '109', 'R V College of Engineering', 'Mechanical Engineering', '67', '100', '0'), (7076, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '730', '490', '1220', '3', '102', 'JNTU', 'CSE', '73', '100', '0'), (7077, 'Clemson University', '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '159', '146', '305', '3.5', '98', 'Rajiv Gandhi Technical University', 'Electronics and Communication Engineering', '69.41', '100', '0'), (7078, 'Clemson University', '9', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '153', '149', '302', '2.5', '94', 'RGPV', 'Mechanical', '6.29', '10', '0'), (7079, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '155', '317', '4', '113', 'Anna University', 'EEE', '9', '10', '0'), (7080, 'Clemson University', '9', 'Reject', 'MS', 'Electronic and Telecommunication Engineering', 'Fall ', '2012', '160', '148', '308', '3.5', '105', 'VTU', 'Telecommunication', '61', '100', '0'), (7081, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '790', '550', '1340', '3.5', '106', 'MIT Pune Univ', 'Electronics & TeleCommunication Engg', '58', '100', '0'), (7082, 'Clemson University', '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2007', '770', '570', '1340', '4.5', '107', 'None', 'Electronics and Telecommunication', '61', '100', '0'), (7083, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '156', '150', '306', '3.5', '113', 'VTU', 'Computer Science and Engineering', '74.21', '100', '0'), (7084, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '158', '155', '313', '3', '106', 'MU', 'Electronics and Telecommunication', '63', '100', '0'), (7085, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '162', '324', '4.5', '117', 'Sri Venkateswara College of Engineering', 'Electronics and Communication', '7.04', '10', '0'), (7086, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '145', '306', '3', '103', 'B V Bhoomaraddi College of Engg & Tech (Affiliated to VTU)', 'Information Science and Engineering', '7.39', '10', '26'), (7087, 'Clemson University', '9', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '780', '360', '1140', '3', '99', 'MU', 'Electronics', '70', '100', '0'), (7088, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '750', '300', '1050', '3', '82', 'KLESCET', 'Electronics and Communication', '68.82', '100', '0'), (7089, 'Clemson University', '9', 'Reject', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (7090, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '720', '550', '1270', '2.5', '95', 'Sri Sairam Engineering College', 'Computer Science and Engineering', '69', '100', '0'), (7091, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '730', '390', '1120', '3', '101', 'Anna University', 'mechanical', '7.87', '10', '0'), (7092, 'Clemson University', '9', 'Reject', 'MS', 'MIS', 'Spring ', '2012', '780', '520', '1300', '3', '100', 'DA-IICT', 'ICT - Information and Communication Technology', '6.4', '10', '0'), (7093, 'Clemson University', '9', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '159', '150', '309', '3', '101', 'Sinhgad College of Engineering', 'Computer Engg', '63.93', '100', '0'), (7094, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '167', '143', '310', '3', '80', 'SRM', 'Aerospace', '9.3', '10', '0'), (7095, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical / Industrial Engg.', 'Fall ', '2014', '162', '150', '312', '3.5', '94', 'Datta Meghe College of Engineering', 'mechanical', '64.33', '100', '0'), (7096, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '158', '146', '304', 'None', '103', 'Pune University', 'Mechanical', '73.33', '100', '0'), (7097, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2', '780', '460', '1240', '3.5', 'None', 'Sri Venkateswara College of Engineering', 'CSE', '7.88', '10', '0'), (7098, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '158', '149', '307', '3.5', '7', 'JNTU', 'mechanical', '64', '100', '0'), (7099, 'Clemson University', '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '1510', 'None', '1510', 'None', '116', 'SRM', 'TCE', '8.2', '10', '0'), (7100, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '162', '152', '314', '3', '98', 'SASTRA', 'ECE', '8.37', '10', '0'), (7101, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '330', '1090', '3.5', '106', 'CUSAT', 'ECE', '3.14', '4', '0'), (7102, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '163', '145', '308', '3', '96', 'UPTU', 'Mechanical', '67.22', '100', '48'), (7103, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '162', '139', '301', '3.5', '88', 'VTU', 'Info Science', '66.8', '100', '0'), (7104, 'Clemson University', '9', 'Reject', 'MS', 'Electronics & Communication', 'Fall ', '2012', '730', '610', '1340', '3.5', '93', 'VTU', 'Electronics and Communication', '77.2', '100', '0'), (7105, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', 'None', 'None', '0', '3.5', '108', 'MU', 'Mechanical Engineering', '66', '100', '8'), (7106, 'Clemson University', '9', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2010', '790', '560', '1350', '3.5', '107', 'None', '0', '0', '0', '0'), (7107, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '580', '1380', '3.5', '106', 'MU', 'electronics and telecommunications', '56', '100', '0'), (7108, 'Clemson University', '9', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2007', '800', '550', '1350', '4.5', '283', 'MU', 'Electronics', '55', '100', '0'), (7109, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '720', '450', '1170', '3', '97', 'MU', 'Mechanical', '56', '100', '0'), (7110, 'Clemson University', '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '700', '480', '1180', '4.5', '103', 'VTU', 'Telecommunciation', '63', '100', '0'), (7111, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '161', '145', '306', '3', '104', 'University institute of engineering and technology panjab university chandigarh', 'electrical and electronics engineering', '62', '100', '0'), (7112, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2010', '780', '450', '1230', '3.5', '96', 'Panimalar Engineering College', 'ELECTRONICS AND COMMUNICATION', '75', '100', '0'), (7113, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '143', '305', '4', '106', 'GITAM', 'ECE', '7.57', '10', '0'), (7114, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '155', '149', '304', '3', '85', 'MU', 'Electrical Engineering', '57', '100', '0'), (7115, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '156', '146', '302', '3.5', '87', "The People\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'s University of Bangladesh", 'Electronics and Telecommunication engineering', '3.47', '4', '0'), (7116, 'Clemson University', '9', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2014', '158', '145', '303', '2.5', 'None', 'RITS', 'CIVIL', '77.8', '100', '12'), (7117, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2015', '162', '155', '317', '4', '113', 'M.G. University', 'ECE', '7.52', '10', '0'), (7118, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '161', '162', '323', '4', '110', 'VTU', 'Electronics and Communication', '62.95', '100', '0'), (7119, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '162', '149', '311', '4', '101', 'MU', 'Instrumentation', '62.5', '100', '0'), (7120, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '720', '370', '1090', '3', 'None', 'SVCE', 'Electrical Engineering', '8.1', '10', '0'), (7121, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '730', '620', '1350', '4', '111', 'Bangalore Institute of Technology', 'Electronics and Communication', '58.5', '100', '0'), (7122, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '620', '1420', '3', '97', 'MU', 'Electronics & Telecommunications', '60.7', '100', '0'), (7123, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '151', '313', '4', '105', 'University of Pune', 'Electronics & Telecommunication', '68.8', '100', '0'), (7124, 'Clemson University', '9', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '160', '141', '301', '3', '90', 'Anna University', 'ECE', '80', '100', '0'), (7125, 'Clemson University', '9', 'Reject', 'MS', 'environmental engineering', 'Fall ', '2012', '154', '154', '308', '3', '97', 'Guru Nanak Dev University Amritsar', 'Civil Engineering', '77.4', '100', '0'), (7126, 'Clemson University', '9', 'Reject', 'MS', 'Biomedical Engineering', 'Fall ', '2012', '710', '640', '1350', '4', '111', 'VIT Pune', 'Electronics', '6.62', '10', '0'), (7127, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '159', '152', '311', '4', '115', 'MU', 'Mechanical', '55', '100', '0'), (7128, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '149', '311', '3', '102', 'CBIT', 'CSE', '80', '100', '0'), (7129, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '400', '1200', '2.5', '102', 'K J Somaiya College of Engiineering', 'Electronics', '62', '100', '0'), (7130, 'Clemson University', '9', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2009', '780', '480', '1260', '4', '106', 'MIT Pune', 'Mechanical Engineering', '55', '100', '0'), (7131, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2013', '710', '460', '1170', '3', '105', 'VTU', 'E & C', '60', '100', '0'), (7132, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '159', '149', '308', '3.5', '99', 'SSN College of Engineering', 'ECE', '77', '100', '0'), (7133, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '560', '1360', '3.5', '108', 'RAIT', 'Computer', '58', '100', '0'), (7134, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '170', '151', '321', '3.5', '102', 'JNTU', 'EEE', '73', '100', '0'), (7135, 'Clemson University', '9', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2011', '800', '420', '1220', '3', '99', 'JNTU', 'ECE', '71', '100', '0'), (7136, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Spring ', '2014', '309', '151', '460', '158', '108', 'MU', 'Mechanical', '74', '100', '0'), (7137, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2012', '730', '500', '1230', '3', '91', 'B.V.Bhoomraddi College', 'Electrical & Electronics', '8.26', '10', '0'), (7138, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '440', '1220', '3', '96', 'Sreenidhi Institute of Science & Technology', 'Electronics & Communications', '79.6', '100', '0'), (7139, 'Clemson University', '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '161', '151', '312', '4', '109', 'PESIT', 'Telecommunication', '8.46', '10', '0'), (7140, 'Clemson University', '9', 'Reject', 'MS', 'Materials Science & Engineering', 'Fall ', '2014', '158', '154', '312', '2.5', '107', 'NIT Rourkela', 'Ceramic Engineering', '6.8', '10', '33'), (7141, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '155', '145', '300', '3', '90', 'JNTU', 'mechanical', '72', '100', '0'), (7142, 'Clemson University', '9', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '760', '340', '1100', '3.5', 'None', 'BMSCE', 'Instrumentation Technology', '61.5', '100', '0'), (7143, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '156', '145', '301', '3', '102', 'Andhra University', 'CS&SE;', '8.28', '10', '0'), (7144, 'Clemson University', '9', 'Reject', 'MS', 'Aerospace Engineering', 'Spring ', '2013', '161', '144', '305', '3', '7', 'Pune University', 'Mech', '54', '100', '0'), (7145, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2014', '160', '151', '311', '2.5', '0', 'VR Siddhartha Engineering College Vijayawada', 'Electronics & Instrumentation', '85.3', '100', '0'), (7146, 'Clemson University', '9', 'Reject', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2011', '800', '520', '1320', '2.5', '90', 'DA-IICT', 'ICT', '7.5', '10', '0'), (7147, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '790', '340', '1130', '3', '94', 'R V College of Engineering', 'Mechanical Engineering', '8.59', '10', '0'), (7148, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '159', '153', '312', '4', 'None', 'K J Somaiya College of Engiineering', 'Computers', '62', '100', '65'), (7149, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '159', '148', '307', '3', '89', 'University of Pune', 'Mechanical Engineering', '57', '100', '0'), (7150, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '159', '154', '313', '4', '103', 'Pune University', 'Information technology', '57.58', '100', '44'), (7151, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '165', '150', '315', '3.5', '106', 'JNTU', 'Electronics & Communication Engineering', '76', '100', '0'), (7152, 'Clemson University', '9', 'Reject', 'MS', 'Civil Engineering', 'Spring ', '2013', '153', '144', '297', '2.5', '83', 'Walchand College Of Engineering', 'civil engineering', '67', '100', '0'), (7153, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2013', '800', '450', '1250', '3', '108', 'Sardar Vallabhbhai National Institute of Technology', 'Electronics and communication', '8.27', '10', '0'), (7154, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '164', '155', '319', '4', '111', 'Thapar University', 'Mechanical Department', '8', '10', '0'), (7155, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '163', '147', '310', '3.5', '92', 'RUET', 'EEE', '3.87', '4', '0'), (7156, 'Clemson University', '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '800', '360', '1160', '3', '103', 'MU', 'Electronics and Communicatiion', '71.28', '100', '0'), (7157, 'Clemson University', '9', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '157', '149', '306', '3.5', '94', 'Velammal Engineering College', 'Production Engineering', '7.9', '10', '2'), (7158, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '790', '400', '1190', '2.5', '94', 'Anna University', 'Electrical and Electronic enginnering', '9.01', '10', '0'), (7159, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '590', '1340', '3', '112', 'YCCE', 'Electronics', '67', '100', '0'), (7160, 'Clemson University', '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '161', '150', '311', '3', '104', 'University of Pune', 'electronics and telecommunication', '64', '100', '0'), (7161, 'Clemson University', '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '156', '145', '301', '2.5', '86', 'None', 'electronics and communication', '76', '100', '0'), (7162, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2014', '168', '152', '320', '3.5', 'None', 'mharana pratap college of technology gwalior', 'Electrical', '74.8', '100', '0'), (7163, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '800', '610', '1410', '4.5', '108', 'MU', 'Mechanical', '60', '100', '0'), (7164, 'Clemson University', '9', 'Reject', 'MS', 'Electrical & Computer Engg/MIS/Industrial/Systems Engg', 'Fall ', '2014', '156', '147', '303', '4', '104', 'Anna University', 'EEE', '80.25', '100', '29'), (7165, 'Clemson University', '9', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '160', '149', '309', '3.5', '106', 'University of Pune', 'Mechanical Engineering (Sandwich Pattern) - involving 2 semesters industrial internship as part of the curriculum', '60.45', '100', '18'), (7166, 'Clemson University', '9', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '161', '147', '308', '3', '80', 'JNTU', 'ELECTRONICS AND COMMUNICATION ENGINEERING', '61.74', '100', '0'), (7167, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '156', '162', '318', '3.5', '113', 'VJTI', 'Mechanical', '7.4', '10', '0'), (7168, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '580', '1380', '3', '92', 'None', '0', '0', '0', '0'), (7169, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2013', '164', '148', '312', '3', '109', 'GITAM', 'ECE', '8.3', '10', '0'), (7170, 'Clemson University', '9', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2014', '162', '151', '313', '3', '101', 'Amrita Vishwa Vidhyapeetham', 'Electronics and Instrumentation Engineering', '7.48', '10', '43'), (7171, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '147', '306', '2.5', '107', 'MIT Pune', 'Computer Engineering', '60', '100', '0'), (7172, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '165', '148', '313', '3', '89', 'Sreenidhi Institute of Science & Technology', 'ECE', '82', '100', '0'), (7173, 'Clemson University', '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '165', '148', '313', '3', '89', 'Sreenidhi Institute of Science & Technology', 'ECE', '82', '100', '0'), (7174, 'Clemson University', '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '500', '1290', '2.5', '106', 'Amrita School of Engineering', 'ECE', '6.68', '10', '0'), (7175, 'Clemson University', '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '166', '152', '318', '4', '108', 'Govt. Engineering College Thrissur Calicut University', 'Electronics and Communication', '77.1', '100', '0'), (7176, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2013', '166', '152', '318', '3', '100', 'VESIT', 'Instrumentation', '65', '100', '0'), (7177, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '159', '150', '309', '3', '91', 'JNTU', 'computer science', '75', '100', '0'), (7178, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '159', '144', '303', '3', '96', 'Symbiosis Institute of Technology', 'Mechanical', '2.984', '4', '0'), (7179, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '780', '500', '1280', '4', '100', 'Maharaja Agrasen Institute Of Technology', 'Electronics and communication', '74', '100', '0'), (7180, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '570', '1350', '3', '110', 'NIT Karnataka', 'information Technology', '7.82', '10', '0'), (7181, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '770', '490', '1260', '3.5', '95', 'RNSIT', 'Electronics and Comm', '77', '100', '0'), (7182, 'Clemson University', '9', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '155', '137', '292', '2.5', 'None', 'Khulna University of Engineering and Technology', 'Electrical & Electronic Engineering', '3', '4', '0'), (7183, 'Clemson University', '9', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2013', '159', '151', '310', '3', '109', 'MU', 'Electronics and telecom', '64.5', '100', '0'), (7184, 'Clemson University', '9', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '161', '146', '307', '3', '99', 'COEP', 'Instrumentation & Control', '7.57', '10', '20'), (7185, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '156', '149', '305', '3', 'None', 'Vasavi College of Engineering', 'Mechanical', '75.73', '100', '0'), (7186, 'Clemson University', '9', 'Reject', 'MS', 'Robotics', 'Fall ', '2012', '740', '480', '1220', '3', '92', 'Rajarambapu Institute of Technolog)y ( shivaji University', 'Electronics and Telecommunication', '70', '100', '0'), (7187, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '151', '313', '3.5', '98', 'DMCE University of Mumbai', 'Electronics', '57', '100', '0'), (7188, 'Clemson University', '9', 'Reject', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (7189, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '730', '450', '1180', '3', '105', 'Sri Sairam Engineering College', 'Electronics and communication', '84', '100', '0'), (7190, 'Clemson University', '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '760', '520', '1280', '4', '104', 'Amrita School of Engineering', 'ece', '8.02', '10', '0'), (7191, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '158', '149', '307', '2', '90', 'VIT Pune', 'Electronics', '63.45', '100', '0'), (7192, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '159', '157', '316', '4.5', '110', 'Pune University', 'Mechanical Engineering', '57', '100', '0'), (7193, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '162', '155', '317', '4', 'None', 'JNTU', 'Mech Engg', '78', '100', '0'), (7194, 'Clemson University', '9', 'Reject', 'MS', 'CS/SE', 'Fall ', '2013', '154', '153', '307', '3.5', '101', 'VTU', 'Electronics & Communication', '64.7', '100', '0'), (7195, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '156', '153', '309', '3', '104', 'Babu Banarasi Das NIT and Management Lucknow. UPTU', 'Mechanical Engineering', '73.22', '100', '0'), (7196, 'Clemson University', '9', 'Reject', 'MS', 'Embedded systems', 'Fall ', '2015', '158', '151', '309', '3', '93', 'Pune University', 'E& TC', '67', '100', '24'), (7197, 'Clemson University', '9', 'Reject', 'MS', 'Chemical Engineering', 'Fall ', '2012', '760', '530', '1290', '3', '95', 'Sri Venkateswara College of Engineering', 'chemical engineering', '7.8', '10', '0'), (7198, 'Clemson University', '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '164', '144', '308', '3.5', '99', 'VTU', 'Electronics and communication', '82.5', '100', '0'), (7199, 'Clemson University', '9', 'Reject', 'MS', 'Applied Mathematics', 'Fall ', '2013', '163', '146', '309', '3', '98', 'Burdwan University', 'Mathematics', '61', '100', '0'), (7200, 'Clemson University', '9', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2012', '710', '490', '1200', '4', '111', 'Osmania University', '0', '73', '100', '0'), (7201, 'Clemson University', '9', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '156', '152', '308', '3', '105', 'DSCE', 'Automobile', '66', '100', '0'), (7202, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '790', '530', '1320', '3', '105', 'Pune University', 'Mech', '61.54', '100', '0'), (7203, 'Clemson University', '9', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2015', '161', '150', '311', '4', '116', 'University of Mumbai', 'Electronics and Telecommunication', '60.51', '100', '0'), (7204, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '149', '313', '3', '93', 'Gayatri College of Engineering', 'Computer Science Engineering', '74.73', '100', '0'), (7205, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '400', '1150', '4', '103', 'MU', 'Computer Engg Dept', '64', '100', '0'), (7206, 'Clemson University', '9', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '168', '149', '317', '3.5', '95', 'Nagpur University', 'Electronics Telecommunication', '72', '100', '0'), (7207, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '143', '304', '3', '85', 'MU', 'Information Technology', '58', '100', '0'), (7208, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '165', '147', '312', '4', '105', 'GITAM', 'Electrical & Electronics', '7.7', '10', '0'), (7209, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2007', '800', '450', '1250', '4.5', '277', 'J. B. Insititute of Engg & Tech./ aff. to JNTU', 'ECE', '70', '100', '0'), (7210, 'Clemson University', '9', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2015', '151', '151', '302', '3.5', '93', 'VIT University', 'Civil Engineering', '7.64', '10', '0'), (7211, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '158', '149', '307', '3', '102', 'Gujarat Technological University', 'Mechatronics', '7.86', '10', '0'), (7212, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '163', '146', '309', '3', '7', 'SASTRA', 'Mechanical', '8.95', '10', '0'), (7213, 'Clemson University', '9', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '167', '156', '323', '3', '107', 'NIT Allahabad', 'Electrical', '7.04', '10', '50'), (7214, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '161', '151', '312', '3', '7', 'NIT Hamirpur', 'Mechanical', '8.26', '10', '24'), (7215, 'Clemson University', '9', 'Reject', 'MS', 'Electronics and Communication', 'Spring ', '2014', '158', '160', '318', '4.5', '110', 'Anna University', 'ECE', '83', '100', '0'), (7216, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '158', '144', '302', '3', '97', 'Valliammai Engineering College', 'Computer Science and Engineering', '81.4', '100', '0'), (7217, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '156', '143', '299', '3.5', '93', 'Yeshwantrao Chavan College of Engineering', 'Mechanical Engineering', '64.8', '100', '0'), (7218, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '158', '157', '315', '3', '107', 'RTM Nagpur University', 'MECHANICAL ENGG', '62', '100', '0'), (7219, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '750', '510', '1260', '3', '104', 'SNIST', 'electronics and computers', '71', '100', '0'), (7220, 'Clemson University', '9', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2014', '154', '146', '300', '3', '89', 'Bangalore Institute of Technology', 'Telecommunication (VTU)', '78', '100', '33'), (7221, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '167', '152', '319', '3', '98', 'NIT Warangal', 'Mechanical Engineering', '8.16', '10', '18'), (7222, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '162', '142', '304', '3', 'None', 'Pune University', 'Mechanical', '62', '100', '0'), (7223, 'Clemson University', '9', 'Reject', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Spring ', '2012', '800', '560', '1360', '3', '111', 'MNNIT', 'IT', '7.55', '10', '0'), (7224, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '159', '150', '309', '3', '104', 'MU', 'Computer', '71.2', '100', '0'), (7225, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '170', '162', '332', 'None', '116', 'Dhirubhai Ambani Institute of Information & Communication Technology', 'ICT', '7.32', '10', '0'), (7226, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '770', '460', '1230', '3', 'None', 'WBUT', 'electrical', '8.25', '10', '0'), (7227, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Spring ', '2014', '800', '690', '1490', '3', '111', 'MU', 'Mechanical Engineering', '52', '100', '0'), (7228, 'Clemson University', '9', 'Reject', 'MS', 'EE / CE / CS', 'Fall ', '2014', '780', '530', '1310', '3.5', '100', 'VIT', 'ECE', '8.11', '10', '22'), (7229, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '1350', '560', '1910', '790', '105', 'MGMCET Mumbai University', 'Computer Engineering', '58', '100', '0'), (7230, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '13', '165', '144', '309', '3', '97', 'Rajiv Gandhi Institute Of Technology', 'Mechanical', '71', '100', '0'), (7231, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '164', '152', '316', '3.5', '110', 'K J Somaiya College of Engiineering', 'ELECTRONICS', '75', '100', '0'), (7232, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '156', '141', '297', '2.5', '89', 'VTU', 'Mechanical Engineering', '63.5', '100', '0'), (7233, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '166', '144', '310', '3.5', '95', 'Kurukshetra University', 'Mechanical Engineering', '71.18', '100', '0'), (7234, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '159', '159', '318', '3.5', '106', 'Goa University', 'Information Technology', '64', '100', '36'), (7235, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '160', '154', '314', '3.5', '107', 'MU', 'mechanical engineering', '57', '100', '0'), (7236, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '167', '145', '312', '3.5', '100', 'Bhilai Institute of Technology', 'Information Technology', '8.41', '10', '0'), (7237, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '153', '149', '302', '3.5', 'None', 'VTU', 'Mechanical Engineering', '8.9', '10', '0'), (7238, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '151', '140', '291', '3', '87', 'RAIT', 'IT', '57', '100', '0'), (7239, 'Clemson University', '9', 'Reject', 'MS', 'Automotive Engineering', 'Fall ', '2014', '161', '148', '309', '3', '101', 'VTU', 'Mechanical', '75.3', '100', '16'), (7240, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2010', '650', '450', '1100', '3.5', '92', 'University of Calicut', 'ECE', '66', '100', '0'), (7241, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '690', '450', '1140', '3', '102', 'Anna University', 'ece', '7.9', '10', '0'), (7242, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '161', '156', '317', '3.5', '108', 'University of Pune', 'Mechanical engineering', '67.3', '100', '0'), (7243, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Spring ', '2013', '790', '360', '1150', '3.5', '106', 'NIT Tirchy', 'Mechanical Engineering', '7.49', '10', '0'), (7244, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '158', '147', '305', '3', '96', 'MU', 'computer engg', '61', '100', '0'), (7245, 'Clemson University', '9', 'Reject', 'MS', 'Instrumentation and Control', 'Spring ', '2016', '157', '149', '306', '3', '88', "St Joseph's College of Engineering", 'Electronics and instrumentation engineering', '7.5', '10', '0'), (7246, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '159', '149', '308', '3', '97', 'BITS Goa', 'Mechanical', '7', '10', '0'), (7247, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', 'None', 'None', '0', '3', '84', 'None', 'Electronics and Communication', '70', '100', '0'), (7248, 'Clemson University', '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '740', '350', '1090', '3', '103', 'Sir MVIT', 'E&C;', '78', '100', '0'), (7249, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '159', '143', '302', '3.5', '100', 'Dr. Pauls Engineering College (Anna University)', 'Mechanical Engineering', '7.2', '10', '0'), (7250, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Spring ', '2014', '163', '149', '312', '4.5', '105', 'Kurukshetra University', 'Mechanical Engineering', '71.2', '100', '0'), (7251, 'Clemson University', '9', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2011', '780', '480', '1260', '3.5', '103', 'MU', 'EXTC', '55', '100', '0'), (7252, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '400', '1150', '2.5', '93', 'JNTU', 'CSE', '75', '100', '0'), (7253, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '152', '313', '3', '98', 'None', '0', '0', '0', '0'), (7254, 'Clemson University', '9', 'Reject', 'MS', 'Automotive Engineering', 'Fall ', '2015', '163', '153', '316', '3.5', 'None', 'PSG College of Technology', 'Automobile Engineering', '8.51', '10', '51'), (7255, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '148', '309', '4', '106', 'University Vishweriah College of Engineering', 'Electronics and Communication', '68.08', '100', '0'), (7256, 'Clemson University', '9', 'Reject', 'MS', 'Electronics and Communication', 'Spring ', '2013', '160', '150', '310', '3', '96', 'SJBIT', 'ECE', '71', '100', '0'), (7257, 'Clemson University', '9', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2014', '163', '145', '308', '3', '87', 'Amrita School of Engineering', 'ECE', '8.48', '10', '24'), (7258, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '780', '480', '1260', '3.5', '105', 'MU', 'Mechanical', '60.8', '100', '0'), (7259, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '149', '314', '3', '112', 'UPTU', 'CSE', '73.78', '100', '0'), (7260, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '780', '420', '1200', '3.5', '94', 'Pune University', 'mechanical engineering', '61', '100', '0'), (7261, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '167', '147', '314', '2', '95', 'GITAM', 'Computer Science', '8.15', '10', '0'), (7262, 'Clemson University', '9', 'Reject', 'MS', 'Biological Sciences Biotechnology ', 'Fall ', '2014', '164', '155', '319', '4', '107', 'BITS Goa', 'Biological Sciences Electronics & Instrumentation', '7.14', '10', '0'), (7263, 'Clemson University', '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '156', '157', '313', '3.5', '104', "St Joseph's College of Engineering", 'ECE', '8.5', '10', '0'), (7264, 'Clemson University', '9', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '163', '145', '308', '3', '99', 'Anna University', 'Mechanical Engineering', '9.25', '10', '0'), (7265, 'Clemson University', '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '146', '161', '307', '3', '86', 'JNTU', 'ECE', '81.5', '100', '0'), (7266, 'Clemson University', '9', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '161', '146', '307', '3.5', '102', 'Dr D Y Patil School of Engineering', 'Mechanical Engineering', '60.4', '100', '0'), (7267, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '780', '530', '1310', '4.5', '114', 'K J Somaiya College of Engiineering', 'Mechanical', '56', '100', '0'), (7268, 'Clemson University', '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '158', '150', '308', '3', 'None', 'JNTU', 'ece', '80.5', '100', '0'), (7269, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Spring ', '2016', '167', '156', '323', '3.5', '104', 'SGSITS', 'IT', '6.58', '10', '0'), (7270, 'Clemson University', '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '300', '1080', '3', '90', 'Sir MVIT', 'Electronics and communication', '72', '100', '0'), (7271, 'Clemson University', '9', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '152', '144', '296', '3', '90', 'Institute of Engineering & Technology DAVV', 'Electronics & Instrumentation', '70.56', '100', '0'), (7272, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '750', '580', '1330', '3.5', '106', 'VTU', 'Instrumentation Tech', '61', '100', '0'), (7273, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '156', '151', '307', '4', '100', 'Pondicherry University', 'Electronics and Instrumentation', '8.2', '10', '0'), (7274, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2009', '770', '330', '1100', '3', '96', 'S.P.University V.V.Nagar Gujarat', 'Mechanical', '6.7', '10', '0'), (7275, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '159', '144', '303', '3.5', '104', 'Osmania University', 'Mechanical', '83', '100', '0'), (7276, 'Clemson University', '9', 'Reject', 'MS', 'Materials Science & Engineering', 'Fall ', '2013', '157', '142', '299', '3', '92', 'PSG College of Technology', 'Metallurgical Engineering', '7', '10', '0'), (7277, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '790', '440', '1230', '3', '93', 'SRKR Engineering College', 'CSE', '82', '100', '0'), (7278, 'Clemson University', '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '780', '640', '1420', '3', '107', 'Pune University', 'Electronics & Telecomm', '79.4', '100', '0'), (7279, 'Clemson University', '9', 'Reject', 'MS', 'MIS', 'Spring ', '2014', '159', '147', '306', '3', '92', 'None', 'Information Technology', '73', '100', '0'), (7280, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2012', '730', '410', '1140', '3', '109', 'Guru Jambheshwar University of Science & Technology', 'ECE', '8.67', '10', '0'), (7281, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '730', '540', '1270', '3', '100', 'MVGR', 'ECE', '73', '100', '0'), (7282, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '710', '430', '1140', '2.5', '89', 'Anna University', 'MECHANICAL', '7.84', '10', '0'), (7283, 'Clemson University', '9', 'Reject', 'MS', 'Electrical and Electronics', 'Fall ', '2014', '166', '145', '311', '3', 'None', 'VIT University', 'ECE', '8.27', '10', '0'), (7284, 'Clemson University', '9', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '630', '330', '960', '3', '89', 'Sri Krishna College Of Engineering And Technology', 'Mechatronics', '8.3', '10', '0'), (7285, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '159', '144', '303', '3.5', '90', 'Coimbatore Insitute of Technology', 'Information Technology', '8.29', '10', '0'), (7286, 'Clemson University', '9', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '162', '149', '311', '3', '102', 'VJTI', 'Production Engineering', '7.6', '10', '0'), (7287, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '167', '154', '321', '3', '110', 'Amity School of Engineering and Technology', 'Instrumentation & Control Engineering', '66', '100', '0'), (7288, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '144', '308', '3', '88', 'GITAM', 'Electronics(ECE)', '8.01', '10', '0'), (7289, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '760', '520', '1280', '3.5', '113', 'JNTU', 'Computer Science', '67', '100', '0'), (7290, 'Clemson University', '9', 'Reject', 'MS', 'Chemical Engineering', 'Spring ', '2012', '780', '550', '1330', '3', '98', 'Visvesvaraya NIT Nagpur', 'Chemical Engineering', '8.24', '10', '0'), (7291, 'Clemson University', '9', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '165', '154', '319', '3', '101', 'NIT Calicut', 'Electronics and communication engineering', '7.07', '10', '0'), (7292, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '680', '510', '1190', '3', '83', 'Sri Sairam Engineering College', 'Mechanical', '72', '100', '0'), (7293, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '680', '510', '1190', '3', '83', 'Sri Sairam Engineering College', 'Mechanical Engineering', '72', '100', '0'), (7294, 'Clemson University', '9', 'Reject', 'MS', 'Biomedical Engineering', 'Fall ', '2006', '780', '550', '1330', '3.5', '273', 'Sathyabama University', 'Electronics & Communication', '85', '100', '0'), (7295, 'Clemson University', '9', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2013', '159', '145', '304', '3', '82', 'MU', 'Instrumentation Engineering', '53', '100', '0'), (7296, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '740', '410', '1150', '3.5', '94', 'MU', 'MECHANICAL', '56', '100', '0'), (7297, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', 'None', 'None', '0', 'None', 'None', 'None', 'EEE', '8.3', '10', '0'), (7298, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '314', '152', '466', '3', '88', 'VIT Pune', 'Mech', '8.23', '10', '0'), (7299, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Spring ', '2012', '770', '510', '1280', '3.5', '98', 'PVG COET Pune', 'Mechanical Engineering', '58.35', '100', '0'), (7300, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '156', '145', '301', '4', '90', 'University of Mumbai', 'Electrical Engineering', '62', '100', '0'), (7301, 'Clemson University', '9', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '760', '300', '1060', '3', '92', 'RNSIT', 'Electronics and Communication', '68', '100', '0'), (7302, 'Clemson University', '9', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '750', '380', '1130', '3.5', '94', 'MU', 'Electronics', '65', '100', '0'), (7303, 'Clemson University', '9', 'Reject', 'MS', 'Electrical and Electronics', 'Fall ', '2014', '156', '150', '306', '3.5', '100', 'COEP', 'M.Tech Mechatronics', '7.71', '10', '0'), (7304, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '160', '142', '302', '3', 'None', 'GITAM', 'Electronics and Communications', '8.8', '10', '0'), (7305, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Spring ', '2014', '158', '156', '314', '3', 'None', 'Govt. Rajiv Gandhi Institute of Technology', 'Mechanical Engineering', '74.8', '100', '0'), (7306, 'Clemson University', '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '750', '390', '1140', '3', '106', 'Osmania University', 'ECE', '75', '100', '0'), (7307, 'Clemson University', '9', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '157', '150', '307', '4', '109', 'K J Somaiya College of Engiineering', 'Electronics', '55.4', '100', '30'), (7308, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '161', '144', '305', '3', '89', 'MU', 'Mechanical', '65.66', '100', '24'), (7309, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '162', '154', '316', '3.5', '110', 'MU', 'Mechanical', '73', '100', '0'), (7310, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '148', '315', '3', '99', 'COEP', 'Instrumentation and Control', '8.2', '10', '0'), (7311, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '167', '152', '319', 'None', '99', 'IIIT Allahabad', 'Information Technology', '7.08', '10', '0'), (7312, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '149', '311', '3.5', '104', 'MU', 'Electronics and Telecommunication', '65', '100', '0'), (7313, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Spring ', '2016', '162', '142', '304', '3', '91', 'Pune University', 'Mechanical', '68.7', '100', '32'), (7314, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2008', '800', '540', '1340', '3', '87', 'RAIT', 'Electronics and Telecom', '69.3', '100', '0'), (7315, 'Clemson University', '9', 'Reject', 'MS', 'Embedded systems', 'Fall ', '2012', '157', '156', '313', '4', '116', 'SASTRA', 'electronics&communications;', '7', '10', '0'), (7316, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '155', '146', '301', '3.5', 'None', 'VTU', 'Information Science', '70.5', '100', '0'), (7317, 'Clemson University', '9', 'Reject', 'MS', 'Biotechnology/bio-engineering', 'Fall ', '2011', '680', '520', '1200', '3', '106', 'C.I.T.M. Faridabad affiliated to M.D. University Rohtak', 'Biotechnology', '73', '100', '0'), (7318, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Spring ', '2013', '170', '153', '323', '3', '104', 'BITS Goa', 'Mechanical', '6', '10', '0'), (7319, 'Clemson University', '9', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '720', '400', '1120', '3', '97', 'Anna University', 'BE CSE', '80', '100', '0'), (7320, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '158', '152', '310', '3', '114', 'MG University', 'mechanical engineering', '69', '100', '0'), (7321, 'Clemson University', '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '750', '400', '1150', '3', '92', 'Coimbatore Insitute of Technology', 'Electronics and communication Engg', '8.7', '10', '0'), (7322, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '730', '300', '1030', '3', '87', 'MVSR', 'Computer Science', '79', '100', '0'), (7323, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '660', '430', '1090', '3', '106', 'MU', 'Information Technology', '57', '100', '0'), (7324, 'Clemson University', '9', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2013', '169', '146', '315', '3.5', '98', 'Nit surat', 'Production Engineering', '8.11', '10', '0'), (7325, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '164', '145', '309', '3', '93', 'Kurukshetra University', 'Mechanical', '67.3', '100', '0'), (7326, 'Clemson University', '9', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '165', '150', '315', '3', '90', 'Dr. B.R Ambedkar NIT Jalandhar', 'Mechanical Engineering', '6.7', '10', '44'), (7327, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '158', '149', '307', '3.5', '7', 'Pune University', 'Mechanical', '60', '100', '0'), (7328, 'Clemson University', '9', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '760', '440', '1200', '3.5', '92', 'PESIT', 'electronics and communication', '64', '100', '0'), (7329, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '145', '306', '3', '93', 'VTU', 'telecommunication', '78.4', '100', '0'), (7330, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '740', '470', '1210', '3.5', '112', 'SASTRA', 'Electronics & Communication', '8.6', '10', '0'), (7331, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '780', '410', '1190', '3', '90', 'Punjab Engineering College', 'Electrical', '67.8', '100', '0'), (7332, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '161', '150', '311', '3', '96', 'UPTU', 'Mechanical Engineering', '62', '100', '0'), (7333, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2012', '770', '430', '1200', '3.5', '95', 'BVBCET', 'EE', '8.58', '10', '0'), (7334, 'Clemson University', '9', 'Reject', 'MS', 'Biomedical Engineering', 'Fall ', '2014', '158', '151', '309', '3', '96', 'Nagpur University', 'Electronics And Telecomm.', '74', '100', '0'), (7335, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '165', '159', '324', '3', '101', 'BITS Pilani', 'Electronics', '4.93', '10', '0'), (7336, 'Clemson University', '9', 'Reject', 'MS', 'Civil Engineering', 'Fall', '2017', '161', '144', '305', '3', '90', 'Sinhgad Institute Of Technology And Science, Narhe', 'Civil Engineering', '65', '100', '15'), (7337, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Spring', '2019', '162', '140', '302', '3', '-1', 'KLS Gogte Institute Of Technology', 'ECE', '63.4', '100', '0'), (7338, 'Clemson University', '9', 'Reject', 'MS', 'Industrial Engineering', 'Fall', '2016', '160', '151', '311', '3.5', '98', 'FR CONCEICAO RODRIGUES College of Engineering', 'Production Engineering', '6.5', '10', '0'), (7339, 'Cleveland State University', '10', 'Admit', 'MSc', 'Software Engineering', 'Spring', '2017', '154', '131', '285', '2', '-1', 'MLR Institute Of Technology', 'Computer Science', '73', '100', '0'), (7340, 'Cleveland State University', '10', 'Admit', 'MSc', 'Software Engineering', 'Fall', '2018', '153', '130', '283', '-1', '-1', 'Gujarat Technological University', 'Information Technology', '8.35', '10', '0'), (7341, 'Cornell University', '11', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '169', '165', '334', '5.5', '118', 'IIT Delhi', 'Mechanical', '9.1', '10', '40'), (7342, 'Cornell University', '11', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2011', '730', '500', '1230', '3.5', '99', 'NIT Silchar', 'Mechanical Engineering', '7.37', '10', '0'), (7343, 'Cornell University', '11', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '760', '650', '1410', '3.5', '104', 'Sardar Patel College of Engineering', 'Computer Engineering', '75.9', '100', '0'), (7344, 'Cornell University', '11', 'Admit', 'MS', 'EE / CS', 'Fall ', '2012', '800', '730', '1530', '4.5', '114', 'NIT Karnataka', 'ECE', '8.5', '10', '0'), (7345, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '790', '550', '1340', '4', '113', 'MU', 'CS', '66.14', '100', '0'), (7346, 'Cornell University', '11', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '156', '166', '322', '3.5', '114', 'IIIT Allahabad', 'Electronics & Comm.', '8.98', '10', '0'), (7347, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '750', '460', '1210', '4.5', '111', 'Pune University', 'Computer Engineering', '70', '100', '0'), (7348, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '152', '317', '4', '99', 'CEG', 'Information Technology', '9.1', '10', '0'), (7349, 'Cornell University', '11', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '168', '150', '318', '4.5', '109', 'SSN College of Engineering', 'Electrical & Electronics', '8.1', '10', '0'), (7350, 'Cornell University', '11', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '520', '1320', '3', '107', 'IT BHU', 'Electronics Engg', '8.93', '10', '0'), (7351, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', 'None', 'None', '0', 'None', 'None', 'Anna University', 'CS', '8.8', '10', '0'), (7352, 'Cornell University', '11', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2013', '165', '158', '323', '4', '110', 'Punjabi University', 'cs', '82', '100', '0'), (7353, 'Cornell University', '11', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '163', '149', '312', '3.5', '107', 'NIT Nagpur', 'CSE', '9.19', '10', '0'), (7354, 'Cornell University', '11', 'Admit', 'MS', 'Engineering Management / Industrial Engineering / IMSE', 'Fall', 'None', '163', '150', '313', 'None', '100', 'University of Pune', 'Mechanical Engg', '3.76', '4', '46'), (7355, 'Cornell University', '11', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (7356, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '710', '1510', 'None', '103', 'NIT Kurukshetra', 'Computer Engineering', '9', '10', '0'), (7357, 'Cornell University', '11', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2012', '163', '163', '326', '4.5', 'None', 'lafayette college', 'engineering', '0', '0', '0'), (7358, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '150', '318', '4', '104', 'NIT Rourkela', 'Computer Science', '9.26', '10', '0'), (7359, 'Cornell University', '11', 'Admit', 'MS', 'Civil Engineering', 'Spring ', '2011', '770', '490', '1260', '3.5', '105', 'VTU', 'Mechanical Engineering', '69', '100', '0'), (7360, 'Cornell University', '11', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '780', '650', '1430', '4', '101', 'NITK Surathkal', 'Computer Engineering', '3.9', '4', '0'), (7361, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '170', '159', '329', '3', '103', 'Punjab Engineering College', 'Computer Science', '9.25', '10', '0'), (7362, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '161', '161', '322', '3.5', '115', 'None', '0', '0', '0', '0'), (7363, 'Cornell University', '11', 'Admit', 'MS', 'Metallurgy and Materials Engineering', 'Fall ', '2013', '167', '151', '318', '4', '106', 'Delhi College Of Engineeing', 'Mechanical Engineering', '70', '100', '0'), (7364, 'Cornell University', '11', 'Admit', 'MS', 'Information Science', 'Fall ', '2010', '800', '710', '1510', '6', '119', 'Indian Statistical Institute', 'Systems Science and Informatics Unit', '75.1', '100', '0'), (7365, 'Cornell University', '11', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '790', '640', '1430', '3.5', '104', 'Mar Athanasius College of Engineering Kerala', 'Electronics and Communication', '71', '100', '0'), (7366, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', 'None', 'None', '0', '4', 'None', 'VTU', 'Information Science', '85', '100', '0'), (7367, 'Cornell University', '11', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '800', '630', '1430', '4', '115', 'MU', 'CS', '75', '100', '0'), (7368, 'Cornell University', '11', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '164', '159', '323', '4.5', '117', 'Nirma Institute of Technology', '0', '8.54', '10', '0'), (7369, 'Cornell University', '11', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (7370, 'Cornell University', '11', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '163', '158', '321', '4', '110', 'IT BHU', 'Mechanical Engg.', '8.53', '10', '0'), (7371, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '570', '1370', '4.5', '110', 'Nirma Institute of Technology', 'CS', '8.76', '10', '0'), (7372, 'Cornell University', '11', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '720', '1520', '4', '103', 'KIIT', 'Electronics and Electrical', '8.82', '10', '0'), (7373, 'Cornell University', '11', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2013', '165', '155', '320', '3', '110', 'Thapar University', 'Mechanical', '7.83', '10', '0'), (7374, 'Cornell University', '11', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2015', '166', '163', '329', '4.5', '114', 'BITS Hyderabad', 'Civil Engineering', '8.95', '10', '0'), (7375, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '800', '510', '1310', '3.5', '102', 'PSG College of Technology', 'IT', '9.36', '10', '0'), (7376, 'Cornell University', '11', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2013', '168', '151', '319', '4', '112', 'None', '0', '8.2', '10', '0'), (7377, 'Cornell University', '11', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '160', '152', '312', '3', '110', 'VTU', 'Telecommunication', '8.67', '10', '36'), (7378, 'Cornell University', '11', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '160', '157', '317', '3.5', '113', 'Amrita School of Engineering', 'EEE', '8.64', '10', '0'), (7379, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '156', '317', '4', '117', 'NIT Warangal', 'CSE', '8.53', '10', '0'), (7380, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '165', '164', '329', '4', '113', 'JSSATE', 'IT', '72', '100', '0'), (7381, 'Cornell University', '11', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2013', '166', '163', '329', '5', 'None', 'VTU', 'Electronics and Communication', '8.2', '10', '0'), (7382, 'Cornell University', '11', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '770', '540', '1310', '3.5', '107', 'MSRIT', 'Telecommunication', '8.8', '10', '0'), (7383, 'Cornell University', '11', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '164', '153', '317', '4', '108', 'SSN College of Engineering', 'CSE', '84.45', '100', '0'), (7384, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '156', '150', '306', '4', '104', 'VIT', 'Information Technology', '9.1', '10', '0'), (7385, 'Cornell University', '11', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '630', '1430', '4.5', '114', 'VTU', 'ECE', '84.8', '100', '0'), (7386, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '650', '1450', '3.5', '107', 'Sardar Patel College of Engineering', 'Computer', '76', '100', '0'), (7387, 'Cornell University', '11', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2014', '161', '156', '317', '4', '108', 'VTU', 'Biotechnology', '84', '100', '0'), (7388, 'Cornell University', '11', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '160', '159', '319', '4', '114', 'NIT Allahabad', 'Electronics & Communication', '7.21', '10', '0'), (7389, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '170', '158', '328', '4', '115', 'MSRIT', 'Computer Science', '8.94', '10', '0'), (7390, 'Cornell University', '11', 'Admit', 'MS', 'Computational Science', 'Fall ', '2011', '770', '600', '1370', '4', 'None', 'University of California Berkeley', 'Electrical Engineering and Computer Science', '3.83', '4', '0'), (7391, 'Cornell University', '11', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '800', '560', '1360', '3', '109', 'University College of Engineering Osmania University', 'Mechanical Engineering', '9.14', '10', '0'), (7392, 'Cornell University', '11', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '800', '720', '1520', '5', '116', 'VNIT Nagpur', 'EEE', '8.84', '10', '0'), (7393, 'Cornell University', '11', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '162', '145', '307', '4', '102', 'VTU', 'telecommunication', '9.24', '10', '36'), (7394, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '590', '1370', '4.5', '118', 'NIT Warangal', 'Computer Science', '9.23', '10', '0'), (7395, 'Cornell University', '11', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '550', '1350', '4', '107', 'IIIT Hyderabad', 'ECE', '9.12', '10', '0'), (7396, 'Cornell University', '11', 'Admit', 'MS', 'Computational Engineering', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'BITS Pilani', 'Civil', '7.2', '10', '0'), (7397, 'Cornell University', '11', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '164', '158', '322', '3.5', '114', 'PESIT', 'Telecommunication Department', '8.43', '10', '0'), (7398, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', 'None', 'None', '0', 'None', 'None', 'PESIT', 'Information Science', '78', '100', '0'), (7399, 'Cornell University', '11', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2011', '770', '670', '1440', '3.5', '116', 'SSCET Bhilai', 'ETC', '7.62', '10', '0'), (7400, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'PSG College of Technology', 'Mathematics and Computer Applications', '9.3', '10', '0'), (7401, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '570', '1370', '3.5', '112', 'NITK Surathkal', 'Computer Science', '0', '0', '0'), (7402, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '159', '320', '4', '111', 'MU', 'Computer SCience', '81.29', '100', '12'), (7403, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '159', '322', '5', '111', 'R V College of Engineering', 'Computer Science', '9.32', '10', '0'), (7404, 'Cornell University', '11', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '790', '700', '1490', '5.5', '277', 'D J Sanghvi', 'EXTC', '69.5', '100', '0'), (7405, 'Cornell University', '11', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '168', '152', '320', '3.5', '101', 'D J Sanghvi', 'EXTC', '76.42', '100', '0'), (7406, 'Cornell University', '11', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '160', '152', '312', '4', '110', 'VTU', 'ECE', '74.6', '100', '0'), (7407, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '164', '154', '318', '4', '112', 'VTU', 'Computer Science', '71.5', '100', '0'), (7408, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '790', '720', '1510', '5', '290', 'University of Mumbai', 'Information Technology', '69.4', '100', '0'), (7409, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '790', '550', '1340', '4', '267', 'University of Madras', 'CS', '88', '100', '0'), (7410, 'Cornell University', '11', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '168', '157', '325', '4', '114', 'Sardar Patel College of Engineering', 'Electronics', '75.3', '100', '22'), (7411, 'Cornell University', '11', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '520', '1280', '3', '97', 'Not so reputed ..', 'Electrical E', '3.97', '4', '0'), (7412, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '660', '1460', '4', '114', 'SASTRA', 'Computer Science', '9.29', '10', '0'), (7413, 'Cornell University', '11', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '164', '152', '316', '3', '97', 'None', 'ECE', '9.38', '100', '0'), (7414, 'Cornell University', '11', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2011', '770', '620', '1390', '4', '111', 'Pune University', 'Mechanical', '66', '100', '0'), (7415, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '510', '1310', '4.5', '104', 'Osmania University', 'CSE', '87.6', '100', '0'), (7416, 'Cornell University', '11', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '770', '440', '1210', '3.5', '97', 'R V College of Engineering', 'Telecommuniction Engineering', '83', '100', '0'), (7417, 'Cornell University', '11', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2015', '159', '162', '321', '3.5', '107', 'NIT Kurukshetra', 'Civil Engineering', '8.84', '10', '24'), (7418, 'Cornell University', '11', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2014', '161', '150', '311', '3.5', '106', 'VIT', 'civil', '9.27', '10', '0'), (7419, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '150', '311', '3', 'None', 'VTU', 'Information Science', '83.07', '100', '25'), (7420, 'Cornell University', '11', 'Admit', 'MS', 'Biotechnology', 'Fall ', '2012', '800', '720', '1520', '4', '116', 'SRM University', 'Biotech', '8.71', '10', '0'), (7421, 'Cornell University', '11', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2011', '790', '510', '1300', '4', '103', 'None', '0', '0', '0', '0'), (7422, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '700', '1500', '4.5', '119', 'R V College of Engineering', 'CSE', '9.85', '10', '0'), (7423, 'Cornell University', '11', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2008', '800', '540', '1340', '6', '300', 'University of Mumbai', 'Mechanical Engineering', '76', '100', '0'), (7424, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '168', '159', '327', '4', '100', 'IIIT Allahabad', 'IT', '8.54', '10', '0'), (7425, 'Cornell University', '11', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2015', '164', '155', '319', '4', '110', 'None', 'Biomedical Engineering', '9.04', '10', '0'), (7426, 'Cornell University', '11', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '770', '590', '1360', '3.5', '104', 'BITS Pilani', 'EEE', '9.18', '10', '0'), (7427, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '590', '1370', '3.5', '112', 'BMSCE', 'Infomation Science and Engineering', '76.2', '100', '0'), (7428, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '155', '323', '3.5', '110', 'NIT Kurukshetra', 'Computer Science', '9.16', '10', '0'), (7429, 'Cornell University', '11', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '169', '154', '323', '3', '105', 'Delhi College Of Engineeing', 'Information Technology', '71.06', '100', '0'), (7430, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '154', '318', '4', '109', 'IIIT Allahabad', 'Information Technology', '8.54', '10', '0'), (7431, 'Cornell University', '11', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2011', '720', '560', '1280', '5', '108', 'VJTI', 'Electrical Engineering', '7.4', '10', '0'), (7432, 'Cornell University', '11', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2013', '165', '157', '322', '3', '111', 'P.U.', 'UIET B.E.-Biotechnology', '72.3', '100', '0'), (7433, 'Cornell University', '11', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (7434, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '620', '1420', '5.5', '109', 'VTU', 'CSE', '9.8', '10', '0'), (7435, 'Cornell University', '11', 'Admit', 'MS', 'Mechanical Engineering', 'Fall', 'None', '170', '153', '323', '4', '104', 'VIT', 'Mechanical(specialization in Energy)', '8.9', '10', '0'), (7436, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '640', '1440', '4.5', '111', 'MU', 'Computer Engineering', '68.42', '100', '0'), (7437, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '166', '152', '318', '3.5', '110', 'Nirma Institute of Technology', 'Computer Science', '8.89', '10', '0'), (7438, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '680', '660', '1340', '3.5', '111', 'IIT Delhi', 'CS', '8.5', '10', '0'), (7439, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '153', '313', '3.5', '109', 'None', 'Information Technology', '9.19', '10', '0'), (7440, 'Cornell University', '11', 'Admit', 'MS', 'Systems Engineering', 'Fall ', '2012', '160', '154', '314', '4.5', '117', 'Fr. Conceicao Rodrigues College of Engineering', 'Computer Engineering', '64.23', '100', '0'), (7441, 'Cornell University', '11', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2013', 'None', 'None', '0', '4', 'None', 'UMass Lowell', 'Electrical And Computer Engineering', '0', '0', '0'), (7442, 'Cornell University', '11', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2012', '167', '157', '324', '4.5', '109', 'NIT - Trichy', 'Mechanical Engineering', '8.8', '10', '0'), (7443, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '152', '318', '3.5', '108', 'Nirma Institute of Technology', 'INFORMATION TECHNOLOGY', '8.1', '10', '0'), (7444, 'Cornell University', '11', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2013', '165', '157', '322', '3.5', '110', 'BITS Pilani', 'civil engg', '7.99', '10', '0'), (7445, 'Cornell University', '11', 'Admit', 'MS', 'Chemical Engineering', 'Fall ', '2013', '169', '153', '322', '4.5', '118', 'SSN College of Engineering', 'Chemical', '8.9', '10', '0'), (7446, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '580', '1380', 'None', 'None', 'U of Washington', 'Computer Science and Engineering', '3.78', '4', '0'), (7447, 'Cornell University', '11', 'Admit', 'MS', 'Biological Sciences Biotechnology ', 'Fall ', '2014', '163', '157', '320', '4', '115', 'BITS Pilani', 'Biological Sciences and Chemical Engineering', '6.11', '10', '0'), (7448, 'Cornell University', '11', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '161', '155', '316', '4', '108', 'BITS Dubai', 'ECE', '9.06', '10', '0'), (7449, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '640', '1440', '3', '115', 'MAIT GGSIPU', 'CSE', '79', '100', '0'), (7450, 'Cornell University', '11', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2011', '800', '470', '1270', '3.5', '105', 'IIT Madras', 'civil engineering', '8.4', '10', '0'), (7451, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '158', '319', '4', '107', 'VIT University', 'B.Tech Information Technology', '8.98', '10', '0'), (7452, 'Cornell University', '11', 'Admit', 'MS', 'physics', 'Fall ', '2011', '790', '670', '1460', '4.5', '114', 'IIT Madras', 'Physics', '9.45', '10', '0'), (7453, 'Cornell University', '11', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (7454, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '690', '1470', '3.5', '115', 'Bharati Vidyapeeth', 'CSE', '80.5', '100', '0'), (7455, 'Cornell University', '11', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '164', '154', '318', '3.5', '109', 'VTU', 'EC', '75', '100', '0'), (7456, 'Cornell University', '11', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '800', '550', '1350', '4', '114', 'WBUT', 'ECE', '9.04', '10', '0'), (7457, 'Cornell University', '11', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2010', '770', '600', '1370', '4', '113', 'SASTRA', 'Electronics and Communications Engineeing', '8.5', '10', '0'), (7458, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '640', '1410', '4', '113', 'R V College of Engineering', 'CSE', '9.42', '10', '0'), (7459, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '660', '1440', '4', '119', 'SSN College of Engineering', 'Computer science', '8.7', '10', '0'), (7460, 'Cornell University', '11', 'Admit', 'MS', 'Operations Research', 'Fall ', '2013', '165', '162', '327', '5', '114', 'NITK Surathkal', 'EEE', '7.57', '10', '0'), (7461, 'Cornell University', '11', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2013', 'None', 'None', '0', '3.5', 'None', 'None', '0', '0', '0', '0'), (7462, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '151', '316', '4.5', '110', 'VTU', 'Computer Science', '79', '100', '0'), (7463, 'Cornell University', '11', 'Admit', 'MS', 'Materials Science & Engineering', 'Fall ', '2011', '800', '630', '1430', '4', '110', 'IIT Madras', 'Metallurgical and Materials Engineering', '7.47', '10', '0'), (7464, 'Cornell University', '11', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2011', '680', '590', '1270', '3.5', '106', 'MDU', 'UIET', '78', '100', '0'), (7465, 'Cornell University', '11', 'Admit', 'MS', 'Chemical Engineering', 'Fall ', '2012', '163', '152', '315', '3.5', 'None', 'Stony Brook University', 'Chemistry', '3.5', '4', '0'), (7466, 'Cornell University', '11', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2009', '750', '680', '1430', '4', '113', 'JNTU', 'Mechanical Engineering', '0', '0', '0'), (7467, 'Cornell University', '11', 'Admit', 'MS', 'environmental engineering', 'Fall ', '2013', '160', '155', '315', '3', '107', 'MSRIT', 'Chemical Engineering', '8.5', '10', '0'), (7468, 'Cornell University', '11', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '169', '158', '327', '4.5', 'None', 'R V College of Engineering', 'ECE', '85.2', '100', '0'), (7469, 'Cornell University', '11', 'Admit', 'MS', 'Civil Engineering', 'Fall', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (7470, 'Cornell University', '11', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2011', '800', '510', '1310', '3', '111', 'ITAM', 'Digital Systems', '7.83', '10', '0'), (7471, 'Cornell University', '11', 'Admit', 'MS', 'Mechanical Engineering', 'Spring ', '2011', '800', '690', '1490', '6', '117', 'VTU', 'Mechanical Engineering', '74', '100', '0'), (7472, 'Cornell University', '11', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '800', '570', '1370', '4.5', '119', 'Sri Ramakrishna Institute of Technology', 'Electrical Engineering', '80', '100', '0'), (7473, 'Cornell University', '11', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '161', '157', '318', '3', '108', 'GKV', 'ECE', '76', '100', '0'), (7474, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '158', '318', 'None', '109', 'VTU', 'Computer Science', '81.07', '100', '0'), (7475, 'Cornell University', '11', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2015', '159', '154', '313', '3', '107', 'Vidyalankar Institute of Technology', 'Electronics & Telecommunications', '66.58', '100', '0'), (7476, 'Cornell University', '11', 'Admit', 'MS', 'environmental engineering', 'Fall ', '2012', '790', '600', '1390', '4', '109', 'MU', 'Chemical Engineering', '70', '100', '0'), (7477, 'Cornell University', '11', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '164', '149', '313', '3', '104', 'Nirma Institute of Technology', 'Electronics and Communication Engineering', '8.1', '10', '0'), (7478, 'Cornell University', '11', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2011', '770', '670', '1440', '3.5', '116', 'SSCET Bhilai', 'ETC', '7.62', '10', '0'), (7479, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '161', '150', '311', '4', '99', 'MSRIT', 'CSE', '9.13', '10', '8'), (7480, 'Cornell University', '11', 'Admit', 'MS', 'Financial Engineering', 'Fall ', '2006', '800', '680', '1480', '4.5', '280', 'COEP', 'E & TC', '0', '0', '0'), (7481, 'Cornell University', '11', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '169', '156', '325', '3.5', '111', 'Jadavpur University', 'Electronics and Telecomm Engg.', '9.26', '10', '0'), (7482, 'Cornell University', '11', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '170', '159', '329', '3', '112', 'IIT Kanpur', 'EE', '9', '10', '0'), (7483, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', 'None', 'None', '0', 'None', 'None', 'None', 'Computer Science', '0', '0', '12'), (7484, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '159', '323', '4', '113', 'VTU', 'CS', '80', '100', '0'), (7485, 'Cornell University', '11', 'Admit', 'MS', 'Electrical and computer science', 'Fall ', '2010', '780', '530', '1310', '3.5', '109', 'Jaypee Institute of Information Technology', 'ECE', '8.2', '10', '0'), (7486, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '150', '308', '3.5', '102', 'PSG College of Technology', 'ECE', '9.2', '10', '33'), (7487, 'Cornell University', '11', 'Admit', 'MS', 'statistics', 'Fall ', '2011', '790', '610', '1400', '3.5', '111', 'BITS Pilani', 'Maths and Engg', '8.72', '10', '0'), (7488, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '540', '1330', '4', '107', 'S.P.I.T. Mumbai University', 'Computer Engineering', '78.98', '100', '0'), (7489, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '450', '1250', '4', '105', 'Fr. Conceicao Rodrigues College of Engineering', 'Computer Science', '64.04', '100', '0'), (7490, 'Cornell University', '11', 'Admit', 'MS', 'Materials Science & Engineering', 'Fall ', '2014', '167', '153', '320', '4', '105', 'IIT (BHU) Varanasi', 'Ceramic Engineering', '7.02', '10', '24'), (7491, 'Cornell University', '11', 'Admit', 'MS', 'Master of engineering management', 'Fall ', '2013', '164', '152', '316', '4', 'None', "Queen's University", 'Civil', '3.3', '4', '0'), (7492, 'Cornell University', '11', 'Admit', 'MS', 'Biotechnology', 'Fall ', '2011', '740', '600', '1340', '3', '110', 'Jaypee Institute of Information Technology', 'Biotechnology', '7.8', '10', '0'), (7493, 'Cornell University', '11', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '750', '580', '1330', '3.5', '101', 'Bharati Vidyapeeth', 'EEE', '69.38', '100', '0'), (7494, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '720', '410', '1130', '3.5', '101', 'SJCE', 'Information Science', '78', '100', '0'), (7495, 'Cornell University', '11', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2012', '800', '730', '1530', '4', '118', 'SASTRA', 'Civil Engineering', '9.45', '10', '0'), (7496, 'Cornell University', '11', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2012', '790', '610', '1400', '4', '105', 'VTU', 'EEE', '78', '100', '0'), (7497, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '730', '520', '1250', 'None', 'None', 'VTU', 'Computer Science', '80', '100', '0'), (7498, 'Cornell University', '11', 'Admit', 'MS', 'Operations Research', 'Fall ', '2013', '170', '154', '324', 'None', '111', 'NIT Kurukshetra', 'Electrical Engineering', '9.72', '10', '0'), (7499, 'Cornell University', '11', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2012', '800', '670', '1470', '4', '114', 'MU', 'Computer', '71.06', '100', '0'), (7500, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '157', '154', '311', '3.5', '110', 'R V College of Engineering', 'Computer Science', '80', '100', '0'), (7501, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '162', '148', '310', '4', '110', 'MSRIT', 'Computer Science and Engineering', '9.1', '10', '0'), (7502, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '166', '148', '314', '3.5', '101', 'R V College of Engineering', 'Information science and engineering', '82.25', '100', '0'), (7503, 'Cornell University', '11', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '147', '136', '283', '3.5', '107', 'Dayananda Sagar College of Engineering', 'Electronics and communication', '65', '100', '0'), (7504, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '161', '152', '313', '4', '109', 'PESIT', 'Information Science', '9.47', '10', '39'), (7505, 'Cornell University', '11', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2012', '780', '710', '1490', '4', '112', 'SPCE', 'Electronics', '70', '100', '0'), (7506, 'Cornell University', '11', 'Admit', 'MS', 'Chemical Engineering', 'Fall ', '2013', 'None', 'None', '0', 'None', '112', 'NIT Srinagar', 'chemical Engineering', '7.41', '10', '0'), (7507, 'Cornell University', '11', 'Admit', 'MS', 'biomedical sciences', 'Spring ', '2015', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (7508, 'Cornell University', '11', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '165', '148', '313', '3', '109', 'None', 'Electronics', '8.7', '10', '24'), (7509, 'Cornell University', '11', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '480', '1280', '3.5', '105', 'Anna University', 'ECE', '82', '100', '0'), (7510, 'Cornell University', '11', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2011', '770', '580', '1350', '4', '109', 'Pune University', 'Electronics & Telecommunication', '3.16', '4', '0'), (7511, 'Cornell University', '11', 'Admit', 'MS', 'Mechanical Engineering', 'Spring ', '2014', '800', '640', '1440', '4.5', '112', 'NIT Warangal', 'Mechanical Engineering', '9.15', '10', '0'), (7512, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '550', '1350', '3.5', '113', 'Delhi College Of Engineeing', 'IT', '76', '100', '0'), (7513, 'Cornell University', '11', 'Admit', 'MS', 'Instrumentation and Control', 'Fall ', '2011', '800', '610', '1410', '3.5', '103', 'BITS Pilani', 'Electronics and Instrumentation', '9.4', '10', '0'), (7514, 'Cornell University', '11', 'Admit', 'MS', 'Textile Science & Technology', 'Fall ', '2012', '740', '300', '1040', '2', 'None', 'Osmania University', 'Textile Technology', '9.02', '10', '0'), (7515, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '162', '147', '309', '3', '104', 'Anna University', 'Computer Science', '9.41', '10', '0'), (7516, 'Cornell University', '11', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2013', '159', '151', '310', '3.5', '107', 'SSN College of Engineering', 'BIOMEDICAL ENGINEERING', '8.9', '10', '0'), (7517, 'Cornell University', '11', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '169', '156', '325', '3.5', '114', 'Thapar University', 'ECE', '8.56', '10', '0'), (7518, 'Cornell University', '11', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '163', '153', '316', '4', '116', 'BITS Pilani', 'EEE', '9.27', '10', '0'), (7519, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '162', '152', '314', '4.5', '112', 'PESIT', 'CSE', '78.5', '100', '15'), (7520, 'Cornell University', '11', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2011', '800', '560', '1360', '4', '113', 'JNTU', 'ECE', '3.62', '4', '0'), (7521, 'Cornell University', '11', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '700', '1500', '3.5', '111', 'NIT Kurukshetra', 'Mechanical Engineering', '9.255', '10', '0'), (7522, 'Cornell University', '11', 'Admit', 'MS', 'health administration', 'Fall', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (7523, 'Cornell University', '11', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '510', '1300', '3.5', '109', 'SVNIT Surat', 'Electronics Department', '9.53', '10', '0'), (7524, 'Cornell University', '11', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '163', '155', '318', '5.5', '118', 'None', '0', '0', '0', '0'), (7525, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '165', '149', '314', '3', '102', 'Maulana Azad National Institute of Technology', 'Computer Science and Engineering', '8.43', '10', '0'), (7526, 'Cornell University', '11', 'Admit', 'MS', 'physics', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'UCLA', 'Physics', '3.86', '4', '0'), (7527, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '161', '159', '320', '3.5', '111', 'BITS Pilani', 'Computer Science', '9.23', '10', '0'), (7528, 'Cornell University', '11', 'Admit', 'MS', 'food science', 'Fall ', '2011', '790', '540', '1330', '3', '100', 'University of Rajasthan', 'Biotechnology', '68.5', '100', '0'), (7529, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '169', '148', '317', '4', '104', 'R V College of Engineering', 'Computer Science', '81', '100', '0'), (7530, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '660', '1460', '3', '104', 'NSIT', 'IT', '69', '100', '0'), (7531, 'Cornell University', '11', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2015', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (7532, 'Cornell University', '11', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '161', '148', '309', '3', '93', 'Anna University', 'EE', '8.99', '10', '0'), (7533, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '167', '153', '320', '4', '110', 'B M S College of Engineering', 'Computer science', '77', '100', '0'), (7534, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '155', '317', '4', '111', 'R V College of Engineering', 'Information Science And Engineering', '9.62', '10', '0'), (7535, 'Cornell University', '11', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '167', '153', '320', '3.5', '109', 'SSN College of Engineering', 'ECE', '8.3', '10', '0'), (7536, 'Cornell University', '11', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2011', '790', '620', '1410', '4.5', '117', 'SASTRA', 'Information & Communication technology', '8.6', '10', '0'), (7537, 'Cornell University', '11', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2010', '790', '710', '1500', '4', '108', 'SASTRA', 'ECE', '0', '0', '0'), (7538, 'Cornell University', '11', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '162', '157', '319', '4.5', '108', 'VIT University', 'CSE', '8.8', '10', '0'), (7539, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '166', '154', '320', '4.5', '109', 'Sardar Patel College of Engineering', 'Computer Engineering', '73.58', '100', '0'), (7540, 'Cornell University', '11', 'Admit', 'MS', 'Instrumentation and Control', 'Fall ', '2015', 'None', 'None', '0', 'None', 'None', 'Cummins College of Engineering Pune', 'instrumentation and control', '0', '100', '0'), (7541, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '760', '620', '1380', '3', '96', 'Panjab University', 'Computer Science', '80.67', '100', '0'), (7542, 'Cornell University', '11', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '720', '610', '1330', '4', '102', 'National institue of technology jalandhar', 'Ec', '66', '100', '0'), (7543, 'Cornell University', '11', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2013', '800', '570', '1370', '40', '112', 'MU', 'Mech ENgg', '3.62', '4', '0'), (7544, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '540', '1340', '4', '104', 'MIT Pune', 'Computer Science', '72', '100', '0'), (7545, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '690', '1490', '3.5', '115', 'MNNIT', 'Computer Science and Engineering', '9.97', '10', '0'), (7546, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '540', '1340', '4', '112', 'IIT Allahabad', 'Information Technology', '9.17', '10', '0'), (7547, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '780', '510', '1290', 'None', '106', 'R V College of Engineering', 'Computer science', '0', '0', '0'), (7548, 'Cornell University', '11', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '800', '490', '1290', '3', '102', 'Delhi College Of Engineeing', 'IT', '76.25', '100', '0'), (7549, 'Cornell University', '11', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2012', '720', '480', '1200', '4', '114', 'Pune University', 'COMPUTER ENGINEERING', '73', '100', '0'), (7550, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '530', '1330', '4', '105', 'NIT Jaipur', 'Computer Engineering', '8.85', '10', '0'), (7551, 'Cornell University', '11', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2012', '780', '700', '1480', '3', '111', 'IIT Guwahati', 'Civil Engineering', '9.29', '10', '0'), (7552, 'Cornell University', '11', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '800', '670', '1470', '4', '117', 'R V College of Engineering', 'Mechanical Engg', '9.07', '10', '0'), (7553, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '162', '328', '4.5', '118', 'College of Engineering and Technology', 'Computer Science and Engineering', '9.09', '10', '90'), (7554, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '730', '1520', '3.5', '109', 'VTU', 'CSE', '82.5', '100', '0'), (7555, 'Cornell University', '11', 'Admit', 'MS', 'Operations Research', 'Fall ', '2012', '800', '550', '1350', '3.5', '109', 'MU', 'Computer', '75.2', '100', '0'), (7556, 'Cornell University', '11', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '164', '148', '312', '3', '103', 'D J Sanghvi', 'Chemical Engineering', '70', '100', '0'), (7557, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '165', '330', '5.5', 'None', 'University of Cambridge', 'Computer Laboratory', '0', '0', '0'), (7558, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '164', '155', '319', '4', '109', 'R V College of Engineering', 'Computer Science and Engineering', '9.4', '10', '0'), (7559, 'Cornell University', '11', 'Admit', 'MS', 'Human Computer Interaction', 'Fall ', '2012', '770', '590', '1360', '3', '102', 'PICT', 'Information Technology', '0', '0', '0'), (7560, 'Cornell University', '11', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '165', '149', '314', '3', '101', 'Anna University', 'EEE', '9.1', '10', '0'), (7561, 'Cornell University', '11', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '163', '157', '320', '5', '114', 'VTU', 'ECE', '73.74', '100', '0'), (7562, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '600', '1390', '3.5', '104', 'NIT Silchar', 'cse', '8.14', '10', '0'), (7563, 'Cornell University', '11', 'Admit', 'MS', 'Chemical Engineering', 'Fall ', '2013', '163', '162', '325', '4', 'None', 'Colgate University', 'Chemistry', '3.5', '4', '0'), (7564, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '168', '151', '319', '3.5', '113', 'MU', 'Computer Engineering', '71.3', '100', '0'), (7565, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '790', '790', '1580', '4.5', '113', 'Anna University', 'Information Technology', '81', '100', '0'), (7566, 'Cornell University', '11', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '800', '590', '1390', '3', '109', 'IIT Roorkee', 'ECE', '8.744', '10', '0'), (7567, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '460', '1260', '3.5', '99', 'Fr. Conceicao Rodrigues College of Engineering', 'Computer Science', '65.73', '100', '0'), (7568, 'Cornell University', '11', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2011', '700', '550', '1250', 'None', 'None', 'None', '0', '0', '0', '0'), (7569, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science/ Mgmt', 'Fall ', '2011', '800', '570', '1370', '4', '111', 'NIT-Allahabad', 'CSE', '9.53', '10', '0'), (7570, 'Cornell University', '11', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2013', '318', '153', '471', '4.5', '106', 'VIT University', 'Electronics and Communication', '8.97', '10', '0'), (7571, 'Cornell University', '11', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2013', '159', '163', '322', 'None', 'None', 'NIT Allahabad', 'Production & Industrial Engg', '7.8', '10', '0'), (7572, 'Cornell University', '11', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '166', '169', '335', '4.5', '119', 'VJTI', 'Mechanical Engg.', '8.5', '10', '0'), (7573, 'Cornell University', '11', 'Admit', 'MS', 'Biomedical Engineering', 'Fall', 'None', '161', '148', '309', '3.5', '105', 'NIT Tirchy', 'ECE', '7.45', '10', '0'), (7574, 'Cornell University', '11', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2014', '164', '148', '312', '4', '108', 'BITS Hyderabad', 'Electrical Engineering', '7.71', '10', '0'), (7575, 'Cornell University', '11', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '170', '149', '319', '3', '95', 'VJTI', 'Electronics', '8.22', '10', '12'), (7576, 'Cornell University', '11', 'Admit', 'MS', 'Chemical Engineering', 'Fall ', '2011', '780', '700', '1480', '5', '118', 'None', '0', '0', '0', '0'), (7577, 'Cornell University', '11', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '570', '1350', '4', '106', 'VTU', 'Electronics and communication', '88', '100', '0'), (7578, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '154', '318', '4', '107', 'R V College of Engineering', 'Computer Science', '8.69', '10', '12'), (7579, 'Cornell University', '11', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2011', '770', '540', '1310', '3', '96', 'CEG', 'ECE', '8.48', '10', '0'), (7580, 'Cornell University', '11', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '168', '163', '331', '3.5', '118', 'Thapar University', 'Mechanical', '9.06', '10', '0'), (7581, 'Cornell University', '11', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '660', '1460', '4', '109', 'PESSE (VTU)', 'ECE', '86', '100', '0'), (7582, 'Cornell University', '11', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '550', '1350', '3.5', '100', 'CEG', 'Ece', '8.8', '10', '0'), (7583, 'Cornell University', '11', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '166', '157', '323', '4', '114', 'PSG College of Technology', 'Electronics and Communication Engineering', '9.7', '10', '0'), (7584, 'Cornell University', '11', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2011', '770', '570', '1340', '4', '110', 'Manipal Institue of Technology', 'Computer Science', '9.32', '10', '0'), (7585, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '161', '329', 'None', '114', 'PESIT', 'Information Science', '9.43', '10', '0'), (7586, 'Cornell University', '11', 'Admit', 'MS', 'Veterinary & Animal Science', 'Fall ', '2013', '159', '152', '311', '4', '113', 'Kerala Agricultural University', 'Veterinary medicine', '7.6', '10', '0'), (7587, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '800', '680', '1480', '3', '109', 'VTU', 'IS', '79', '100', '0'), (7588, 'Cornell University', '11', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2012', '780', '620', '1400', '3.5', '108', 'BITS Pilani', 'Electronics and instrumentation and Biology', '7.58', '10', '0'), (7589, 'Cornell University', '11', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2013', '164', '159', '323', '3.5', '102', 'NIT Tirchy', 'Production Engg', '8.5', '10', '0'), (7590, 'Cornell University', '11', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '166', '163', '329', 'None', '111', 'PSG College of Technology', 'Mechanical Engineering', '8.8', '10', '0'), (7591, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '660', '1450', '4.5', '116', 'NITK Surathkal', 'CS', '9.13', '10', '0'), (7592, 'Cornell University', '11', 'Admit', 'MS', 'urban and regional planning', 'Fall ', '2011', '800', '650', '1450', '5.5', '120', 'NIT-C', 'architecture', '8.23', '10', '0'), (7593, 'Cornell University', '11', 'Admit', 'MS', 'Neurosciences', 'Fall', 'None', '152', '158', '310', '3', '90', 'JIPMER', 'BIOCHEMISTRY', '70', '100', '0'), (7594, 'Cornell University', '11', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '770', '610', '1380', '4', '115', 'SSN College of Engineering', 'ECE', '86', '100', '0'), (7595, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '167', '158', '325', 'None', 'None', 'NIT', 'Computer Science', '9.07', '10', '12'), (7596, 'Cornell University', '11', 'Admit', 'MS', 'Computer engineering VLSI CAD', 'Fall ', '2014', '167', '159', '326', '4.5', '117', 'NIT Karnataka', 'Electronics and Communcation Engineering', '8.56', '10', '0'), (7597, 'Cornell University', '11', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '159', '151', '310', '3.5', '106', 'SRM', 'Electronics & Communication Engineering', '8.724', '10', '0'), (7598, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '470', '1270', '3', 'None', 'VJTI', 'Computer Technology', '9.1', '10', '0'), (7599, 'Cornell University', '11', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '155', '145', '300', '4.5', '85', 'GGSIPU', 'Electronics & Communication Engineering', '76', '100', '0'), (7600, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '169', '148', '317', '3', '98', 'Jaypee Institute of Information Technology', 'IT', '8.3', '10', '0'), (7601, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '167', '158', '325', '4', '115', 'Maharaja Agrasen Institute Of Technology', 'CSE', '71.7', '100', '7'), (7602, 'Cornell University', '11', 'Reject', 'MS', 'Chemical Engineering', 'Fall ', '2014', '165', '154', '319', '4', '112', 'DSCE', 'Chemical Engg.', '82.29', '100', '0'), (7603, 'Cornell University', '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '164', '143', '307', '3.5', '110', 'FCRIT Vashi', 'Electrical', '70', '100', '0'), (7604, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '168', '156', '324', '4', '112', 'NIT Allahabad', 'CSE', '9.13', '10', '0'), (7605, 'Cornell University', '11', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2012', '168', '155', '323', '3.5', '108', 'MU', 'Electronics', '62', '100', '0'), (7606, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '159', '156', '315', '4', '112', 'Cochin University of Science and Technology', 'INFORMATION TECHNOLOGY', '84.15', '100', '63'), (7607, 'Cornell University', '11', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2011', '790', '600', '1390', '3.5', '108', 'K J Somaiya College of Engiineering', 'ECE', '70', '100', '0'), (7608, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2008', '800', '680', '1480', '5', '113', 'University of Mumbai', 'Computer Engineering', '70.88', '100', '0'), (7609, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '164', '156', '320', '4', '111', 'DA-IICT', 'ICT', '6.74', '10', '0'), (7610, 'Cornell University', '11', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '790', '690', '1480', '4', '109', 'Sardar Patel College of Engineering', 'Electrical Engineering', '59.3', '100', '0'), (7611, 'Cornell University', '11', 'Reject', 'MS', 'Biomedical Engineering', 'Fall ', '2011', '730', '720', '1450', '4', '110', 'CEG', 'ECE', '7.1', '10', '0'), (7612, 'Cornell University', '11', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '166', '160', '326', '4.5', '120', 'BITS Pilani', 'Mechanical Engineering', '8.04', '10', '0'), (7613, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '162', '150', '312', '3', '87', 'BITS Pilani', 'Computer Science', '8.4', '10', '0'), (7614, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '440', '1230', '3.5', '104', 'VIT', 'Information Technology', '8', '10', '0'), (7615, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '168', '155', '323', '3', '105', 'MNNIT', 'CSE', '8.3', '10', '0'), (7616, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '161', '161', '322', '4', '110', 'BITS Goa', 'CS', '8', '10', '0'), (7617, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '161', '150', '311', '4', '108', 'M.I.T Pune', 'Computer Engineering', '59.87', '100', '0'), (7618, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '154', '321', '3', '108', 'FRCRCE-Mumbai University', 'Information Technology', '67.2', '100', '0'), (7619, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '157', '319', '4', '115', 'BMSCE', 'CS', '9.3', '10', '24'), (7620, 'Cornell University', '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '550', '1350', '5', '106', 'Jadavpur University', 'Power engg', '7.8', '10', '0'), (7621, 'Cornell University', '11', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '15', '170', '159', '329', '4', '110', 'Delhi University', 'Electronics and Communication', '71.4', '100', '45'), (7622, 'Cornell University', '11', 'Reject', 'MS', 'Information Security', 'Fall ', '2014', '166', '156', '322', '4', '106', 'Thapar University', 'Computer Science', '7.1', '10', '24'), (7623, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '167', '155', '322', '4.5', '109', 'Maharaja Agrasen Institute Of Technology', 'B.Tech (Computer Science)', '76', '100', '0'), (7624, 'Cornell University', '11', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '170', '166', '336', '5', '112', 'IIT BHU', 'Electrical Engg', '8.15', '10', '0'), (7625, 'Cornell University', '11', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2013', '169', '161', '330', '4.5', '112', 'B M S College of Engineering', 'Mechanical', '9.14', '10', '0'), (7626, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '690', '440', '1130', '3', '81', 'Anna University', 'Computer Science', '85', '100', '0'), (7627, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '790', '670', '1460', '3.5', '107', 'BITS Pilani', 'Information Systems', '8.53', '10', '0'), (7628, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '590', '1390', '3', '111', 'K J Somaiya College of Engiineering', 'Computer Engineering', '75.12', '100', '0'), (7629, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '146', '307', '4', '103', 'University of Pune', 'Computer Engineering', '70.12', '100', '0'), (7630, 'Cornell University', '11', 'Reject', 'MS', 'petroleum engineering', 'Fall ', '2014', '154', '146', '300', '3', '98', 'Bharati Vidyapeeth', 'Instrumentation & Control', '60', '100', '48'), (7631, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '550', '1350', '3', '102', 'PEC University of Technology', 'Computer Science', '7.46', '10', '0'), (7632, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '154', '167', '321', '3', '108', 'Veermata Jijabai Technological Institute', 'Information Technology', '8.6', '10', '0'), (7633, 'Cornell University', '11', 'Reject', 'MS', 'software engineering', 'Fall ', '2013', '160', '151', '311', '4', '109', 'R.D. National College', 'IT', '70', '100', '0'), (7634, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '163', '150', '313', '4', 'None', 'JSS Noida', 'IT', '77.53', '100', '0'), (7635, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '165', '156', '321', '3.5', '112', 'Bharati Vidyapeeth', 'Information Technology', '3.9', '4', '0'), (7636, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '620', '1400', '3.5', '114', 'NMIMS', 'Computer Engineering', '3.41', '4', '0'), (7637, 'Cornell University', '11', 'Reject', 'MS', 'CS / MSIS / ITM', 'Fall ', '2011', '800', '640', '1440', '4.5', '112', 'DA-IICT', 'Information and Communication Technology', '8.87', '10', '0'), (7638, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '540', '1320', '4', '112', 'BITS Goa', 'Bilogical Science and Computer Science', '7.45', '10', '0'), (7639, 'Cornell University', '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall', 'None', '760', '800', '1560', '5.5', '119', 'R V College of Engineering', 'ECE', '80.8', '100', '0'), (7640, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '780', '620', '1400', '4', '115', 'PICT', 'Computer', '3.45', '4', '0'), (7641, 'Cornell University', '11', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '159', '151', '310', '3.5', '109', 'VTU', 'ECE', '78', '100', '0'), (7642, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '169', '154', '323', '4', '115', 'None', '0', '0', '0', '0'), (7643, 'Cornell University', '11', 'Reject', 'MS', 'Biomedical Engineering', 'Fall', 'None', '750', '740', '1490', '3', '117', 'UPTU', 'Electronics & Instrumentation', '70', '100', '0'), (7644, 'Cornell University', '11', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '800', '650', '1450', '4', '115', 'University of Mumbai', 'Computer Engg', '70', '100', '0'), (7645, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2007', '800', '590', '1390', '4.5', '270', 'SPCE', 'IT', '63', '100', '0'), (7646, 'Cornell University', '11', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2012', '800', '660', '1460', '4', '112', 'UIET Panjab University', 'Engineering', '76', '100', '0'), (7647, 'Cornell University', '11', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '170', '151', '321', '4', '106', 'IIT Kharagpur', 'Mechanical Engineering B.Tech and M.Tech dual degree (5 yr)', '8.84', '10', '0'), (7648, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '157', '318', '3', '105', 'UPTU', 'IT', '71', '100', '0'), (7649, 'Cornell University', '11', 'Reject', 'MS', 'Technology Leadership', 'Fall ', '2014', 'None', 'None', '0', 'None', 'None', 'BVUCOE', 'Electronics Engineering', '62', '100', '8'), (7650, 'Cornell University', '11', 'Reject', 'MS', 'Engineering Management', 'Spring ', '2013', '730', '480', '1210', '3', '108', 'JNTU', 'Biotechnology', '74', '100', '0'), (7651, 'Cornell University', '11', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2006', '790', '630', '1420', '5', '293', 'MU', 'Electronics', '72.97', '100', '0'), (7652, 'Cornell University', '11', 'Reject', 'MS', 'Construction Management', 'Fall ', '2015', '160', '155', '315', '4', '112', 'Manipal Institue of Technology', 'Architecture', '0', '0', '0'), (7653, 'Cornell University', '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '160', '150', '310', '4', '100', 'MDU', 'ece', '60', '100', '0'), (7654, 'Cornell University', '11', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2011', '800', '650', '1450', '3', '116', 'IIT BHU', 'Mechanical', '72.4', '100', '0'), (7655, 'Cornell University', '11', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '160', '163', '323', '4', '109', 'None', 'EC', '77.75', '100', '0'), (7656, 'Cornell University', '11', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '770', '570', '1340', '3.5', '117', 'University of Cape Town', 'Engineering', '69.9', '100', '0'), (7657, 'Cornell University', '11', 'Reject', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2011', '780', '570', '1350', 'None', '101', 'UPTU', 'Information Technology', '71', '100', '0'), (7658, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '155', '318', '4', '108', 'VTU', 'CSE', '78', '100', '0'), (7659, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '580', '1380', '4.5', '112', 'Manipal Institue of Technology', 'CS', '3.5', '4', '0'), (7660, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '170', '155', '325', '4', '113', 'IIT Guwahati', 'Computer Science', '6.8', '10', '0'), (7661, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '162', '158', '320', '4', 'None', 'VTU', 'CS', '77', '100', '0'), (7662, 'Cornell University', '11', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '164', '151', '315', '4', '110', 'SJCE', 'Industrial and Production Engineering', '9.34', '10', '0'), (7663, 'Cornell University', '11', 'Reject', 'MS', 'Chemical Engineering', 'Fall ', '2014', '160', '162', '322', '4', '115', 'BITS Hyderabad', 'Chemical Engineering', '8.07', '10', '0'), (7664, 'Cornell University', '11', 'Reject', 'MS', 'Operations Research', 'Fall ', '2015', '165', '157', '322', '3', '111', 'BITS Pilani', 'MECHANICAL ENGINEERING', '7.56', '10', '0'), (7665, 'Cornell University', '11', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '800', '670', '1470', '4', '113', 'NIT Calicut', 'Mechanical Engineering', '6.67', '10', '0'), (7666, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '158', '323', '4', '114', 'IIT Guwahati', 'Mathematics and Computing', '7.62', '10', '0'), (7667, 'Cornell University', '11', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '168', '157', '325', '4', '116', 'NIT Calicut', 'ECE', '8.15', '10', '0'), (7668, 'Cornell University', '11', 'Reject', 'MS', 'MIS', 'Fall ', '2015', '165', '149', '314', '3', '104', 'NITJ', 'ICE', '7.75', '10', '58'), (7669, 'Cornell University', '11', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2011', '800', '550', '1350', 'None', 'None', 'R V College of Engineering', 'Mechanical', '8.47', '10', '0'), (7670, 'Cornell University', '11', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '170', '158', '328', '4.5', '114', 'NIT Kurukshetra', 'Mech', '9.74', '10', '0'), (7671, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '750', '590', '1340', '4', '109', 'SVCE', 'CS', '8.2', '10', '0'), (7672, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '500', '1300', '4', '109', 'NIT Calicut', 'CSE', '9.25', '10', '0'), (7673, 'Cornell University', '11', 'Reject', 'MS', 'physics', 'Fall ', '2014', '167', '156', '323', '4', '105', 'NIT Calicut', 'Physics', '8.4', '10', '0'), (7674, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '165', '146', '311', '4', '103', 'Veermata Jijabai Technological Institute', 'Information Technology', '8.3', '10', '20'), (7675, 'Cornell University', '11', 'Reject', 'MS', 'Materials Science & Engineering', 'Fall ', '2015', '167', '160', '327', '4.5', '111', 'IIT Roorkee', 'Metallurgical and Materials Engineering', '9.112', '10', '0'), (7676, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '168', '143', '311', '3.5', '102', 'None', '0', '62.27', '100', '0'), (7677, 'Cornell University', '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '159', '166', '325', '4.5', '110', 'Anna University', 'EEE', '7.5', '10', '0'), (7678, 'Cornell University', '11', 'Reject', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '166', '156', '322', '4', '113', 'Pune University', 'Electronics & Telecomm', '62.9', '100', '22'), (7679, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '710', '590', '1300', '3.5', '101', 'Nirma Institute of Technology', 'Computer Engg', '7.02', '10', '0'), (7680, 'Cornell University', '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '166', '153', '319', '4', '103', 'IIT Kanpur', 'M.Tech in Laser Technology', '10', '10', '0'), (7681, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '149', '311', '3', '100', 'Charotar University of Science and Technology', 'Electronics & Communication', '8.85', '10', '36'), (7682, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '640', '1430', '3', '101', 'Nirma Institute of Technology', 'Computer engineering', '8.68', '10', '0'), (7683, 'Cornell University', '11', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '168', '125', '293', '3.5', '104', 'Pune University', 'E&TC;', '55', '100', '0'), (7684, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '165', '151', '316', '3', '103', 'NIT Allahabad', 'Computer Science and Engineering', '8.7', '10', '36'), (7685, 'Cornell University', '11', 'Reject', 'MS', 'food science', 'Fall ', '2012', '740', '470', '1210', '4', '104', 'MU', 'Biotechnology', '70.83', '100', '0'), (7686, 'Cornell University', '11', 'Reject', 'MS', 'Business Analytics', 'Fall ', '2013', '780', '610', '1390', 'None', '107', 'Amity University', 'Computer Science', '8.53', '10', '0'), (7687, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '164', '155', '319', 'None', '108', 'VTU', 'Computer Science', '72', '100', '0'), (7688, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '650', '1450', '4', '110', 'IIT Kharagpur', 'CS', '8.5', '10', '0'), (7689, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '570', '1370', '4', '109', 'M S University of Baroda', 'Computer Science', '4', '4', '0'), (7690, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '470', '1270', '4', '105', 'Delhi College Of Engineeing', 'Computer Engineering', '62.5', '100', '0'), (7691, 'Cornell University', '11', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '740', '550', '1290', '4', '107', 'University of New Orleans', 'Electrical Engineering', '3.74', '4', '0'), (7692, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '800', '670', '1470', '3.5', '104', 'Pune University', 'Computer Engineering', '66', '100', '0'), (7693, 'Cornell University', '11', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '167', '169', '336', '4.5', '117', 'BITS Pilani', 'Manufacturing Engineering', '7.97', '10', '12'), (7694, 'Cornell University', '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '169', '150', '319', '4', '105', 'UPTU', 'Electrical Engineering', '76.96', '100', '0'), (7695, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '620', '1400', '3', '109', 'University of Pune', 'Computer', '72', '100', '0'), (7696, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '165', '151', '316', '4', '109', 'VTU', 'Computer Science', '73', '100', '57'), (7697, 'Cornell University', '11', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '750', '550', '1300', '4', '108', 'YMCA', 'Computer Engineering', '76', '100', '0'), (7698, 'Cornell University', '11', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '162', '152', '314', '3.5', '112', 'NIT Allahabad', 'ECE', '7.07', '10', '84'), (7699, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '640', '1440', '3', '103', 'IIT Jabalpur', 'CS', '7.35', '10', '0'), (7700, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '169', '161', '330', '4.5', '114', 'Rajasthan Technical University', 'Computer Science Engineering', '83.1', '100', '0'), (7701, 'Cornell University', '11', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2013', '163', '154', '317', '3.5', '109', 'Manipal Institue of Technology', 'Mechanical Engineering', '7.66', '10', '0'), (7702, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '166', '325', '4', '114', 'MU', 'Computer Engg', '65', '100', '0'), (7703, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '165', '153', '318', '3.5', '108', 'GGSIPU', 'CSE', '73', '100', '44'), (7704, 'Cornell University', '11', 'Reject', 'MS', 'software engineering', 'Fall ', '2014', '166', '154', '320', '4', '112', 'Delhi College Of Engineeing', 'Computers', '70', '100', '0'), (7705, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '660', '1430', '4', '112', 'VESIT', 'Information Technology', '69', '100', '0'), (7706, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '660', '1460', '3.5', '117', 'BITS Goa', 'Computer Science(B.E) & Bio (Msc)', '8.58', '10', '0'), (7707, 'Cornell University', '11', 'Reject', 'MS', 'Materials Science & Engineering', 'Fall ', '2011', '790', '740', '1530', '4', '112', 'NIT Nagpur', 'Metallurgical and Materials Engineering', '9.39', '10', '0'), (7708, 'Cornell University', '11', 'Reject', 'MS', 'CS', 'Fall ', '2013', '770', '590', '1360', '3.5', '111', 'VTU', 'ISE', '74.5', '100', '0'), (7709, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '570', '1360', '3.5', '113', 'NMIMS', 'Computer Science', '3.24', '4', '0'), (7710, 'Cornell University', '11', 'Reject', 'MS', 'Electrical and Electronics', 'Spring ', '2014', '165', '158', '323', '3.5', '100', 'Osmania University', 'electrical and electronics engineering', '72', '100', '0'), (7711, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '790', '710', '1500', '2.5', '114', 'Anna University', 'CSE', '7.58', '10', '0'), (7712, 'Cornell University', '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '160', '154', '314', '3.5', '104', 'Biju Patnaik University of Technology', 'Electrical Engineering', '8.17', '10', '0'), (7713, 'Cornell University', '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '770', '570', '1340', '3.5', '110', 'Pune University', 'Electronics and Telecomm', '62', '100', '0'), (7714, 'Cornell University', '11', 'Reject', 'MS', 'Master of engineering management', 'Fall', 'None', '162', '149', '311', '3.5', '107', 'Amrita School of Engineering', 'Mechanical', '7.66', '10', '0'), (7715, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '167', '164', '331', '4.5', '117', 'R V College of Engineering', 'Electrical and Electronics', '85', '100', '55'), (7716, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '500', '1270', '3.5', '105', 'Anna University', 'C.S.E', '7.613', '10', '0'), (7717, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '167', '329', '5', '115', 'SRM', 'Computer science', '8.9', '10', '0'), (7718, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '750', '720', '1470', '3.5', '107', 'Sri Krishna College Of Engineering And Technology', 'computer science & engineering', '71', '100', '0'), (7719, 'Cornell University', '11', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '162', '153', '315', '3', '105', 'Model Engineering College', 'Electronics And Communication Engineering', '70', '100', '42'), (7720, 'Cornell University', '11', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '800', '570', '1370', '3.5', '106', 'Amrita Vishwa Vidhyapeetham', 'Mechanical Engineering', '8.54', '10', '0'), (7721, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '510', '1300', '3', '109', 'BITS Pilani', 'computer science', '8.4', '10', '0'), (7722, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '560', '1360', '4', '102', 'MU', 'Computer Engineering', '65', '100', '0'), (7723, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '600', '1400', '5', '114', 'NIT Tirchy', 'Electrical and Electronics Engineering', '7.8', '10', '0'), (7724, 'Cornell University', '11', 'Reject', 'MS', 'CS', 'Spring ', '2014', '160', '152', '312', '3.5', '113', 'University of Pune', 'Computer Engineering', '60.2', '100', '0'), (7725, 'Cornell University', '11', 'Reject', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2013', '163', '155', '318', '3.5', '108', 'R V College of Engineering', 'Computer Science', '78.5', '100', '0'), (7726, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '450', '1250', '3.5', '97', 'NIT Tirchy', 'INSTRUMENTATION & CONTROL ENGG', '7.98', '10', '0'), (7727, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '170', '164', '334', '3.5', '113', 'Amrita School of Engineering', 'CSE', '7.73', '10', '0'), (7728, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '780', '660', '1440', '4', '113', 'MU', 'Information Technology', '67', '100', '22'), (7729, 'Cornell University', '11', 'Reject', 'MS', 'Computational Science', 'Fall ', '2012', '800', '670', '1470', '4', '114', 'NIT Hamirpur', 'Mechanical Engineering', '8.68', '10', '0'), (7730, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '400', '1200', 'None', '91', 'BITS Goa', 'Computer Science', '7.59', '10', '0'), (7731, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '790', '470', '1260', '3', '100', 'University of Mumbai', 'Computer Science & Engineering', '59.67', '100', '0'), (7732, 'Cornell University', '11', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2014', '162', '153', '315', '3.5', 'None', 'JNTU', 'electrical engineering', '70', '100', '0'), (7733, 'Cornell University', '11', 'Reject', 'MS', 'Mechanical And Aerospace', 'Fall ', '2014', '163', '160', '323', '4.5', '113', 'University of Pune', 'Mechanical Engineering', '72', '100', '0'), (7734, 'Cornell University', '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '730', '700', '1430', '3.5', '118', 'MNIT', 'electrical', '7.2', '10', '0'), (7735, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '164', '159', '323', '4', '116', 'NIT Tirchy', 'CSE', '8.72', '10', '34'), (7736, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '169', '154', '323', '3', '112', 'Zhejiang University', 'Digital Media Technology', '87', '100', '0'), (7737, 'Cornell University', '11', 'Reject', 'MS', 'CS', 'Fall ', '2013', '770', '610', '1380', '4', '105', 'Gujarat Technological University', 'Computer Engg.', '81', '100', '0'), (7738, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '780', '560', '1340', '3', '102', 'MU', 'Computer Engineering', '74', '100', '0'), (7739, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '780', '610', '1390', '3.5', '112', 'BITS Pilani', 'Computer science', '8.44', '10', '0'), (7740, 'Cornell University', '11', 'Reject', 'MS', 'Chemical/Environmental Engg.', 'Fall ', '2011', '740', '440', '1180', '4', '104', 'NIT Surat', 'Chemical', '9.34', '10', '0'), (7741, 'Cornell University', '11', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2012', '163', '159', '322', '3.5', '98', 'IIT Madras', 'Aerospace', '8.9', '10', '0'), (7742, 'Cornell University', '11', 'Reject', 'MS', 'Electrical and computer science', 'Fall ', '2011', '760', '390', '1150', '3', '99', 'NMIMS', 'Electronics', '3.3', '4', '0'), (7743, 'Cornell University', '11', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2013', '770', '580', '1350', '3', '98', 'D j Sanghvi', 'Chemical Engineering', '59', '100', '0'), (7744, 'Cornell University', '11', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '161', '149', '310', '4', '117', 'Gujarat Technological University', 'ELECTRONICS AND COMMUNICATION', '9.13', '10', '20'), (7745, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '340', '1140', '4.5', '111', 'VTU', 'CS', '70', '100', '0'), (7746, 'Cornell University', '11', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '158', '155', '313', '4.5', '106', 'VTU', 'Electronics and Communication', '73', '100', '13'), (7747, 'Cornell University', '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '500', '1280', '3.5', '108', 'NIT Jaipur', 'Electrical Engg.', '8.41', '10', '0'), (7748, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '510', '1310', '3.5', '104', 'Anna University', 'Computer Science', '74', '100', '0'), (7749, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Spring ', '2016', '165', '145', '310', '3.5', '100', 'MU', 'Extc', '66', '100', '0'), (7750, 'Cornell University', '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '165', '155', '320', '4.5', '114', 'BITS Pilani', 'EEE', '8.46', '10', '9'), (7751, 'Cornell University', '11', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2014', '162', '162', '324', '4', '116', 'PESIT', '0', '0', '0', '0'), (7752, 'Cornell University', '11', 'Reject', 'MS', 'Chemical Engineering', 'Fall ', '2012', '750', '510', '1260', '3', '98', 'MU', 'Chemical Engg', '66.7', '100', '0'), (7753, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '14', '162', '168', '330', '4', 'None', 'MU', 'Computers', '64.5', '100', '0'), (7754, 'Cornell University', '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '167', '146', '313', '3.5', '93', 'VTU', 'ECE', '85.5', '100', '0'), (7755, 'Cornell University', '11', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2011', '800', '650', '1450', '4', '115', 'University of Pune', 'Mechanical Engineering', '65.15', '100', '0'), (7756, 'Cornell University', '11', 'Reject', 'MS', 'CS', 'Fall ', '2014', '168', '156', '324', '4', '103', 'IIT', 'ECE', '7.4', '10', '36'), (7757, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '690', '1490', '4', '111', 'NIT', 'Computer Science', '9', '10', '0'), (7758, 'Cornell University', '11', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2012', '800', '750', '1550', '5', '109', 'IIT Kharagpur', 'Aerospace Engg.', '6.71', '10', '0'), (7759, 'Cornell University', '11', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '167', '148', '315', '4', '99', 'VTU', 'Mechanical Engineering', '9.23', '10', '20'), (7760, 'Cornell University', '11', 'Reject', 'MS', 'Electronics & Communication', 'Fall ', '2012', '790', '440', '1230', '3.5', '96', 'VTU', 'ECE', '77', '100', '0'), (7761, 'Cornell University', '11', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '520', '1320', '4', '110', 'R V College of Engineering', 'ECE', '73.9', '100', '0'), (7762, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '159', '152', '311', '3', '103', 'VTU', 'Computer Science', '81', '100', '0'), (7763, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '170', '163', '333', '4.5', '112', 'Netaji Subhas Institute of Technology', 'Information Technology', '72', '100', '36'), (7764, 'Cornell University', '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '510', '1310', '3.5', 'None', 'SFIT mumbai', 'EXTC', '70', '100', '0'), (7765, 'Cornell University', '11', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '167', '158', '325', '4.5', '108', 'VIT Pune', 'Mechanical', '8.69', '10', '0'), (7766, 'Cornell University', '11', 'Reject', 'MS', 'Cell and Molecular Biology', 'Fall ', '2011', '770', '530', '1300', '4', '113', 'SVCE', 'Biotechnology', '71.38', '100', '0'), (7767, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '169', '167', '336', '4', '119', 'Sardar Patel University', 'Computer Engineering', '8.14', '10', '32'), (7768, 'Cornell University', '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '168', '157', '325', '3', '108', 'GBPUAT Pantnagar', 'Electrical', '8.3', '10', '59'), (7769, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '166', '155', '321', '4', '117', 'MU', 'CS', '68', '100', '0'), (7770, 'Cornell University', '11', 'Reject', 'MS', 'Chemical Engineering', 'Fall ', '2012', '760', '480', '1240', '3.5', '104', 'Padmashree Dr D Y Patil University', 'Biotechnology', '68', '100', '0'), (7771, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '166', '155', '321', '3', 'None', 'VIT', 'Electrical and Electronics Engineering', '7.97', '10', '0'), (7772, 'Cornell University', '11', 'Reject', 'MS', 'Engineering Management / Industrial Engineering / IMSE', 'Fall ', '2015', '170', '157', '327', '3', '99', 'Osmania University', 'Mechanical Engineering', '79.71', '100', '29'), (7773, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '590', '1390', '3.5', '111', 'NIT Nagpur', 'CSE', '7.9', '10', '0'), (7774, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '770', '540', '1310', '3.5', '114', 'Thadomal Shahani Engineering College', 'Computer Engineering', '68', '100', '0'), (7775, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '160', '321', '3', '109', 'MU', 'Electronics and Telecommunication', '67.21', '100', '18'), (7776, 'Cornell University', '11', 'Reject', 'MS', 'Information Security', 'Fall ', '2011', '780', '540', '1320', '4', '117', 'BITS Pilani', 'Computer Science', '8.4', '10', '0'), (7777, 'Cornell University', '11', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '800', '620', '1420', '3', '92', 'MIT Pune University', 'Mechanical', '68', '100', '0'), (7778, 'Cornell University', '11', 'Reject', 'MS', 'CS / SE / IT / MIS', 'Fall ', '2013', '164', '166', '330', '4', '119', 'WBUT', 'CSE', '7.83', '10', '0'), (7779, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '700', '1480', '4', '116', 'Amrita School of Engineering', 'Computer Science', '8.74', '10', '0'), (7780, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '160', '146', '306', '3.5', '106', 'Madras Institute of Technology', 'Information Technology', '8.2', '10', '54'), (7781, 'Cornell University', '11', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '800', '720', '1520', '4.5', '120', 'R V College of Engineering', 'ECE', '77.2', '100', '0'), (7782, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '164', '150', '314', '4', 'None', 'CEG', 'Computer Science', '8.99', '10', '0'), (7783, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '660', '1430', '4', '106', 'VTU', 'Information Science', '71', '100', '0'), (7784, 'Cornell University', '11', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2014', '165', '155', '320', '3', '110', 'NIT Tirchy', 'Civil Engineering', '9.3', '10', '0'), (7785, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '690', '1480', '3', '97', 'Pune University', 'Computer', '73', '100', '0'), (7786, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '150', '312', '3.5', '111', 'GZSCET Punjab Technical University', 'Computer Science and Engineering', '78.78', '100', '0'), (7787, 'Cornell University', '11', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2015', '158', '155', '313', '4.5', '115', 'MSRIT', 'Mechanical Engineering', '8.53', '10', '41'), (7788, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '156', '320', '3', '107', 'BITS Pilani', 'Computer Science', '8.19', '10', '24'), (7789, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '700', '1500', 'None', '110', 'BITS Pilani', 'Computer Science', '7.52', '10', '0'), (7790, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '163', '150', '313', '3.5', '104', 'CEG', 'Computer Science', '8.96', '10', '0'), (7791, 'Cornell University', '11', 'Reject', 'MS', 'Electronics & Communication', 'Fall ', '2012', '800', '570', '1370', '3.5', '108', 'Gujarat Technological University', 'Electronics and Communication', '7.7', '10', '0'), (7792, 'Cornell University', '11', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2011', '800', '690', '1490', '5', '116', 'Madras Institute of Technology', 'Aerospace Engineering', '8.3', '10', '0'), (7793, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (7794, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '170', '156', '326', '4', '107', 'NITK Surathkal', 'Computer Science', '7.93', '10', '0'), (7795, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '790', '710', '1500', '4.5', 'None', 'D J Sanghvi', 'IT', '67', '100', '0'), (7796, 'Cornell University', '11', 'Reject', 'MS', 'analytics', 'Fall ', '2012', '166', '152', '318', 'None', '109', 'NIT-Trichy', 'Mechanical Engg.', '7.13', '10', '0'), (7797, 'Cornell University', '11', 'Reject', 'MS', 'CS', 'Fall ', '2012', '168', '156', '324', '4.5', '111', 'BITS Pilani', 'Computer Science', '8.19', '10', '0'), (7798, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '166', '153', '319', '4.5', '108', 'MU', 'Computer Engineering', '67', '100', '0'), (7799, 'Cornell University', '11', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '166', '156', '322', '3.5', '109', 'Veermata Jijabai Technological Institute', 'Computer Technology', '8.3', '10', '22'), (7800, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '550', '1350', '3.5', 'None', 'CEG', 'B.Tech/ IT', '8.783', '10', '0'), (7801, 'Cornell University', '11', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2011', '790', '420', '1210', '4.5', '108', 'Maharashtra Institute of Technology', 'Mechanical', '65.33', '100', '0'), (7802, 'Cornell University', '11', 'Reject', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2012', '740', '570', '1310', '3', '101', 'Siddaganga Institue of Technology', 'Information Science and Engineering', '74.8', '100', '0'), (7803, 'Cornell University', '11', 'Reject', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (7804, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '168', '149', '317', '4', '109', 'MU', 'Computers', '75.9', '100', '0'), (7805, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2010', '770', '650', '1420', '4', '110', 'Birla Vishvakarma Mahavidyalaya', 'CS', '9.19', '10', '0'), (7806, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '166', '161', '327', '4', '116', 'JNTU', 'Mechanical Engineering', '69.34', '100', '24'), (7807, 'Cornell University', '11', 'Reject', 'MS', 'Materials Science & Engineering', 'Fall ', '2013', '163', '156', '319', '4', '109', 'VIT University', 'Mechanical', '8.98', '10', '0'), (7808, 'Cornell University', '11', 'Reject', 'MS', 'Operations Research', 'Fall ', '2012', '166', '161', '327', '4.5', '110', 'IIT Madras', 'Mechanical', '6.68', '10', '0'), (7809, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '149', '314', '4', '114', 'Rajiv Gandhi Institute Of Technology', '0', '72', '100', '0'), (7810, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '168', '161', '329', '4', '114', 'Institute of Technical Education and Research', 'Computer Science', '9.1', '10', '0'), (7811, 'Cornell University', '11', 'Reject', 'MS', 'Materials Science & Engineering', 'Fall ', '2015', '166', '160', '326', '4', 'None', 'PEC University of Technology', 'Materials and Metallurgical Engineering', '7.5', '10', '2'), (7812, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '159', '323', '4', '114', 'Thapar University', 'Electronics(Instrument &Contol;)', '7.95', '10', '0'), (7813, 'Cornell University', '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '750', '650', '1400', '3.5', '105', 'SSN College of Engineering', 'Electrical and Electronics', '80', '100', '0'), (7814, 'Cornell University', '11', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '170', '153', '323', '3.5', '108', 'IIT Kanpur', 'Mechancial', '9', '10', '0'), (7815, 'Cornell University', '11', 'Reject', 'MS', 'analytics', 'Fall ', '2015', '159', '157', '316', '4.5', '108', 'BITS Pilani', 'Chemical Engg', '6.76', '10', '66'), (7816, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '660', '1460', '3.5', '99', 'IIITM', 'IT', '8.58', '10', '0'), (7817, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '630', '1430', '3.5', '106', 'Bangalore Institute of Technology', 'Information Science', '70', '100', '0'), (7818, 'Cornell University', '11', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2014', '168', '152', '320', '3', '107', 'NIT Tirchy', 'EEE', '7.61', '10', '36'), (7819, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '780', '550', '1330', '3', '104', 'I.E.T D.A.V.V.', 'Computer Engineering', '69.8', '100', '0'), (7820, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '500', '1280', '4', '115', 'Dharamsinh Desai University', 'Computer Engineering', '75.25', '100', '0'), (7821, 'Cornell University', '11', 'Reject', 'MS', 'Electrical & Computer Engg/MIS/Industrial/Systems Engg', 'Fall ', '2013', '161', '142', '303', '3', '99', 'Goa University', 'etc', '58.47', '100', '0'), (7822, 'Cornell University', '11', 'Reject', 'MS', 'MIS/CS', 'Fall ', '2012', '165', '151', '316', '4', '110', 'Pune University', 'Information Technology', '67.26', '100', '0'), (7823, 'Cornell University', '11', 'Reject', 'MS', 'Marketing Communication', 'Fall ', '2012', '760', '560', '1320', '3.5', '106', 'D J Sanghvi', 'Electronics', '60.7', '100', '0'), (7824, 'Cornell University', '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '630', '1420', '3.5', '101', 'GGSIPU', 'Electronics', '72', '100', '0'), (7825, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '151', '313', '3.5', '109', 'Guru Gobind Singh Indraprashta University', 'Electronics And Communications Engg', '72.11', '100', '0'), (7826, 'Cornell University', '11', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2014', '161', '151', '312', '3.5', '109', 'Dharamsinh Desai University', 'Information Technology', '60.8', '100', '16'), (7827, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2010', '770', '570', '1340', '4.5', '114', 'PESIT', 'Computer Science and Engg', '82', '100', '0'), (7828, 'Cornell University', '11', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '166', '161', '327', '3.5', '114', 'K J Somaiya College of Engiineering', 'Mechanical Engineering', '67', '100', '0'), (7829, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '670', '1420', '2.5', '105', 'DA-IICT', 'CSE', '2.53', '4', '0'), (7830, 'Cornell University', '11', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '470', '1270', '3.5', '100', 'MU', 'I.T.', '61', '100', '0'), (7831, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '158', '147', '305', 'None', '95', 'VIT University', 'Computer Science', '9.12', '10', '0'), (7832, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '162', '158', '320', '4', '110', 'BITS Pilani', 'CS', '9.18', '10', '0'), (7833, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2010', '800', '680', '1480', '4.5', '106', 'NIT Tirchy', 'CS', '8.66', '10', '0'), (7834, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '169', '160', '329', '5', '114', 'Sardar Patel College of Engineering', 'Information Technology', '62', '100', '0'), (7835, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '750', '590', '1340', '3.5', 'None', 'Kerala University', 'Electronics and communication', '78', '100', '0'), (7836, 'Cornell University', '11', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '164', '155', '319', '3.5', '110', 'Anna University', 'Mech', '8.95', '10', '0'), (7837, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '610', '1400', '3', '105', 'VIT', 'Computer Science', '8.95', '10', '0'), (7838, 'Cornell University', '11', 'Reject', 'MS', 'Operations Research', 'Fall ', '2014', '163', '152', '315', '3', '103', 'PSG College of Technology', 'Production Engineering (SW)', '8.04', '10', '0'), (7839, 'Cornell University', '11', 'Reject', 'MS', 'Chemical Engineering', 'Fall ', '2014', '159', '143', '302', '3', '92', 'CBIT', 'Chem Engg', '65', '100', '0'), (7840, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '157', '323', '4', '113', 'R V College of Engineering', 'Information Science', '82', '100', '43'), (7841, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '430', '1180', 'None', '106', 'MU', 'Electronics and TeleCommuincation', '72', '100', '0'), (7842, 'Cornell University', '11', 'Reject', 'MS', 'CS / MSIS / ITM', 'Fall', 'None', '760', '550', '1310', '4', '110', 'Model Engineering College', 'Computer Science and Engineering', '76.1', '100', '0'), (7843, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '620', '1420', '3', '107', 'Nirma Institute of Technology', 'Computer Engineering', '8.2', '10', '0'), (7844, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '330', '1080', '3.5', '93', 'VTU', 'CS', '71.3', '100', '0'), (7845, 'Cornell University', '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '610', '1410', '4', '111', 'MU', 'EXTC', '70', '100', '0'), (7846, 'Cornell University', '11', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2015', '162', '155', '317', '4', '109', 'None', '0', '7.94', '10', '48'), (7847, 'Cornell University', '11', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2015', '800', '550', '1350', '3.5', '109', 'Sardar Patel College of Engineering', 'Electronics And Telecommunication Engg.', '72', '100', '29'), (7848, 'Cornell University', '11', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2011', '800', '570', '1370', '5', '110', 'University of Mumbai', 'Mechanical Engineering', '71.33', '100', '0'), (7849, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '650', '1450', '4.5', '116', 'Pune University', 'Computer Engineering', '3.4', '4', '0'), (7850, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '170', '154', '324', '3', '100', 'Anna University', 'CS', '75', '100', '36'), (7851, 'Cornell University', '11', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '650', '1450', '4.5', '113', 'SSN College of Engineering', 'Mechanical', '8.1', '10', '0'), (7852, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '161', '153', '314', 'None', 'None', 'UPTU', 'Computer Science', '75', '100', '0'), (7853, 'Cornell University', '11', 'Reject', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '157', '155', '312', '3.5', '102', 'B M S College of Engineering', 'Telecom', '8.33', '10', '30'), (7854, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '170', '149', '319', '3.5', '108', 'SRMSCET Bareilly (affiliated to Uttar Pradesh Technical University)', 'Computer Science and Engineering', '71.26', '100', '38'), (7855, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '167', '165', '332', '4', '118', 'MU', 'Computer Engineering', '67.6', '100', '0'), (7856, 'Cornell University', '11', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '800', '710', '1510', '4', '115', 'Guru Gobind Singh Indraprashta University', 'Computer Science', '75.5', '100', '0'), (7857, 'Cornell University', '11', 'Reject', 'MS', 'Chemical Engineering', 'Fall', 'None', '169', '157', '326', '3.5', '102', 'VIT University', 'Chemical Engineering', '8.81', '10', '0'), (7858, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '650', '1430', '3', '110', 'RGPV', 'Electronics and Telecommunication Engineering', '74.08', '100', '0'), (7859, 'Cornell University', '11', 'Reject', 'MS', 'Materials Science & Engineering', 'Fall ', '2014', '165', '161', '326', '4', '115', 'Visvesvaraya NIT Nagpur', 'Metallurgical and Materials Engineering', '8.34', '10', '0'), (7860, 'Cornell University', '11', 'Reject', 'MS', 'Microbiology', 'Fall ', '2011', '770', '580', '1350', '3.5', '111', 'Allahabad Agriculture University', 'Molecular and Cellular Engg', '9.74', '10', '0'), (7861, 'Cornell University', '11', 'Reject', 'MS', 'Cell and Molecular Biology', 'Fall ', '2014', '168', '165', '333', '5.5', '118', 'BITS Pilani', 'Biological Sciences', '9.18', '10', '0'), (7862, 'Cornell University', '11', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2015', '162', '151', '313', '4.5', '106', 'VIT', 'Electronics and Communication', '8.57', '10', '18'), (7863, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '170', '154', '324', '4.5', '113', 'UPTU', 'CSE', '78.7', '100', '0'), (7864, 'Cornell University', '11', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '790', '670', '1460', '3.5', '104', 'Manipal Institue of Technology', 'Electrical & Electronics', '8.36', '10', '0'), (7865, 'Cornell University', '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '160', '161', '321', '3', '112', 'University of Pune', 'Electronics and Telecommunications', '59.07', '100', '42'), (7866, 'Cornell University', '11', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '167', '152', '319', '3', '106', 'MU', 'Mech', '76', '100', '0'), (7867, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Spring ', '2011', '710', '660', '1370', '4', '112', 'UPTU', 'Electrical', '74.26', '100', '0'), (7868, 'Cornell University', '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '640', '1400', '3.5', '110', 'SASTRA', 'ECE', '8.54', '10', '0'), (7869, 'Cornell University', '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '168', '159', '327', '3.5', '112', 'Bangladesh University of Engineering & Technology', 'Electrical and Electronic Engineering', '3.94', '4', '0'), (7870, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '630', '1390', '4.5', '114', 'NMIMS', 'Computer Science', '3.24', '4', '0'), (7871, 'Cornell University', '11', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '790', '620', '1410', '4', '110', 'BIT Mesra', 'mechanical', '74', '100', '0'), (7872, 'Cornell University', '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '162', '158', '320', '3.5', '111', 'Manipal Institue of Technology', 'EEE', '8.2', '10', '0'), (7873, 'Cornell University', '11', 'Reject', 'MS', 'Biochemistry and Molecular biology', 'Fall ', '2011', '800', '680', '1480', '5', '117', 'BITS Pilani', 'Biological Sci Computer Science', '8.5', '10', '0'), (7874, 'Cornell University', '11', 'Reject', 'MS', 'Manufacturing Engineering', 'Fall', 'None', '162', '150', '312', '4', 'None', 'R V College of Engineering', 'Mechanical', '62.4', '100', '0'), (7875, 'Cornell University', '11', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2011', '790', '590', '1380', '3.5', '109', 'Lakshmi Niwas Mittal Institute of Information Technology Jaipur', 'Communication and Computer Engineering', '8.3', '10', '0'), (7876, 'Cornell University', '11', 'Reject', 'MS', 'nanotechnology', 'Fall ', '2013', '168', '160', '328', '3', '111', 'Jaypee Institute of Information Technology', 'Electronics & Communication', '6.5', '10', '0'), (7877, 'Cornell University', '11', 'Reject', 'MS', 'Information Science', 'Fall ', '2011', '800', '640', '1440', 'None', '112', 'Delhi College Of Engineeing', 'Computer Engineering', '73.4', '100', '0'), (7878, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '155', '322', '4', '112', 'PICT', 'IT', '3.8', '4', '0'), (7879, 'Cornell University', '11', 'Reject', 'MS', 'MEM', 'Fall ', '2014', '168', '157', '325', '4.5', '116', 'GRIET', 'ECE', '78', '100', '0'), (7880, 'Cornell University', '11', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2012', '800', '510', '1310', '3.5', '104', 'Yanbian University of Science & Technology', 'EE', '3.2', '4', '0'), (7881, 'Cornell University', '11', 'Reject', 'MS', 'Computer Engineering', 'Fall', 'None', '158', '148', '306', '3.5', '102', 'BIT Mesra', 'ECE', '7.6', '10', '0'), (7882, 'Cornell University', '11', 'Reject', 'MS', 'Engineering Management / Industrial Engineering / IMSE', 'Fall ', '2014', '166', '156', '322', '3', '104', 'Institute of Chemical Technology', 'Polymer and Surface Coating', '63.2', '100', '0'), (7883, 'Cornell University', '11', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2015', '323', '159', '482', '4', '115', 'NIT Jalandhar', 'Instrumentation and Control', '8.68', '10', '24'), (7884, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '710', '490', '1200', '4', '109', 'Anna University', 'B.E Computer Science', '84', '100', '0'), (7885, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '165', '155', '320', 'None', '107', 'VIT University', 'CS', '8.85', '10', '40'), (7886, 'Cornell University', '11', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '165', '157', '322', '4.5', '118', 'University of Pune', 'CS', '68', '100', '0'), (7887, 'Cornell University', '11', 'Reject', 'MS', 'Robotics', 'Fall ', '2012', '780', '460', '1240', '3.5', '106', 'Madras Institute of Technology', 'Electronics and Instrumentation', '8.25', '10', '0'), (7888, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '740', '570', '1310', '4', '105', 'Rajiv Gandhi Univ of Tech', 'Mechanical Engineering', '75.38', '100', '0'), (7889, 'Cornell University', '11', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2013', '800', '630', '1430', '3.5', '112', 'Osmania University', 'Electrical Engineering', '71', '100', '0'), (7890, 'Cornell University', '11', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '750', '570', '1320', '3', '106', 'UA', 'Electronics And Communication', '75.7', '100', '0'), (7891, 'Cornell University', '11', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '680', '1480', '4.5', '116', 'BIT Mesra', 'ECE', '8.24', '10', '0'), (7892, 'Cornell University', '11', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2013', '163', '155', '318', '3.5', '105', 'Jadavpur University', 'Mechanical Engineering', '8.12', '10', '0'), (7893, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2006', '800', '700', '1500', '6', '297', 'SVNIT Surat', 'Computer Engineering', '67', '100', '0'), (7894, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2007', '800', '740', '1540', '4.5', '293', 'D J Sanghvi', 'Computer Engg.', '72.91', '100', '0'), (7895, 'Cornell University', '11', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '170', '152', '322', '3', '100', 'NIT Karnataka', 'Mechanical Engineering', '9.47', '10', '0'), (7896, 'Cornell University', '11', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2012', '163', '159', '322', '3', '98', 'NIT Silchar', 'Civil Engineering', '6.54', '10', '0'), (7897, 'Cornell University', '11', 'Reject', 'MS', 'Chemical Engineering', 'Fall ', '2015', '170', '162', '332', '3.5', '110', 'NIT Calicut', 'Chemical engineering', '6.63', '10', '0'), (7898, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '168', '332', '5', '119', 'Anna University', 'Computer Science', '8.34', '10', '19'), (7899, 'Cornell University', '11', 'Reject', 'MS', 'Electrical and computer science', 'Fall ', '2013', '164', '144', '308', '3', '98', 'G.H.Patel college of Engg. & Tech.', 'EC', '8.67', '10', '0'), (7900, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '510', '1310', '4', '105', 'NIT RKL', 'CSE', '8.51', '10', '0'), (7901, 'Cornell University', '11', 'Reject', 'MS', 'Bioinformatics', 'Fall ', '2011', '770', '600', '1370', '4.5', '107', 'NIT Bhopal', 'Bioinformatics', '8.14', '10', '0'), (7902, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '460', '1260', '4', '103', 'NIT Surat', 'Computer Engineering', '8.11', '10', '0'), (7903, 'Cornell University', '11', 'Reject', 'MS', 'Human Computer Interaction', 'Fall ', '2014', '161', '156', '317', '4', '113', 'PESIT', 'Computer Science', '79.9', '100', '0'), (7904, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '165', '164', '329', '4.5', '117', 'GITAM', 'Computer Science and Engineering', '7.83', '10', '0'), (7905, 'Cornell University', '11', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '165', '160', '325', '3', '118', 'Thapar University', 'Computer Science', '9.61', '10', '0'), (7906, 'Cornell University', '11', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2014', '168', '163', '331', '4.5', '110', 'West Bengal University Of Technology', 'Electrical engg', '8.07', '10', '30'), (7907, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '620', '1390', '4', '98', 'D J Sanghvi', 'IT', '66.58', '100', '0'), (7908, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '161', '328', '4', '107', 'R V College of Engineering', 'Information Science and Engineering', '9.43', '10', '0'), (7909, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '156', '141', '297', '3.5', '90', 'Cummins College of Engineering Pune', 'computer science', '64', '100', '0'), (7910, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '151', '312', '3.5', '106', 'Sardar Patel College of Engineering', 'Information Technology', '71.47', '100', '0'), (7911, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '161', '155', '316', '4', '114', 'MU', 'Information Technology', '63.5', '100', '0'), (7912, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '510', '1310', '4', '113', 'Pune University', 'Computer Science', '67', '100', '0'), (7913, 'Cornell University', '11', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2014', '170', '163', '333', '4', '111', 'COEP', 'Electrical Engineering', '8.51', '10', '0'), (7914, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '640', '1400', '4', '109', 'UPTU', 'Computer Science', '78', '100', '0'), (7915, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '161', '148', '309', '4', '95', 'Amrita School of Engineering', 'Information Technology', '7.89', '10', '0'), (7916, 'Cornell University', '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '740', '550', '1290', '4', '115', 'Anna University', 'ECE', '79', '100', '0'), (7917, 'Cornell University', '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '770', '530', '1300', '4', '108', 'Anna University', 'ECE', '78.74', '100', '0'), (7918, 'Cornell University', '11', 'Reject', 'MS', 'EE / CS', 'Fall ', '2015', '163', '160', '323', '4', '111', 'BITS Pilani', 'Electrical and Electronics', '7.99', '10', '54'), (7919, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '170', '152', '322', '4', '103', 'PESIT', 'computer science', '73.88', '100', '0'), (7920, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '166', '153', '319', '3.5', '111', 'IIIT Allahabad', 'CS', '8.52', '10', '24'), (7921, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '154', '313', '3.5', '97', 'SVCE', 'EEE', '75.04', '100', '0'), (7922, 'Cornell University', '11', 'Reject', 'MS', 'Electronics and Communication', 'Spring ', '2012', '800', '570', '1370', '3', '100', 'NIT Jaipur', 'Electronics and Communication Engg.', '8.51', '10', '0'), (7923, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '640', '1440', '4', '110', 'BITS Pilani', 'Computer Science', '8.5', '10', '0'), (7924, 'Cornell University', '11', 'Reject', 'MS', 'Master of engineering management', 'Fall ', '2015', '163', '155', '318', '3.5', '112', 'Govt. College Of Engineering Pune (CoEP)', 'Production Engineering (Sandwich)', '7.1', '10', '18'), (7925, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '700', '1490', '5', '119', 'VTU', 'Computer Science and Engineering', '72.5', '100', '0'), (7926, 'Cornell University', '11', 'Reject', 'MS', 'Human Resources', 'Fall ', '2014', '160', '156', '316', '4', '104', 'VTU', 'E&EE;', '61', '100', '0'), (7927, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '690', '1460', 'None', '118', 'Anna University', 'Computer Engineering', '73', '100', '0'), (7928, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '650', '1450', '4', '116', 'SRM', 'Information Technology', '9.8', '10', '0'), (7929, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '168', '332', '5', '114', 'Jadavpur University', 'Information Technology', '8.8', '10', '0'), (7930, 'Cornell University', '11', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2014', '730', '700', '1430', '4', '109', 'VTU', 'cs', '72.6', '100', '0'), (7931, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '800', '650', '1450', '4.5', '115', 'D j Sanghvi', 'Computer', '75.98', '100', '0'), (7932, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '150', '314', '2.5', '101', 'NIT Calicut', 'Computer Science and Enginering', '8.28', '10', '0'), (7933, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '720', '1520', '5', '116', 'VJTI', 'Computer Engineering', '8.5', '10', '0'), (7934, 'Cornell University', '11', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2013', '800', '680', '1480', '3.5', '109', 'MU', 'Elec. and Telecommunications', '67.85', '100', '0'), (7935, 'Cornell University', '11', 'Admit', 'M.Eng.', 'Engineering Management', 'Fall', '2019', '170', '150', '320', '3.5', '116', 'Motilal Nehru National Institute of Technology Allahabad', 'Mechanical Engineering', '8.83', '10', '0'), (7936, 'Dalhousie University', '13', 'Admit', 'MSc', 'Computer Science', 'Fall', '2019', '157', '147', '304', '4', '-1', 'SRM University', 'Computer Science', '80.6', '100', '0'), (7937, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '165', '152', '317', '3.5', '101', 'VTU', 'telecommunications', '86.19', '100', '0'), (7938, 'George Mason University', '13', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '158', '144', '302', '4', '107', 'MU', 'CS', '0', '0', '0'), (7939, 'George Mason University', '13', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '159', '144', '303', 'None', 'None', 'Pune University', 'CS', '70', '100', '0'), (7940, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '330', '1090', '3', '89', 'Dr. M.G.R. University', 'ECE', '8.86', '10', '0'), (7941, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '148', '312', '3', '106', 'Sri Venkateswara College of Engineering', 'Computer Science and Engineering', '7.71', '10', '0'), (7942, 'George Mason University', '13', 'Admit', 'MS', 'Information Security', 'Fall ', '2009', '740', '540', '1280', '5', '113', 'VTU', 'CS', '67', '100', '0'), (7943, 'George Mason University', '13', 'Admit', 'MS', 'Information Security', 'Fall ', '2013', '158', '148', '306', '3', '94', 'Rajasthan Technical University', 'Computer Engineering', '67', '100', '0'), (7944, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '800', '500', '1300', '3', '97', 'Panjab University', 'BE(CS)', '67.4', '100', '0'), (7945, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '700', '640', '1340', '3.5', '104', 'MU', 'electronics', '59', '100', '0'), (7946, 'George Mason University', '13', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2011', '710', '490', '1200', '3.5', '108', 'JNTU', 'EEE', '62', '100', '0'), (7947, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '660', '1440', '4', '111', 'MU', 'Computer Enginnering', '69', '100', '0'), (7948, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '570', '1370', '3.5', '100', 'MU', 'Computer Engineering', '0', '0', '0'), (7949, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '800', '480', '1280', '4', '104', 'MU', 'Computer Dept.', '68', '100', '0'), (7950, 'George Mason University', '13', 'Admit', 'MS', 'MIS', 'Spring ', '2015', '167', '150', '317', '4', '106', 'Anna University', 'ECE', '73.34', '100', '47'), (7951, 'George Mason University', '13', 'Admit', 'MS', 'CS', 'Fall ', '2012', '800', '700', '1500', '4', 'None', 'University of Mumbai', 'Computer', '64', '100', '0'), (7952, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '530', '1320', '3.5', '102', 'Sinhgad College of Engineering', 'Computer', '53', '100', '0'), (7953, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '770', '480', '1250', '3', '99', 'GRIET', 'CSE', '75.87', '100', '0'), (7954, 'George Mason University', '13', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '740', '630', '1370', '4.5', 'None', 'VTU', 'Electronics and Communication', '64', '100', '0'), (7955, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '580', '1360', '4', 'None', 'BITS Pilani', 'Mechanical', '7.8', '10', '0'), (7956, 'George Mason University', '13', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '710', '470', '1180', '3.5', '97', 'Sinhgad College of Engineering', 'Electronics & Telecommunications', '55', '100', '0'), (7957, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '153', '317', '4', '102', 'MSRIT', 'Computer Science', '75', '100', '0'), (7958, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '680', '1480', '5', '116', 'MU', 'Computer', '67.4', '100', '0'), (7959, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2009', '770', '570', '1340', '4', '113', 'Cochin University of Science and Technology', 'Computer Science & Engineering', '68', '100', '0'), (7960, 'George Mason University', '13', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2015', '160', '146', '306', '3.5', '100', 'VTU', 'E&C;', '8.02', '10', '0'), (7961, 'George Mason University', '13', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '161', '150', '311', '4.5', '104', 'University of Mumbai', 'Computer Engineering', '62.2', '100', '0'), (7962, 'George Mason University', '13', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '162', '141', '303', '3', '92', 'Sir MVIT', 'Electronics and communication', '67', '100', '16'), (7963, 'George Mason University', '13', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '470', '1270', '3', '100', 'ANU', 'ECE', '78.6', '100', '0'), (7964, 'George Mason University', '13', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '157', '141', '298', '3', '92', 'Maharishi Dayanand University', 'Electronics and Communication Engineering', '70', '100', '0'), (7965, 'George Mason University', '13', 'Admit', 'MS', 'Electronics & Communication', 'Fall ', '2012', '720', '620', '1340', '3.5', '108', 'Sri Venkateswara College of Engineering', 'ECE', '8.05', '10', '0'), (7966, 'George Mason University', '13', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2011', '720', '560', '1280', '3.5', '100', 'Jaypee Institute of Information Technology', 'Dept of Bioinformatics and Biotechnology', '74', '100', '0'), (7967, 'George Mason University', '13', 'Admit', 'MS', 'International Affairs.', 'Fall ', '2013', '150', '148', '298', '4', '104', 'None', '0', '77', '100', '0'), (7968, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '790', '470', '1260', '3.5', '105', 'Pune University', 'Electronics and Telecomm.', '56', '100', '0'), (7969, 'George Mason University', '13', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '159', '150', '309', '3', '102', 'MU', 'EXTC', '60.77', '100', '12'), (7970, 'George Mason University', '13', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '430', '680', '1110', '3', '96', 'Anna University', 'ECE', '76', '100', '0'), (7971, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Spring ', '2011', '720', '530', '1250', '3.5', '93', 'Amity School of Engineering and Technology', 'ECE', '6.43', '10', '0'), (7972, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '157', '151', '308', '4', '104', 'Anna University', 'IT', '71', '100', '0'), (7973, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '510', '1310', '4', '100', 'VIT Mumbai University', 'Computer Engg', '57.38', '100', '0'), (7974, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '490', '1260', '3', '101', 'MU', 'Computer Science', '63', '100', '0'), (7975, 'George Mason University', '13', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2012', '720', '320', '1040', '3', '96', 'JNTU', 'ECE', '62', '100', '0'), (7976, 'George Mason University', '13', 'Admit', 'MS', 'Telecommunication', 'Fall', 'None', '155', '145', '300', 'None', '100', 'MU', 'EXTC', '71', '100', '0'), (7977, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '168', '145', '313', '2.5', '87', 'CBIT', 'CSE', '80', '100', '0'), (7978, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '148', '312', '3', '112', 'WBUT', 'ECE', '8.16', '10', '0'), (7979, 'George Mason University', '13', 'Admit', 'MS', 'Computer Engineering', 'Fall', 'None', '165', '150', '315', '4', '112', 'Gayatri Vidya Parishad College of Engineering', 'Electronics and Communication Engineering', '63', '100', '0'), (7980, 'George Mason University', '13', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2012', '620', '560', '1180', '3.5', '99', 'MU', 'Electronics and Telecomm', '65', '100', '0'), (7981, 'George Mason University', '13', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '780', '530', '1310', '3', '95', 'Gujarat Technological University', 'mechanical', '6.38', '10', '0'), (7982, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '740', '510', '1250', 'None', 'None', 'Jaypee Institute of Information Technology', 'ECE', '8.2', '10', '0'), (7983, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '740', '610', '1350', '3.5', '92', 'MU', 'Computers', '70.58', '100', '0'), (7984, 'George Mason University', '13', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2006', '760', '380', '1140', '3.5', '253', 'None', '0', '0', '0', '0'), (7985, 'George Mason University', '13', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Spring ', '2011', '780', '530', '1310', '3', '92', 'klce', 'IT', '74', '100', '0'), (7986, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '490', '1270', '3.5', '99', 'RAIT', 'Electronics', '65', '100', '0'), (7987, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '700', '320', '1020', '3.5', '8', 'VIIT', 'E&TC;', '67', '100', '0'), (7988, 'George Mason University', '13', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '800', '320', '1120', 'None', 'None', 'VIT University', 'BTECH-I.T', '8.9', '10', '0'), (7989, 'George Mason University', '13', 'Admit', 'MS', 'Electronics and Communication', 'Spring ', '2012', '760', '380', '1140', '3', '97', 'VITU', 'SENSE', '8.7', '10', '0'), (7990, 'George Mason University', '13', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2015', '740', '470', '1210', '3', '106', 'MDU', 'EEE', '58', '100', '0'), (7991, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '154', '149', '303', '3.5', '97', 'None', '0', '0', '0', '0'), (7992, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '161', '153', '314', '4', '112', 'Guru Gobind Singh Indraprashta University', 'Electronics and Communication', '82', '100', '0'), (7993, 'George Mason University', '13', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (7994, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '800', '510', '1310', '3.5', '108', 'Bhilai Institute of Technology', 'Electrical Engineering', '66.2', '100', '0'), (7995, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '149', '308', '3', '102', 'MU', 'computer engg', '66', '100', '0'), (7996, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '750', '330', '1080', '2.5', 'None', 'JNTU', 'Information Technology', '72.8', '100', '0'), (7997, 'George Mason University', '13', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '155', '144', '299', '3.5', '97', 'MU', 'Information Technology', '58', '100', '0'), (7998, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '152', '318', '4', '105', 'mgit jntu-hyd', 'information technology', '62', '100', '0'), (7999, 'George Mason University', '13', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '740', '230', '970', '2.5', '96', 'None', '0', '0', '0', '0'), (8000, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '730', '550', '1280', 'None', '233', 'Vidyalankar Institute of Technology', 'computers', '64', '100', '0'), (8001, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '152', '149', '301', '2.5', 'None', 'Acharya Nagarjuna University', 'electrical', '0', '0', '0'), (8002, 'George Mason University', '13', 'Admit', 'MS', 'Computer Networks', 'Fall ', '2012', '720', '580', '1300', '2.5', '84', 'Pune University', 'E&TC;', '58', '100', '0'), (8003, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '680', '460', '1140', '3', '89', 'GITAM', 'IT', '7.32', '10', '0'), (8004, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '730', '440', '1170', '4', '105', 'University of Rajasthan', 'Computer Science', '75.7', '100', '0'), (8005, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '740', '350', '1090', '3.5', '99', 'VTU', 'ECE', '73', '100', '0'), (8006, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '490', '1260', '3.5', '109', 'JNTU', 'Computer Science', '70', '100', '0'), (8007, 'George Mason University', '13', 'Admit', 'MS', 'software engineering', 'Fall ', '2015', '160', '149', '309', '3', '102', 'IIT Madras', 'Biotechnology', '7.23', '10', '54'), (8008, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '164', '150', '314', '3.5', '105', 'SCOET', 'Computer Science', '68', '100', '0'), (8009, 'George Mason University', '13', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '780', '560', '1340', '3.5', '104', 'MU', 'Electronics & Telecommunication', '62', '100', '0'), (8010, 'George Mason University', '13', 'Admit', 'MS', 'Telecommunication', 'Spring ', '2015', '154', '151', '305', '3.5', '107', 'University of Pune', 'Electronics & Telecommunication', '53', '100', '0'), (8011, 'George Mason University', '13', 'Admit', 'MS', 'Information Security', 'Spring ', '2014', '1050', '350', '1400', '3', 'None', 'None', '0', '0', '0', '0'), (8012, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '750', '500', '1250', '4', '110', 'VTU', 'Telecommunication', '74', '100', '0'), (8013, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '155', '151', '306', '3', '105', 'Don Bosco Institute of Technology', 'Information Technology', '55', '100', '0'), (8014, 'George Mason University', '13', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '700', '400', '1100', '3', '102', 'JNTU', 'ECE', '75', '100', '0'), (8015, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '160', '323', '3.5', '108', 'MU', 'Computer Engineering', '58', '100', '33'), (8016, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '150', '149', '299', '2.5', '105', 'SNIST', 'CSE', '63.2', '100', '0'), (8017, 'George Mason University', '13', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2011', '730', '320', '1050', '2.5', '86', 'MU', 'extc', '61.31', '100', '0'), (8018, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '156', '320', '4', '110', 'MITCOE University of Pune', 'IT', '56.57', '100', '0'), (8019, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '750', '380', '1130', '2.5', '88', 'SNIST', 'computer science', '76', '100', '0'), (8020, 'George Mason University', '13', 'Admit', 'MS', 'Telecommunication', 'Spring ', '2012', '790', '420', '1210', '3.5', '106', 'Dharamsinh Desai University', 'EC', '58.5', '100', '0'), (8021, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '162', '150', '312', '3.5', '98', 'Dharamsinh Desai University', 'Information Technology', '8.43', '10', '0'), (8022, 'George Mason University', '13', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2010', '740', '600', '1340', '5', '104', 'Padmashree Dr D Y Patil University', 'Department of Biotechnology and Bioinformatics', '72.4', '100', '0'), (8023, 'George Mason University', '13', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '157', '149', '306', '3.5', '103', 'None', '0', '0', '0', '0'), (8024, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '157', '146', '303', '4', '94', 'VTU', 'Computer Science', '64', '100', '50'), (8025, 'George Mason University', '13', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '155', '144', '299', '3.5', '96', 'VTU', 'Instrumentation Technology', '77', '100', '0'), (8026, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '580', '1350', '3.5', '96', 'Pune University', 'Computer Science', '63', '100', '0'), (8027, 'George Mason University', '13', 'Admit', 'MS', 'Information Security', 'Fall ', '2014', '162', '162', '324', '3', 'None', 'NIT Arunachal Pradesh', 'Computer Science and Engineering', '7.85', '10', '0'), (8028, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '156', '149', '305', '3.5', '99', 'University of Mumbai', 'Electronics and Telecommunication', '60.2', '100', '0'), (8029, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '750', '430', '1180', '3.5', '96', 'MU', 'computers', '64', '100', '0'), (8030, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '149', '151', '300', '3', '100', 'Sathyabama University', 'ECE', '65', '100', '0'), (8031, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '162', '323', '3', '112', 'Rajasthan Technical University', 'Computer Science', '67.15', '100', '0'), (8032, 'George Mason University', '13', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '390', '1190', '2.5', '96', 'Osmania University', 'ECE', '69', '100', '0'), (8033, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '158', '321', '3.5', '103', 'None', 'CSE', '3.75', '4', '0'), (8034, 'George Mason University', '13', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2013', '159', '161', '320', '3', '108', 'Nitte institute of technology', 'Electronics and communication', '7.95', '10', '0'), (8035, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '490', '1290', '3', '100', 'Osmania University', 'CSE', '83', '100', '0'), (8036, 'George Mason University', '13', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '800', '710', '1510', '4', '116', 'D J Sanghvi', 'Electronics', '58.5', '100', '16'), (8037, 'George Mason University', '13', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '160', '148', '308', '3.5', '107', 'University of Mumbai', 'Information Technology', '53', '100', '0'), (8038, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '760', '500', '1260', '3.5', '98', 'GVPCOE Vizag', 'CSE', '68', '100', '0'), (8039, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '730', '490', '1220', '3', '102', 'JNTU', 'CSE', '73', '100', '0'), (8040, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '157', '148', '305', '2.5', 'None', 'Anna University', 'Electronics and Communication', '0', '0', '0'), (8041, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '540', '1330', '3', '102', 'University of Pune', 'Computer Engineering', '57.8', '100', '0'), (8042, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '730', '560', '1290', '4', '102', 'University of Mumbai', 'CE', '57.2', '100', '0'), (8043, 'George Mason University', '13', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '780', '420', '1200', '3', '99', 'Iran', '0', '0', '0', '0'), (8044, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '620', '1410', '3', '104', 'Pondicherry Engineering College', 'cse', '7.89', '10', '0'), (8045, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2009', '730', '480', '1210', '3', '94', 'Osmania University', 'E.C.E', '68.66', '100', '0'), (8046, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2007', '750', 'None', '750', 'None', '100', 'NMIT', 'ECE', '0', '0', '0'), (8047, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '730', '660', '1390', '5', '300', 'MU', 'Computers', '68.27', '100', '0'), (8048, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '158', '155', '313', '3', '106', 'MU', 'Electronics and Telecommunication', '63', '100', '0'), (8049, 'George Mason University', '13', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '166', '156', '322', '3.5', '111', 'JNTU', 'CS', '63', '100', '0'), (8050, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2011', '710', '600', '1310', '2.5', '88', 'MU', 'EXTC', '56.4', '100', '0'), (8051, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '740', '450', '1190', '4', '273', 'U.P.Technical University', 'Eleectronics and Communication', '66', '100', '0'), (8052, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '470', '1270', '3.5', '100', 'SIES Graduate School of Technology', 'Computer', '53.38', '100', '0'), (8053, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '390', '1190', '3.5', '97', 'VIT', 'Computer Science', '82', '100', '0'), (8054, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '159', '144', '303', '3.5', '95', 'JNTU', 'IT', '74.41', '100', '0'), (8055, 'George Mason University', '13', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2010', '770', '320', '1090', '3.5', '98', 'VTU', 'Electronics and Communication Engineering', '70', '100', '0'), (8056, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '680', '460', '1140', '3', '89', 'GITAM', 'Information Technology', '7.01', '10', '0'), (8057, 'George Mason University', '13', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '161', '146', '307', '3.5', '99', 'University of Pune', 'EC', '67.53', '100', '36'), (8058, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '740', '550', '1290', '3', '107', 'MU', 'Computer Engineering', '63', '100', '0'), (8059, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '158', '146', '304', '3.5', 'None', 'Velammal Engineering College', 'BE - computer science', '83', '100', '0'), (8060, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '157', '143', '300', '3', '7', 'JNTU', 'CSE', '75', '100', '0'), (8061, 'George Mason University', '13', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '164', '145', '309', 'None', '82', 'Vignan Institute of Technology and Science', 'ECE', '8.7', '100', '0'), (8062, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '163', '152', '315', '3', '95', 'UIET Punjab University', 'Information Technology', '62', '100', '0'), (8063, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '155', '316', '3.5', '108', 'University of Calicut', 'Computer Science', '63', '100', '0'), (8064, 'George Mason University', '13', 'Admit', 'MS', 'Information Security', 'Fall ', '2015', '166', '159', '325', '4', '116', 'VIT', 'IT', '8.67', '10', '25'), (8065, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '710', '420', '1130', '3', '97', 'M.G.M College of Eng', 'Computer', '72', '100', '0'), (8066, 'George Mason University', '13', 'Admit', 'MS', 'CyberSecurity', 'Fall ', '2013', '160', '146', '306', '2.5', '90', 'Rajasthan Technical University', 'Computer Engineering', '74.4', '100', '0'), (8067, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '163', '149', '312', '3.5', '106', 'RD Nation', 'BSC IT', '68', '100', '24'), (8068, 'George Mason University', '13', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2013', '760', '420', '1180', '3', '101', 'Pune University', 'E&Tc;', '59', '100', '0'), (8069, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '520', '1320', '3', '105', 'PESIT', 'Information Science and Engg', '8.8', '10', '0'), (8070, 'George Mason University', '13', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '750', '610', '1360', '3.5', '110', 'VTU', 'Electronics and Communications', '70.66', '100', '0'), (8071, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '720', '1520', '5.5', '118', 'None', '0', '0', '0', '0'), (8072, 'George Mason University', '13', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2007', '800', '550', '1350', '4.5', '283', 'MU', 'Electronics', '55', '100', '0'), (8073, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '380', '1180', '3', '94', 'MDU', 'Computer Science', '61', '100', '0'), (8074, 'George Mason University', '13', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2008', '790', '350', '1140', '3', '104', 'K J Somaiya College of Engiineering', 'EXTC', '70', '100', '0'), (8075, 'George Mason University', '13', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '152', '138', '290', '4', '95', 'K J Somaiya College of Engiineering', 'Electronics', '67', '100', '0'), (8076, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '148', '308', '3', 'None', 'BPUT', '0', '7.4', '10', '0'), (8077, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2010', '780', '450', '1230', '3.5', '96', 'Panimalar Engineering College', 'ELECTRONICS AND COMMUNICATION', '75', '100', '0'), (8078, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '680', '580', '1260', '3.5', '104', 'University of Mumbai', 'Computer Engineering', '59', '100', '0'), (8079, 'George Mason University', '13', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2014', '161', '152', '313', '4', '108', "St Joseph's College of Engineering", 'Electronics and Communication', '6.88', '10', '20'), (8080, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '530', '1300', '3.5', '100', 'None', 'Computer engineering', '69', '100', '0'), (8081, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '154', '318', '4', '108', 'NIT Kurukshetra', 'Computers', '9.3376', '10', '0'), (8082, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2013', '158', '145', '303', '3.5', '93', 'JNTU', 'Electronics and Instrumentation', '66.56', '100', '0'), (8083, 'George Mason University', '13', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (8084, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'BNMIT', 'ECE', '0', '0', '0'), (8085, 'George Mason University', '13', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '710', '480', '1190', '4', '109', 'MU', 'ELECTRONICS', '67', '100', '0'), (8086, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '146', '304', '4', 'None', 'University of Mumbai', 'COMPUTER ENGINEERING', '60.48', '100', '0'), (8087, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '690', '500', '1190', '3', '98', 'GGSIPU', 'computer science', '80', '100', '0'), (8088, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '167', '141', '308', '2.5', '86', 'JNTU', 'electronics and communication engineering', '67.8', '100', '0'), (8089, 'George Mason University', '13', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '165', '144', '309', '3', '85', 'JNTU', 'ece', '77.5', '100', '0'), (8090, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '400', '1200', '2.5', '102', 'K J Somaiya College of Engiineering', 'Electronics', '62', '100', '0'), (8091, 'George Mason University', '13', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '159', '150', '309', '2.5', '95', 'MU', 'Electronics and telecommunication', '63.5', '100', '39'), (8092, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '147', '310', '3', '99', 'K J Somaiya College of Engiineering', 'Computers', '62', '100', '0'), (8093, 'George Mason University', '13', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '780', '610', '1390', '3.5', '110', 'VTU', 'electronics', '73', '100', '0'), (8094, 'George Mason University', '13', 'Admit', 'MS', 'Information Systems', 'Fall ', '2012', '760', '330', '1090', '3', '95', 'JNTU', 'CSE', '67', '100', '0'), (8095, 'George Mason University', '13', 'Admit', 'MS', 'Information Security', 'Fall ', '2012', '800', '390', '1190', '3.5', '97', 'MU', 'Computer Engineering', '63', '100', '0'), (8096, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '370', '1170', '3', '100', 'CVRCE', 'cse', '68', '100', '0'), (8097, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '151', '315', '3', '101', 'MU', 'Information Technology', '71', '100', '0'), (8098, 'George Mason University', '13', 'Admit', 'MS', 'Computational Science', 'Fall', 'None', '156', '150', '306', 'None', '103', 'None', '0', '0', '0', '0'), (8099, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '560', '1360', '3.5', '108', 'RAIT', 'Computer', '58', '100', '0'), (8100, 'George Mason University', '13', 'Admit', 'MS', 'Health Informatics', 'Fall ', '2014', '149', '153', '302', '3.5', '110', 'Padmashree Dr D Y Patil University', 'Btech Bioinformatics', '63', '100', '0'), (8101, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '460', '1260', '4', '89', 'MU', 'ELECTRONICS AND TELECOMMUNICATION', '67.8', '100', '0'), (8102, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '780', '400', '1180', '4', '260', 'MU', 'Computers', '62', '100', '0'), (8103, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '141', '305', '4', '102', 'GRIET', 'Information Technology', '0', '0', '0'), (8104, 'George Mason University', '13', 'Admit', 'MS', 'Computational Science', 'Fall ', '2013', '155', '158', '313', 'None', '103', 'D.V.R College of Engineering and Technology', 'Information Technology', '67.49', '100', '0'), (8105, 'George Mason University', '13', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2013', '161', '149', '310', '4', '105', 'University of Mumbai', 'Electronics', '0', '0', '0'), (8106, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '760', '360', '1120', '3', '100', 'BMSCE', 'Computer science', '75', '100', '0'), (8107, 'George Mason University', '13', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2011', '760', '680', '1440', '4', '110', 'Dr. D. Y. Patil University', 'Dept. Of Biotechnology & Bioinformatics', '4', '4', '0'), (8108, 'George Mason University', '13', 'Admit', 'MS', 'EE / CS', 'Fall ', '2013', '800', '410', '1210', '3', '115', 'RKNEC', 'EC', '74.55', '100', '0'), (8109, 'George Mason University', '13', 'Admit', 'MS', 'CS', 'Fall ', '2013', '700', '560', '1260', '3', '108', 'MU', 'I.T', '69', '100', '0'), (8110, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '470', '1250', '3', '106', 'MU', 'Instrumentation', '62.84', '100', '0'), (8111, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '750', '650', '1400', '4', '110', 'Crescent Engineering College', 'CSE', '72', '100', '0'), (8112, 'George Mason University', '13', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '160', '145', '305', '3.5', '96', 'Thadomal Shahani Engineering College', 'EXTC', '65', '100', '0'), (8113, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2009', '1130', '430', '1560', '710', '98', 'Bandodkar College of Science', 'IT', '67', '100', '0'), (8114, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '156', '155', '311', '3.5', '110', 'NIT Durgapur', 'Information Technology', '7.94', '10', '0'), (8115, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '620', '1420', '4.5', '109', 'Guru Gobind Singh Indraprashta University', 'Computer Science', '84', '100', '0'), (8116, 'George Mason University', '13', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '760', '520', '1280', '3.5', '86', 'University of Mumbai', 'Instrumentation', '0', '0', '0'), (8117, 'George Mason University', '13', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2013', '156', '142', '298', '3', '97', 'SIES Graduate School of Technology', 'EXTC', '0', '0', '0'), (8118, 'George Mason University', '13', 'Admit', 'MS', 'Information Security', 'Fall ', '2012', '158', '145', '303', '3', 'None', 'VTU', 'Electronics and communication', '56', '100', '0'), (8119, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '158', '149', '307', '2.5', '80', 'gayathri engineering college', 'ece', '80', '100', '0'), (8120, 'George Mason University', '13', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '161', '151', '312', '3.5', '97', 'BMSIT', 'Computer Science', '70', '100', '0'), (8121, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '790', '530', '1320', '3', '100', 'VTU', 'Information Science & Engineering', '68.09', '100', '0'), (8122, 'George Mason University', '13', 'Admit', 'MS', 'Electrical & Computer Engg/MIS/Industrial/Systems Engg', 'Fall ', '2011', '760', '300', '1060', '3', '101', 'Kakatiya University', 'EEE', '66', '100', '0'), (8123, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '155', '318', '3.5', '103', 'St.Francis Institute of Technology', 'Computer Engineering', '57.4', '100', '0'), (8124, 'George Mason University', '13', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '690', '670', '1360', '4', '105', 'Nagpur University', 'BCA Post Grad Diploma in CS', '58', '100', '0'), (8125, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '152', '310', '3', '100', 'JNTU', 'cse', '62', '100', '0'), (8126, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2007', '790', '420', '1210', '3.5', '257', 'MU', 'Electronics', '60', '100', '0'), (8127, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '720', '510', '1230', '3', '106', 'MU', 'Computer Engineering', '69', '100', '0'), (8128, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '510', '1310', '3', '100', 'Jaypee Institute of Information Technology', 'ECE', '7', '10', '0'), (8129, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '610', '1410', '3.5', '106', 'Delhi College Of Engineeing', 'IT', '74.1', '100', '0'), (8130, 'George Mason University', '13', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2009', '760', '370', '1130', '4', '106', 'Atharva College', 'Electronics and Telecommunicatons', '57', '100', '0'), (8131, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '730', '410', '1140', '3.5', '101', 'Rajasthan Technical University', 'Computer Science', '63', '100', '0'), (8132, 'George Mason University', '13', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2012', '157', '145', '302', '3', '94', 'Cummins College of Engineering Pune', 'E&TC;', '0', '0', '0'), (8133, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '730', '300', '1030', '2.5', '86', 'SVCE', 'ECE', '0', '0', '0'), (8134, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '150', '310', '3', '102', 'JNTU', 'CSE', '77.92', '100', '0'), (8135, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '580', '1380', '3', '92', 'None', '0', '0', '0', '0'), (8136, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '156', '139', '295', '3', '93', 'JNTU', 'eee', '67', '100', '0'), (8137, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '152', '150', '302', '3', '93', 'None', '0', '3.87', '4', '0'), (8138, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '151', '313', '3.5', '106', 'MU', 'Computer Engineering', '60.25', '100', '58'), (8139, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2009', '700', '340', '1040', '3.5', '106', 'MU', 'Electronics', '58', '100', '0'), (8140, 'George Mason University', '13', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '720', '450', '1170', '3', '100', 'MU', 'Information Technology', '69', '100', '0'), (8141, 'George Mason University', '13', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '160', '147', '307', '3.5', '98', 'Pune University', 'CS', '0', '0', '0'), (8142, 'George Mason University', '13', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '740', '300', '1040', '3', '88', 'M.H.S.S', 'Electronics and Telecommunications', '0', '0', '0'), (8143, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '156', '138', '294', '3.5', '92', 'M.D.U.', 'Computer science', '66', '100', '0'), (8144, 'George Mason University', '13', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '680', '600', '1280', '3.5', '97', 'MU', 'I.T', '66', '100', '0'), (8145, 'George Mason University', '13', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '320', '1110', 'None', '94', 'Pune University', 'Elex & Telecom', '68', '100', '0'), (8146, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '500', '1260', '4', '98', 'Xavier Institute of Engineering University of Mumbai', 'Computer Engineering', '60.084', '100', '0'), (8147, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '420', '1170', '3', '94', 'TCET mumbai university', 'Information technology', '62.42', '100', '0'), (8148, 'George Mason University', '13', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2011', '770', '530', '1300', '3.5', '106', 'SAKEC Mumbai University', 'Electronics', '70.23', '100', '0'), (8149, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '151', '313', '3.5', '98', 'DMCE University of Mumbai', 'Electronics', '57', '100', '0'), (8150, 'George Mason University', '13', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '157', '150', '307', '3', '95', 'Amity University', 'CSE', '8.35', '10', '0'), (8151, 'George Mason University', '13', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '159', '146', '305', '3', '89', 'VTU', 'EC', '65', '100', '24'), (8152, 'George Mason University', '13', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '12', '750', '580', '1330', '3', '90', 'University of Pune', 'ExTC', '59', '100', '0'), (8153, 'George Mason University', '13', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '157', '143', '300', '4', '100', 'University of Mumbai', 'Electronics Engineering', '63', '100', '0'), (8154, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '158', '149', '307', '2', '90', 'VIT Pune', 'Electronics', '63.45', '100', '0'), (8155, 'George Mason University', '13', 'Admit', 'MS', 'Telecommunication', 'Fall', 'None', '152', '150', '302', '3.5', '98', 'Canara Engineering College', 'Electronics & Communications', '60', '100', '0'), (8156, 'George Mason University', '13', 'Admit', 'MS', 'CS', 'Fall ', '2013', '157', '148', '305', '3', '102', 'Goa University', 'Computer Engineering', '61', '100', '0'), (8157, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '700', '570', '1270', '3.5', '107', 'PICT', 'Computer Engineering', '58', '100', '0'), (8158, 'George Mason University', '13', 'Admit', 'MS', 'Information Security', 'Fall ', '2013', '157', '150', '307', '3', '104', 'SSN College of Engineering', 'EEE', '69', '100', '0'), (8159, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '157', '154', '311', '4.5', '115', 'Anna University', 'CSE', '80', '100', '0'), (8160, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '350', '1150', '2.5', '89', 'Gujarat Technological University', 'Computer Engineering', '70', '100', '0'), (8161, 'George Mason University', '13', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '158', '146', '304', '3', '95', 'SIES Graduate School of Technology', 'Electronics and Telecommunication', '58.7', '100', '0'), (8162, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2016', '162', '142', '304', '2', 'None', 'JNTU', 'Ece', '64', '100', '0'), (8163, 'George Mason University', '13', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '155', '150', '305', '3', '99', 'Panimalar Engineering College', 'Electronics and Comminications', '71', '100', '0'), (8164, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '156', '153', '309', '3', '103', 'University of Pune', 'Chemical Engineering', '63.13', '100', '0'), (8165, 'George Mason University', '13', 'Admit', 'MS', 'Information Security', 'Fall ', '2011', '750', '410', '1160', '3', '97', 'WBUT', 'IT', '7.84', '10', '0'), (8166, 'George Mason University', '13', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2015', '161', '150', '311', '4', '116', 'University of Mumbai', 'Electronics and Telecommunication', '60.51', '100', '0'), (8167, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '161', '148', '309', '4', '103', 'CEG', 'Electronics and Communication', '7.97', '10', '27'), (8168, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '750', '470', '1220', '4', '106', 'VTU', 'Computer Science', '77.47', '100', '0'), (8169, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2014', '157', '144', '301', 'None', 'None', 'CVRCE', 'ECE', '72', '100', '0'), (8170, 'George Mason University', '13', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '159', '148', '307', '2.5', '95', 'Osmania University', 'ece', '72', '100', '0'), (8171, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '740', '420', '1160', '2.5', '89', 'MU', 'Electronics & Telecommunications', '58.06', '100', '0'), (8172, 'George Mason University', '13', 'Admit', 'MS', 'MIS', 'Fall', 'None', '720', '580', '1300', '4', '105', 'None', 'Information technology', '71', '100', '0'), (8173, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '750', '420', '1170', '3', 'None', 'GITAM', 'Information Technology', '8.13', '10', '0'), (8174, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '480', '1270', '3.5', '110', 'JNTU', 'csit', '82', '100', '0'), (8175, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall', 'None', '161', '146', '307', '3', '95', 'JNTU', 'Electical & Electronics Engineering', '77', '100', '0'), (8176, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '690', '460', '1150', '3', '106', 'Datta Meghe College of Engineering', 'information technology', '70', '100', '0'), (8177, 'George Mason University', '13', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '770', '380', '1150', '3', '94', 'MU', 'Computer Engineering', '57.78', '100', '0'), (8178, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '500', '1290', '3', '96', 'R V College of Engineering', 'Computer Science', '72', '100', '0'), (8179, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '160', '321', '4', 'None', 'MU', 'Computer Science', '61.3', '100', '0'), (8180, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '760', '520', '1280', '3.5', '110', 'MU', 'Computer Engineering', '60', '100', '0'), (8181, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '730', '350', '1080', '3', '105', 'National Institute of Engineering Mysore', 'ECE', '81.4', '100', '0'), (8182, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '164', '148', '312', '3.5', '93', 'BSAITM', 'Computer Science', '72', '100', '0'), (8183, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '155', '318', '3.5', '103', 'MU', 'CE', '57.4', '100', '0'), (8184, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '1130', '400', '1530', '3', '93', 'BMIT Jaipur', 'computer science', '75', '100', '0'), (8185, 'George Mason University', '13', 'Admit', 'MS', 'MIS', 'Spring ', '2013', '160', '144', '304', '3', '94', 'VTU', 'Electronics and Communication', '3.11', '4', '0'), (8186, 'George Mason University', '13', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '720', '570', '1290', '3.5', '95', 'SRM', 'Instrumenation & Control Engineering', '7.6', '10', '0'), (8187, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '146', '306', '3.5', '95', 'JNTU', 'CSE', '76.5', '100', '0'), (8188, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '750', '530', '1280', '3', '108', 'LNMIIT', 'CCE', '8.32', '10', '0'), (8189, 'George Mason University', '13', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '295', '137', '432', '158', 'None', 'JNTU', 'ELECTRONICS AND COMMUNICATIONS ENGINEERING', '76.88', '100', '0'), (8190, 'George Mason University', '13', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '162', '150', '312', '3.5', '101', 'Pune University', 'Comp Engg', '62', '100', '0'), (8191, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2013', '760', '620', '1380', '3', '102', 'VNR VJIET', 'EEE', '69.9', '100', '0'), (8192, 'George Mason University', '13', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2014', '154', '146', '300', '3', '89', 'Bangalore Institute of Technology', 'Telecommunication (VTU)', '78', '100', '33'), (8193, 'George Mason University', '13', 'Admit', 'MS', 'Computer engineering VLSI CAD', 'Fall ', '2012', '156', '149', '305', '3.5', '104', 'University of Mumbai', 'Electronics', '59', '100', '0'), (8194, 'George Mason University', '13', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (8195, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '550', '1350', '3', '97', 'Rajiv Gandhi Institute Of Technology', 'Computer Engineering', '65.92', '100', '0'), (8196, 'George Mason University', '13', 'Admit', 'MS', 'Electronics and Communication', 'Spring ', '2012', '780', '580', '1360', '3', 'None', 'JNTU', 'ELECTRONICS AND COMMUNICATION', '78', '100', '0'), (8197, 'George Mason University', '13', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '160', '144', '304', '3', '107', 'Bhoj Reddy Engineering College JNTU', 'electronics and computer engineering', '77', '100', '0'), (8198, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '720', '460', '1180', '3', '97', 'Kurukshetra University', 'computer science', '6.7', '10', '0'), (8199, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '650', '1440', '3', '106', 'Bharati Vidyapeeth', 'extc', '58', '100', '0'), (8200, 'George Mason University', '13', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2012', '154', '143', '297', '4', '0', 'S.I.E.S GST (Mumbai University)', 'Electronics and Telecommunications', '57.5', '100', '0'), (8201, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '158', '146', '304', '3', '105', 'University of Pune', 'Information technology', '59.3', '100', '0'), (8202, 'George Mason University', '13', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Spring ', '2016', '156', '148', '304', '3.5', '100', 'Pune University', 'E&TC;', '63', '100', '24'), (8203, 'George Mason University', '13', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '710', '400', '1110', '3', '86', 'Nagpur/G.H Raisoni', 'Information Tech.', '0', '0', '0'), (8204, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '530', '1310', '3', '93', 'K J Somaiya College of Engiineering', 'Electronics', '56', '100', '0'), (8205, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '580', '1350', '3.5', '96', 'Pune University', 'Computer Science', '63', '100', '0'), (8206, 'George Mason University', '13', 'Admit', 'MS', 'Information Security', 'Fall ', '2015', '150', '153', '303', 'None', '92', 'Sri Venkateswara College of Engineering', 'ECE', '68', '100', '29'), (8207, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '160', '141', '301', '3', '95', 'Coimbatore Insitute of Technology', 'Computer Science', '8.5', '10', '0'), (8208, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2009', '760', '470', '1230', '2.5', '93', 'GIET', 'EEE', '78', '100', '0'), (8209, 'George Mason University', '13', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2014', '153', '148', '301', '3.5', '106', 'Anna University', 'ECE', '7.77', '100', '0'), (8210, 'George Mason University', '13', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2011', '710', '380', '1090', '2.5', '103', 'JNTU', 'ECE(2010 passout)', '61.27', '100', '0'), (8211, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '730', '410', '1140', '3', '103', 'DVR College of Engineering', 'EEE', '63', '100', '0'), (8212, 'George Mason University', '13', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '730', '420', '1150', '3.5', '105', 'College of Engineering and Technology', 'Electronics and telecommunications', '0', '0', '0'), (8213, 'George Mason University', '13', 'Admit', 'MS', 'Information Systems', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'Rajiv Gandhi Institute Of Technology', 'Computer Science', '0', '0', '0'), (8214, 'George Mason University', '13', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2013', '154', '147', '301', '3', '95', 'VTU', 'Computer Science', '64', '100', '0'), (8215, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '157', '152', '309', '3.5', '97', 'MU', 'Computer Science', '56.07', '100', '0'), (8216, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '161', '146', '307', '3', '92', 'Sreenidhi Institute of Science & Technology', 'Computer Science', '69', '100', '0'), (8217, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '750', '400', '1150', '2.5', '93', 'JNTU', 'CSE', '75', '100', '0'), (8218, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '740', '640', '1380', '3', '108', 'GITAM', 'CSE', '7.9', '10', '0'), (8219, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '166', '150', '316', '4', '100', 'University of Engineering & Technology Taxila', 'Electrical Engineering', '79.05', '100', '0'), (8220, 'George Mason University', '13', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '166', '154', '320', '3.5', '107', 'Amrita School of Engineering', 'ECE', '7.8', '10', '0'), (8221, 'George Mason University', '13', 'Admit', 'MS', 'Electrical and Electronics', 'Spring ', '2013', '162', '148', '310', '2.5', '99', 'Pondicherry Engineering College', 'EIE', '7.73', '10', '0'), (8222, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '145', '307', '3', '106', 'Government Engineering College ajmer', 'Computer Engineering', '66.7', '100', '0'), (8223, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '500', '1280', '2.5', '96', 'University of Mumbai', 'Information Technology', '60.49', '100', '0'), (8224, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '750', '370', '1120', '3', '91', 'St thomas college of engg & tech(under West Bengal University of technology)', 'Information Technology', '8.37', '10', '0'), (8225, 'George Mason University', '13', 'Admit', 'MS', 'Telecommunication', 'Spring ', '2012', '770', '360', '1130', '3', '95', 'None', 'EXTC', '61.5', '100', '0'), (8226, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '720', '590', '1310', '3', '97', 'University of Mumbai', 'Information Technology', '75.73', '100', '0'), (8227, 'George Mason University', '13', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '730', '550', '1280', '3', '97', 'Pune University', 'entc', '0', '0', '0'), (8228, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '770', '360', '1130', '3', '100', 'Ambala College of Engineering And Applied Research', 'Electronics and communication', '63', '100', '0'), (8229, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '550', '1330', '4', '103', 'University of Kerala', 'Computer Science', '7.3', '10', '0'), (8230, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '149', '312', '3.5', '111', 'JNTU', 'CSE', '78.3', '100', '12'), (8231, 'George Mason University', '13', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2011', '740', '570', '1310', '3.5', '110', 'University of Mumbai', 'Electronics', '62', '100', '0'), (8232, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '760', '500', '1260', '3.5', '280', 'SFIT', 'Computer', '59', '100', '0'), (8233, 'George Mason University', '13', 'Admit', 'MS', 'Information Assurance', 'Fall ', '2015', '163', '150', '313', '3', 'None', 'University of Pune', 'Electronics and Telecommunication', '7.95', '10', '20'), (8234, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '370', '1120', '3', '98', 'MU', 'Computers', '79.67', '100', '0'), (8235, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '440', '1210', '4', '108', 'None', 'IT', '70', '100', '0'), (8236, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '163', '328', '3', '115', 'GGSIPU', 'CSE', '70.65', '100', '0'), (8237, 'George Mason University', '13', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '720', '530', '1250', '3.5', '104', 'Pune University', 'Computers', '62.27', '100', '0'), (8238, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '740', '450', '1190', '4', '97', 'VTU', 'Computer Science', '59', '100', '0'), (8239, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '790', '430', '1220', '2.5', '107', 'GITAM', 'Electronics', '7.32', '10', '0'), (8240, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '730', '580', '1310', '3.5', '105', 'University of Mumbai', 'Information Technology', '70', '100', '0'), (8241, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '158', '146', '304', '3', 'None', 'None', '0', '0', '0', '0'), (8242, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '790', '440', '1230', '3', '93', 'SRKR Engineering College', 'CSE', '82', '100', '0'), (8243, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '590', '1390', '4', '115', 'Heritage Institute of Technology', 'Electronics and Communication Engineering', '8.32', '10', '0'), (8244, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '1090', '390', '1480', '700', '93', 'teegala krishna reddy engineering college', 'ece', '0', '0', '0'), (8245, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '161', '154', '315', '3.5', '111', 'Gogte Institute of Technology', 'Electronics & Communication', '77', '100', '0'), (8246, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '340', '1100', '3.5', '102', 'None', '0', '0', '0', '0'), (8247, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2012', '730', '410', '1140', '3', '109', 'Guru Jambheshwar University of Science & Technology', 'ECE', '8.67', '10', '0'), (8248, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '760', '540', '1300', '3.5', '98', 'PSG College of Technology', 'Mathematics and Computer Applications', '9.4', '10', '0'), (8249, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '153', '153', '306', '3', 'None', 'VTU', 'CS', '64', '100', '0'), (8250, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '740', '440', '1180', '3', '99', 'Anna University', 'EE', '8.61', '10', '0'), (8251, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '147', '307', '3.5', '104', 'JNTU', 'CSE', '79.5', '100', '0'), (8252, 'George Mason University', '13', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '740', '480', '1220', '3', '100', 'University of Mumbai', 'Electronics and Telecommunication', '63', '100', '0'), (8253, 'George Mason University', '13', 'Admit', 'MS', 'MIS', 'Spring ', '2015', '160', '152', '312', '3.5', '110', 'JNTU', 'Metallurgical Engineering', '68.9', '100', '19'), (8254, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '750', '570', '1320', '4', '109', 'MU', 'IT', '67', '100', '0'), (8255, 'George Mason University', '13', 'Admit', 'MS', 'Computer Networking', 'Fall ', '2013', '161', '156', '317', '4', '105', 'Kerala University', 'Information Technology', '3.98', '4', '0'), (8256, 'George Mason University', '13', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2013', '162', '146', '308', '3', '107', 'St.Martin Engg College affiliated with JNTU', 'ECE', '68', '100', '0'), (8257, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '800', '470', '1270', '4.5', '104', 'K J Somaiya College of Engiineering', 'it', '67', '100', '0'), (8258, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '153', '312', '3', '105', 'BNMIT', 'Information Science and Engineering', '74', '100', '0'), (8259, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '730', 'None', '730', '3.5', '96', 'None', 'Information science', '80', '100', '0'), (8260, 'George Mason University', '13', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2010', '770', '450', '1220', '3', '100', 'VTU', 'Electronics and Communication', '70', '100', '0'), (8261, 'George Mason University', '13', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '770', '330', '1100', '3', '102', 'Amrita School of Engineering', 'ECE', '7', '10', '0'), (8262, 'George Mason University', '13', 'Admit', 'MS', 'Information Science', 'Fall ', '2006', '740', '410', '1150', '4', '287', 'SSN College of Engineering', 'Information Technology', '71', '100', '0'), (8263, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '570', '1360', '3', '114', 'None', 'Computer Science', '7.95', '10', '0'), (8264, 'George Mason University', '13', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '161', '151', '312', '3', '93', 'ITM Gurgaon', 'CS', '65', '100', '0'), (8265, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '156', '317', '4', '99', 'JNTU', 'CSE', '68', '100', '0'), (8266, 'George Mason University', '13', 'Admit', 'MS', 'Electrical & Computer Engg/MIS/Industrial/Systems Engg', 'Fall ', '2013', '161', '156', '317', '4.5', '113', 'University of Mumbai', 'Electronics', '73', '100', '0'), (8267, 'George Mason University', '13', 'Admit', 'MS', 'Embedded systems', 'Fall ', '2012', '780', '600', '1380', '3', '106', 'VIT Mumbai University', 'Electronics', '62', '100', '0'), (8268, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '156', '145', '301', '4', '90', 'University of Mumbai', 'Electrical Engineering', '62', '100', '0'), (8269, 'George Mason University', '13', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '750', '380', '1130', '3.5', '94', 'MU', 'Electronics', '65', '100', '0'), (8270, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '700', '600', '1300', '3.5', '110', 'MU', 'Computer Engineering', '62', '100', '0'), (8271, 'George Mason University', '13', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '740', '400', '1140', '3', '97', 'MSRIT', 'IT', '68', '100', '0'), (8272, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '157', '143', '300', '3', '7', 'JNTU', 'CSE', '75', '100', '0'), (8273, 'George Mason University', '13', 'Admit', 'MS', 'Information Science', 'Fall ', '2011', '750', '530', '1280', 'None', '103', 'Rajasthan Technical University', 'Information Technology', '70', '100', '0'), (8274, 'George Mason University', '13', 'Admit', 'MS', 'Bioinformatics', 'Fall', 'None', '730', '570', '1300', '3', '102', 'SASTRA', 'Bioinformatics', '7.6', '10', '0'), (8275, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '150', '312', '3.5', '102', 'NIT Calicut', 'CSE', '7.74', '10', '0'), (8276, 'George Mason University', '13', 'Admit', 'MS', 'Geographic and Cartographic Sciences', 'Fall ', '2011', '710', '490', '1200', '4', '107', 'None', 'Electronics & Telecomm', '68', '100', '0'), (8277, 'George Mason University', '13', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (8278, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '145', '305', '3', '99', 'Sree Vidyanikethan Engineering College', 'Information Technology', '76', '100', '0'), (8279, 'George Mason University', '13', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2010', '790', '380', '1170', '3.5', '107', 'JNTU', 'ECE', '64', '100', '0'), (8280, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '160', '142', '302', '3', 'None', 'GITAM', 'Electronics and Communications', '8.8', '10', '0'), (8281, 'George Mason University', '13', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '750', '390', '1140', '3', '106', 'Osmania University', 'ECE', '75', '100', '0'), (8282, 'George Mason University', '13', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '155', '146', '301', 'None', '97', 'MU', 'Electronics', '55', '100', '0'), (8283, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '770', '370', '1140', '3', '102', 'Koneru Lakshmaiah College of Engineering', 'Information Science and Technology', '8.44', '10', '0'), (8284, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '740', '370', '1110', '3', '96', 'None', '0', '0', '0', '0'), (8285, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '160', '147', '307', '2.5', 'None', 'GITAM', 'Electronics and Communication', '7.8', '10', '0'), (8286, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '730', '420', '1150', 'None', '103', 'MDU', 'ECE', '0', '0', '0'), (8287, 'George Mason University', '13', 'Admit', 'MS', 'Biotechnology', 'Spring ', '2014', '151', '150', '301', '3.5', '100', 'SASTRA', 'Biotechnology', '8.1', '100', '0'), (8288, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '710', '500', '1210', '3.5', '96', 'MU', 'Computer Engg.', '57.85', '100', '0'), (8289, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '170', '148', '318', '3', '98', 'UCEK JNTUK', 'EEE', '77', '100', '12'), (8290, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '147', '313', '3', '107', 'JNTU', 'Information Technology', '65.44', '100', '0'), (8291, 'George Mason University', '13', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2007', '720', '510', '1230', '4', '267', 'VIT', 'Biotechnology', '8.56', '10', '0'), (8292, 'George Mason University', '13', 'Admit', 'MS', 'Telecommunication', 'Spring ', '2013', '145', '143', '288', 'None', '87', 'None', '0', '0', '0', '0'), (8293, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2016', '141', '137', '278', '2', 'None', 'Rajasthan Technical University', 'Electronics & Communication', '3', '100', '0'), (8294, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '170', '149', '319', '3.5', '100', 'GITAM', 'Computer Science', '8.54', '10', '0'), (8295, 'George Mason University', '13', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '167', '145', '312', '3', '101', 'VTU', 'Computer Science', '65', '100', '0'), (8296, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '790', '570', '1360', '3.5', '110', 'None', '0', '0', '0', '0'), (8297, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '157', '150', '307', '3', '94', 'GITAM', 'Computer Science', '8.23', '10', '0'), (8298, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '640', '1410', '4', '117', 'Watumull Institute University of Mumbai', 'Computer Science', '53', '100', '0'), (8299, 'George Mason University', '13', 'Admit', 'MS', 'Information Security', 'Fall ', '2012', '760', '630', '1390', '3', '98', 'MU', 'Information Technology', '55', '100', '0'), (8300, 'George Mason University', '13', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '760', '440', '1200', '3.5', '92', 'PESIT', 'electronics and communication', '64', '100', '0'), (8301, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '740', '410', '1150', '2.5', '110', 'BITS Pilani', 'Computer Science', '7.91', '10', '0'), (8302, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '660', '1440', '4.5', '109', 'MU', 'Computer Engineering', '57', '100', '0'), (8303, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '650', '1420', '3', '91', 'Vrsiddhartha Engineering College', 'CSE', '88.35', '100', '0'), (8304, 'George Mason University', '13', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '158', '160', '318', 'None', '112', 'Saboo Siddik', 'Computers', '62', '100', '0'), (8305, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '450', '1240', '3', '100', 'MU', 'Information Technology', '67', '100', '0'), (8306, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '165', '159', '324', '3', '101', 'BITS Pilani', 'Electronics', '4.93', '10', '0'), (8307, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Spring ', '2011', '730', '390', '1120', '3', '90', 'IET DAVV', 'Computer Engineering', '0', '0', '0'), (8308, 'George Mason University', '13', 'Reject', 'MS', 'Bioinformatics', 'Fall ', '2011', '720', '470', '1190', '3', '87', 'D Y Patil College of Engineering', 'Bioinformatics', '62.3', '100', '0'), (8309, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '161', '152', '313', '3', '92', 'Pune University', 'Mechanical Engineering', '62.5', '100', '53'), (8310, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Spring ', '2016', '167', '142', '309', '3.5', '99', 'Sikkim Manipal University', 'Computer Engineering', '6.58', '10', '56'), (8311, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '161', '152', '313', '3.5', '105', 'Pune University', 'information technology', '56', '100', '0'), (8312, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '157', '151', '308', '3', '101', 'MU', 'IT', '58.75', '100', '0'), (8313, 'George Mason University', '13', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '770', '370', '1140', '3', '87', 'K J Somaiya College of Engiineering', 'Electronics', '60', '100', '0'), (8314, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '157', '150', '307', '3.5', '111', 'VTU', 'Telecommunication', '57', '100', '0'), (8315, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '145', '304', '3', '98', 'Greater Noida Institute Of Technology', 'Comuter Science engineering', '68.4', '100', '0'), (8316, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '680', '430', '1110', '3.5', '102', 'VCET', 'Computer Science', '63', '100', '0'), (8317, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '139', '300', '3', '95', 'GGSIPU', 'IT', '75.28', '100', '0'), (8318, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '159', '146', '305', '3', '92', 'SSN College of Engineering', 'Electrical and Electronics', '79', '100', '0'), (8319, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '730', '540', '1270', '3', '89', 'Manipal Institue of Technology', 'Computer Science', '7.03', '10', '0'), (8320, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '159', '149', '308', '3.5', '105', 'None', '0', '0', '0', '0'), (8321, 'George Mason University', '13', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '750', '550', '1300', '4', '89', 'MU', 'EXTC', '5.5', '10', '0'), (8322, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '158', '148', '306', '4', '98', 'K J Somaiya College of Engiineering', 'Computer Engineering', '58', '100', '0'), (8323, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '170', '155', '325', '3.5', '111', 'MU', 'Information Technology', '64', '100', '17'), (8324, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '166', '150', '316', '2.5', '98', 'BITS Pilani', 'Computer Science', '5.5', '10', '0'), (8325, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '143', '304', '3', '97', 'Vasavi College of Engineering', 'IT', '82', '100', '0'), (8326, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '145', '306', '3', '103', 'B V Bhoomaraddi College of Engg & Tech (Affiliated to VTU)', 'Information Science and Engineering', '7.39', '10', '26'), (8327, 'George Mason University', '13', 'Reject', 'MS', 'Electronics and Communication', 'Spring ', '2015', '159', '147', '306', '3', 'None', 'JNTU', 'Electronics and Communication Engineering', '75.55', '100', '26'), (8328, 'George Mason University', '13', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2013', '154', '154', '308', '3.5', '105', 'MU', 'IT', '63', '100', '0'), (8329, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '370', '1120', '3', '108', 'MU', 'Information Technology', '68', '100', '0'), (8330, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '170', '153', '323', '3.5', '103', 'Pune University', 'ECE', '72', '100', '0'), (8331, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '156', '319', '3', 'None', 'Coimbatore Insitute of Technology', 'CSE', '8.1', '10', '0'), (8332, 'George Mason University', '13', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Spring ', '2012', '690', '580', '1270', 'None', '98', 'JNTUK/REC', 'CSE', '58.6', '100', '0'), (8333, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '156', '145', '301', '3', '102', 'Andhra University', 'CS&SE;', '8.28', '10', '0'), (8334, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '151', '143', '294', '3', '98', 'Sinhgad College of Engineering', 'Computer', '66.66', '100', '0'), (8335, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '167', '330', '4', '112', 'University of Mumbai', 'Computer Engineering', '54', '100', '0'), (8336, 'George Mason University', '13', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '151', '143', '294', '3', '83', 'Padre Conceicao College Of Engineering', 'Information Technology', '0', '0', '0'), (8337, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '720', '330', '1050', '3', '95', 'Anna University', 'I.T.', '68', '100', '0'), (8338, 'George Mason University', '13', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '160', '149', '309', '3', '101', 'GGSIPU', 'CSE', '79', '100', '0'), (8339, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '740', '310', '1050', '2.5', '87', 'KL University', 'Information Technology', '7.83', '10', '0'), (8340, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '147', '306', '2.5', '107', 'MIT Pune', 'Computer Engineering', '60', '100', '0'), (8341, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '152', '156', '308', '4.5', '113', 'Anna University', 'CS', '72', '100', '48'), (8342, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '145', '303', '3', '96', 'PESIT', 'Computer Science', '73.4', '100', '0'), (8343, 'George Mason University', '13', 'Reject', 'MS', 'Business Analytics', 'Fall ', '2015', '158', '145', '303', '3', '94', 'PESIT', 'Computer Science and Engineering', '6.71', '10', '42'), (8344, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '770', '310', '1080', '2.5', '93', 'Amity University', 'Computer Science and Engineering', '7.5', '10', '0'), (8345, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '139', '300', '3', '95', 'Guru Gobind Singh Indraprashta University', 'Information Technology', '75.28', '100', '0'), (8346, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '154', '143', '297', '2.5', 'None', 'Vivekananda Institute Of Technology', 'Information Science', '67.8', '100', '58'), (8347, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '740', '670', '1410', '3', '110', 'MU', 'IT', '58.9', '100', '0'), (8348, 'George Mason University', '13', 'Reject', 'MS', 'MIS', 'Fall ', '2015', '153', '149', '302', '3.5', '101', 'MU', 'Instrumentation', '55', '100', '8'), (8349, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2007', '690', '370', '1060', '4', '89', 'ACET Nagpur', 'Computer Science', '69.41', '100', '0'), (8350, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '158', '144', '302', '3', '93', 'Pune University', 'Computer Engg.', '58.9', '100', '0'), (8351, 'George Mason University', '13', 'Reject', 'MS', 'Computer Forensics', 'Fall ', '2012', '156', '153', '309', '4', '110', 'Anna University', 'Information Technology', '65', '100', '0'), (8352, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '157', '154', '311', '3.5', '104', 'None', '0', '7.09', '10', '0'), (8353, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '154', '162', '316', '4.5', '113', 'Walchand College Of Engineering', 'CSE', '8.06', '10', '16'), (8354, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '720', '470', '1190', '3.5', '94', 'K J Somaiya College of Engiineering', 'IT', '61', '100', '0'), (8355, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '740', '300', '1040', '3.5', '107', 'JNTU', 'Electronics & Communication', '67', '100', '0'), (8356, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '670', '600', '1270', '3', '93', 'VTU', 'CSE', '67', '100', '0'), (8357, 'George Mason University', '13', 'Reject', 'MS', 'Computer Engineering/Comp Science', 'Fall ', '2015', '156', '151', '307', '3', '90', 'DMI College of Engineering', 'I.T', '6.53', '10', '22'), (8358, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '560', '1310', '4', '105', 'MU', 'Information Technology(B.E. I.T)', '58.8', '100', '0'), (8359, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '158', '152', '310', '3.5', '102', 'University of Pune', 'Computer Engineering', '58', '100', '0'), (8360, 'George Mason University', '13', 'Reject', 'MS', 'Bioinformatics', 'Fall ', '2007', '770', '420', '1190', '3.5', '103', 'Bharathidasan University', 'Biotechnology', '75', '100', '0'), (8361, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '151', '144', '295', '3.5', '90', 'VTU', 'CSE', '78', '100', '0'), (8362, 'George Mason University', '13', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2011', '720', '450', '1170', '3', '85', 'MU', 'Electronics', '59.7', '100', '0'), (8363, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '670', '450', '1120', '3', '82', 'Amrita Vishwa Vidhyapeetham', 'Computer Science', '6.14', '10', '0'), (8364, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '310', '1110', '3', '95', 'University of Mumbai', 'Computer', '64.3', '100', '0'), (8365, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '158', '143', '301', '3.5', '100', 'JNTU', 'ECE', '73', '100', '0'), (8366, 'George Mason University', '13', 'Reject', 'MS', 'Embedded systems', 'Fall ', '2012', '157', '156', '313', '4', '116', 'SASTRA', 'electronics&communications;', '7', '10', '0'), (8367, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '158', '143', '301', '3', 'None', 'VGEC GTU', 'Computer Engineering', '7.2', '10', '0'), (8368, 'George Mason University', '13', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2013', '153', '137', '290', '3', '81', 'MU', 'Electronics and telecommunicatio', '69.04', '100', '0'), (8369, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '660', '430', '1090', '3', '106', 'MU', 'Information Technology', '57', '100', '0'), (8370, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '340', '1100', '3', '97', 'MU', 'Electronics', '63', '100', '0'), (8371, 'George Mason University', '13', 'Admit', 'MS', 'Electronics & Communication', 'Fall', '2011', '157', '148', '305', '3.5', '105', 'College of engineering and technology', 'Electronics and Telecommunication', '-1', '-1', '0'), (8372, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '169', '165', '334', '5.5', '118', 'IIT Delhi', 'Mechanical', '9.1', '10', '40'), (8373, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '154', '321', '4', '110', 'University of Mumbai', 'Electronics and Telecommuication', '63.06', '100', '0'), (8374, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '170', '159', '329', '4', '113', 'IIT Indore', 'Mechanical Engineering', '7.7', '10', '24'), (8375, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical and computer engineering electrical engineering telecommunications engineering', 'Fall ', '2014', '165', '154', '319', '4', '115', 'MU', 'Electronics', '75.7', '100', '0'), (8376, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2011', '780', '590', '1370', '3.5', '105', 'VTU', 'ECE', '82', '100', '0'), (8377, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Chemical Engineering', 'Fall ', '2014', '165', '154', '319', '4', '112', 'DSCE', 'Chemical Engg.', '82.29', '100', '0'), (8378, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2011', '800', '550', '1350', '3', '104', 'BIT Mesra', 'Biotechnology', '7.02', '10', '0'), (8379, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'economics', 'Fall ', '2015', 'None', 'None', '0', 'None', 'None', 'University of Delhi', 'Economics', '71', '100', '0'), (8380, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '166', '159', '325', '4', '115', 'NIT', 'Production Engineering', '92.4', '100', '0'), (8381, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '790', '600', '1390', '3.5', '108', 'K J Somaiya College of Engiineering', 'ECE', '70', '100', '0'), (8382, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2008', '800', '680', '1480', '5', '113', 'University of Mumbai', 'Computer Engineering', '70.88', '100', '0'), (8383, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '168', '154', '322', '3.5', '110', 'University of Mumbai', 'Electronics & Telecommunications', '80.57', '100', '0'), (8384, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '730', '1530', '4', '118', 'NSIT', 'Instrumentation and Control Engineering', '79.27', '100', '0'), (8385, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '164', '166', '330', '4.5', '117', 'University of Mumbai', 'Engineering Electronics and Telecommunication', '60.38', '100', '0'), (8386, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2011', '800', '570', '1370', '4', '112', 'VESIT', 'Electronics and Telecommunication', '87.37', '100', '0'), (8387, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '790', '710', '1500', '4', '115', 'VTU', 'Electronics & Communication', '82.5', '100', '0'), (8388, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical and computer science', 'Fall ', '2008', '750', '520', '1270', 'None', '250', 'None', '0', '0', '0', '0'), (8389, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '750', '630', '1380', '4', '106', 'D J Sanghvi', 'Electronics', '73.68', '100', '0'), (8390, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '770', '440', '1210', '4.5', '108', 'SJCE', 'Electronics and Communication', '9.78', '10', '0'), (8391, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Information Assurance', 'Fall ', '2015', '161', '160', '321', '3', '103', 'TU', 'CS', '69.7', '100', '36'), (8392, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '170', '158', '328', '4', '116', 'IIT Kharagpur', 'Electrical Engineering', '8.52', '10', '0'), (8393, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '680', '1480', '3', '102', 'Zhejiang University', 'Dpt. of Mechanical Engineering', '3.68', '4', '0'), (8394, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '800', '590', '1390', '3.5', '120', 'PSG College of Technology', 'Mechanical', '8.9', '10', '0'), (8395, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '600', '1400', '3.5', '111', 'VESIT', 'Electronics', '78', '100', '0'), (8396, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '620', '1410', '5', '117', 'NIT Karnataka', 'ECE', '9.36', '10', '0'), (8397, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '168', '150', '318', '4', '109', 'University of Mumbai', 'Electronics', '3.25', '4', '0'), (8398, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '168', '155', '323', '5', '108', 'MSRIT', 'Electronics and Communication', '9.33', '10', '0'), (8399, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '750', '1550', '4.5', '117', 'SRM', 'CSE', '8.4', '10', '0'), (8400, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '168', '160', '328', '4', '118', 'Amrita School of Engineering', 'ECE', '9.49', '10', '0'), (8401, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '660', '1460', '3', '110', 'NIT Bhopal', 'IT', '7.9', '10', '0'), (8402, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Supply chain management', 'Fall ', '2015', '166', '157', '323', '4', '112', 'BITS Pilani', 'Manufacturing', '7', '100', '24'), (8403, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '800', '700', '1500', '3.5', '110', 'IIT Kharagpur', 'Industrial Engineering', '8.37', '10', '0'), (8404, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '170', '166', '336', '5', '112', 'IIT BHU', 'Electrical Engg', '8.15', '10', '0'), (8405, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '157', '323', '4', '105', 'IIIT Delhi', 'Computer Science', '3.8', '10', '0'), (8406, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '750', '580', '1330', '4.5', '287', 'K J Somaiya College of Engiineering', 'Comp Engg', '69', '100', '0'), (8407, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '690', '1490', '4', '110', 'Maharashtra Institute of Technology', 'EnTc', '76', '100', '0'), (8408, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '780', '650', '1430', '4', '101', 'NITK Surathkal', 'Computer Engineering', '3.9', '4', '0'), (8409, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2011', '790', '650', '1440', '3.5', '111', 'BITS Pilani', 'MSc (Hons) Biological Science & BE (Hons) Computer Science', '9.18', '10', '0'), (8410, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '650', '1450', '4', '110', 'Vidyalankar Institute of Technology', 'Information Technology', '71.46', '100', '0'), (8411, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '168', '157', '325', '4.5', '114', 'Netaji Subhas Institute of Technology', 'Instrumentation and Control', '71.4', '100', '0'), (8412, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '160', '155', '315', '3.5', '104', 'MU', 'Electronics', '76.14', '100', '0'), (8413, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'environmental engineering', 'Fall ', '2011', '800', '540', '1340', '4', '114', 'R V College of Engineering', 'Chemical engineering', '9.14', '10', '0'), (8414, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '790', '550', '1340', '3', '111', 'SSN College of Engineering', 'Computer Science', '87.74', '100', '0'), (8415, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '163', '160', '323', '4', '115', 'SRM', 'ECE', '9.157', '10', '0'), (8416, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '700', '1480', '4', '110', 'MU', 'Computer Engineering', '75', '100', '0'), (8417, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'computer science / MIS', 'Fall ', '2014', '163', '159', '322', '5', '115', 'MU', 'Information Technology', '0', '0', '18'), (8418, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '800', '1600', '5.5', '117', 'MIT College of Engineering University of Pune', 'Computer Science and Engineering', '58.51', '100', '0'), (8419, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '168', '335', '4', '115', 'VNIT Nagpur', 'ECE', '8.83', '10', '0'), (8420, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '162', '160', '322', '4', '117', 'None', 'Electronics & communication', '9.1', '10', '0'), (8421, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '550', '1350', '4', '107', 'VESIT', 'Instrumentation engg', '72.02', '100', '0'), (8422, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '790', '640', '1430', '3.5', '104', 'Mar Athanasius College of Engineering Kerala', 'Electronics and Communication', '71', '100', '0'), (8423, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '167', '166', '333', '4', '115', 'MU', 'Electronics & Telecommunication', '72.6', '100', '0'), (8424, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '164', '159', '323', '4.5', '117', 'Nirma Institute of Technology', '0', '8.54', '10', '0'), (8425, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '168', '155', '323', '4', '108', 'VJTI', 'Electronics', '8', '10', '0'), (8426, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '620', '1400', '4', '115', 'PICT', 'Computer', '3.45', '4', '0'), (8427, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '165', '157', '322', '4', 'None', 'Punjab Engineering College', 'Electronics and Electrical Communication', '9.65', '10', '0'), (8428, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (8429, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2013', '780', '680', '1460', '4', '109', 'NIT Surat', 'Civil', '8.75', '10', '0'), (8430, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '167', '152', '319', '3.5', '108', 'Amrita School of Engineering', 'EEE', '9.01', '10', '24'), (8431, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '166', '163', '329', '4', '114', 'IET DAVV', 'Computer Science', '72', '100', '0'), (8432, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '169', '164', '333', '4', '118', 'NIT Tirchy', 'production engineering', '9.03', '10', '0'), (8433, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '720', '1520', '4', '118', 'Galgotias college of engineering & technology', 'Information Technology', '73.5', '100', '0'), (8434, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '720', '1520', '4', '103', 'KIIT', 'Electronics and Electrical', '8.82', '10', '0'), (8435, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '800', '620', '1420', '3.5', '109', 'IIT Delhi', 'Mechanical Engineering', '8.48', '10', '0'), (8436, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2014', '162', '152', '314', '3.5', '112', 'University of Manchester', 'Aerospace Engineering', '3.74', '4', '12'), (8437, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '159', '319', '4.5', '118', 'SSN College of Engineering', 'CSE', '8.6', '10', '0'), (8438, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '700', '1450', '4', '110', 'VTU', 'CS', '79', '100', '0'), (8439, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '600', '1400', '4.5', '110', 'NIT Surat', 'Computer Engineering', '7.2', '10', '0'), (8440, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '168', '158', '326', '4', '115', 'JSS Noida', 'ECE', '76.7', '100', '0'), (8441, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '760', '560', '1320', '4', '107', 'PSG College of Technology', 'Computer Science', '8.91', '10', '0'), (8442, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '770', '580', '1350', '3', '106', 'Madras Institute of Technology', 'Production Engineering', '9.45', '10', '24'), (8443, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '161', '162', '323', '3.5', '116', 'SVCE', 'ECE', '7.98', '10', '0'), (8444, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Architecture', 'Fall ', '2014', '164', '159', '323', '4', '108', 'NIT Tirchy', 'Architecture', '9.43', '10', '0'), (8445, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '157', '320', '3.5', '115', 'D J Sanghvi', 'Information technology', '66', '100', '0'), (8446, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '660', '1460', '4', '116', 'WBUT', 'Computer Science Engineering', '8.93', '10', '0'), (8447, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2012', '800', '530', '1330', '4', '105', 'Sathyabama University', 'Aeronautical enggineering', '83', '100', '0'), (8448, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer vision/image-video processing', 'Fall ', '2013', '167', '159', '326', '5', '117', 'IIT Jodhpur', 'CSE', '10', '10', '0'), (8449, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2011', '770', '410', '1180', 'None', 'None', 'Fr Agnel', 'Computer', '0', '0', '0'), (8450, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '800', '680', '1480', '3.5', '114', 'NIT Calicut', 'Electrical and Electronics', '8.66', '10', '0'), (8451, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'CS', 'Fall ', '2012', '790', '560', '1350', '3.5', '108', 'R V College of Engineering', 'Computer Science', '75', '100', '0'), (8452, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '163', '159', '322', '4.5', '115', 'MSRIT', 'Telecommunications Engineering', '9.07', '10', '0'), (8453, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '169', '160', '329', '3.5', 'None', 'NIT Calicut', 'ECE', '9.62', '10', '0'), (8454, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '690', '1490', '4.5', '117', 'Anna University', 'IT', '83', '100', '0'), (8455, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '770', '540', '1310', '3.5', '107', 'MSRIT', 'Telecommunication', '8.8', '10', '0'), (8456, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '170', '157', '327', '4', '118', 'West Bengal University Of Technology', 'Electronics and Communication Engineering', '8.79', '10', '0'), (8457, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '168', '158', '326', '5', '112', 'CEG', 'Mechanical Engineering', '9', '10', '0'), (8458, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '166', '153', '319', '3.5', '115', 'COEP', 'Electronics and Telecommunication Engineering', '9.1', '10', '0'), (8459, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'None', 'Fall ', '2014', '165', '158', '323', '4', '112', 'MDU', 'ECE', '62', '100', '0'), (8460, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '620', '1410', '3', '108', 'COEP', 'Information Technology', '8.67', '10', '0'), (8461, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical and computer science', 'Fall ', '2012', '800', '620', '1420', '4', '118', 'Manipal Institue of Technology', 'ECE', '9.15', '10', '0'), (8462, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '500', '1300', '4', '113', 'Gujarat Technological University', 'Computer Enigneering', '64.8', '100', '0'), (8463, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Human Computer Interaction', 'Fall ', '2011', '800', '560', '1360', '4.5', '117', 'Anna University', 'EEE', '72', '100', '0'), (8464, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2010', '800', '600', '1400', '5.5', '118', 'R V College of Engineering', 'Mechanical Engineering', '3.95', '4', '0'), (8465, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '170', '160', '330', '4', 'None', 'BITS Pilani', 'EEE', '8.7', '10', '0'), (8466, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '800', '710', '1510', '4', '111', 'MU', 'Information Technology', '66.17', '100', '0'), (8467, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '770', '720', '1490', '3.5', '106', 'Watumull Institute University of Mumbai', 'Electronics and Telecommunication', '0', '0', '0'), (8468, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '560', '1320', '3.5', '104', 'BITS Goa', 'Computer Science', '8.95', '10', '0'), (8469, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '166', '149', '315', '3.5', '101', 'CoE Trivandrum', 'Industrial Engineering', '7.3', '10', '0'), (8470, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'CS', 'Fall ', '2013', '170', '154', '324', 'None', '112', 'None', '0', '72', '100', '0'), (8471, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Information Networking', 'Fall ', '2012', '800', '570', '1370', '3.5', '108', 'CEG', 'Computer science & Engg', '8.3', '10', '0'), (8472, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '650', '1440', '5', 'None', 'National Technical University of Athens', 'ECE', '9.4', '4', '0'), (8473, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '167', '153', '320', '3.5', '108', 'R V College of Engineering', 'Electrical and Electronics', '9.38', '10', '0'), (8474, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '162', '159', '321', '3', '111', 'SJCE', 'CS', '9.45', '10', '0'), (8475, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '158', '323', '4', '114', 'IIT Guwahati', 'Mathematics and Computing', '7.62', '10', '0'), (8476, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2009', '800', '650', '1450', '4', '111', 'GGSIPU', 'Computer Science', '79', '100', '0'), (8477, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '560', '1360', '4.5', '113', 'VTU', 'Electronics and Communication', '73', '100', '0'), (8478, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '164', '154', '318', '4', '118', 'kvw', 'ece', '69.9', '100', '0'), (8479, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '590', '1370', '4.5', '118', 'NIT Warangal', 'Computer Science', '9.23', '10', '0'), (8480, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computational Engineering', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'BITS Pilani', 'Civil', '7.2', '10', '0'), (8481, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2011', '800', '550', '1350', 'None', 'None', 'R V College of Engineering', 'Mechanical', '8.47', '10', '0'), (8482, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '168', '156', '324', 'None', '106', 'SASTRA', 'ELECTRONICS AND COMMUNICATION', '9.01', '10', '0'), (8483, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '550', '1350', '3.5', '110', 'shu', 'physics', '4', '4', '0'), (8484, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '580', '1380', '4', '111', 'UPTU', 'Computer Science', '68.76', '100', '0'), (8485, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '158', '325', '4.5', '112', 'Delhi University', 'ECE', '69.93', '100', '0'), (8486, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Human Computer Interaction', 'Fall ', '2012', '159', '160', '319', '4', 'None', 'Amity University', 'Computer Science', '8.31', '10', '0'), (8487, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2011', '780', '620', '1400', '3.5', '110', 'Delhi College Of Engineeing', 'ECE', '79.7', '100', '0'), (8488, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '166', '170', '336', '4.5', '119', 'BITS Goa', 'Computer Science', '8.8', '10', '0'), (8489, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '168', '163', '331', '4.5', '112', 'NMIMS', 'Electronics engineering', '3.58', '4', '0'), (8490, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '670', '1470', '4', '112', 'NIT Silchar', 'EE', '8.5', '100', '0'), (8491, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '160', '322', '4.5', '112', 'Manipal Institue of Technology', 'Electrical and Electronics', '7.1', '10', '0'), (8492, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '153', '314', '4', '111', 'NIT', 'CSE', '8.37', '10', '0'), (8493, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '500', '1300', '3', '99', 'Shanghai Jiao Tong University', 'ECE', '3.2', '4', '0'), (8494, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '660', '1460', '4', '113', 'PICT', 'Computer Engg.', '0', '0', '0'), (8495, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '160', '161', '321', '4', '114', 'Yeshwantrao Chavan College of Engineering', 'Electronics and communication', '68.86', '100', '19'), (8496, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '154', '316', '4', '106', 'Bangalore University', 'CS', '79.99', '100', '0'), (8497, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '550', '1330', '4', '106', 'SSN College of Engineering', 'ECE', '89', '100', '0'), (8498, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '169', '164', '333', '4', '109', 'BMSCE', 'EEE', '9.23', '10', '0'), (8499, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '163', '161', '324', '4.5', '116', 'SASTRA', 'Electronics and Communication Engg', '8.13', '10', '0'), (8500, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '780', '630', '1410', '4', '96', 'Anna University', 'Mechanical Engineering', '8.93', '10', '0'), (8501, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '780', '650', '1430', '4.5', '118', 'Pune University', '0', '75', '100', '0'), (8502, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '790', '700', '1490', '5.5', '277', 'D J Sanghvi', 'EXTC', '69.5', '100', '0'), (8503, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '630', '1430', '3.5', '108', 'None', 'School of Management', '0', '0', '0'), (8504, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '730', '550', '1280', '4', '100', 'MU', 'Electronics', '61', '100', '0'), (8505, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computational Science', 'Fall ', '2012', '800', '690', '1490', '4', '113', 'NSIT', 'COE', '75', '100', '0'), (8506, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2010', '740', '600', '1340', '5', '104', 'Padmashree Dr D Y Patil University', 'Department of Biotechnology and Bioinformatics', '72.4', '100', '0'), (8507, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Engineering', 'Fall', 'None', '169', '163', '332', '4.5', '115', 'BITS Pilani', 'Electronics', '8.65', '10', '0'), (8508, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '800', '490', '1290', '3.5', '106', 'NIT Durgapur', 'electronics and communication engineering', '8.5', '10', '0'), (8509, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Spring ', '2014', '165', '161', '326', '4', '114', 'KIIT', 'Electronics and Electrical', '9', '10', '0'), (8510, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '610', '1410', '4.5', '114', 'International Institute of Information Technology Hyderabad', 'Computer Science and Engineering', '9', '10', '0'), (8511, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '800', '620', '1420', '4.5', 'None', 'NIT Surathkal', 'Computer Engineering', '8.64', '10', '0'), (8512, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '690', '1490', '3.5', '111', 'VTU', 'Mechanical Engineering', '8.85', '10', '0'), (8513, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '730', '530', '1260', '3', 'None', 'MU', 'Electronics', '67', '100', '0'), (8514, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2015', '170', '155', '325', '3.5', '109', 'Sardar Patel College of Engineering', '0', '8', '10', '0'), (8515, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '164', '159', '323', '4', 'None', 'Clemson University', 'Electrical Engineering', '3.81', '4', '0'), (8516, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '580', '1370', '4', '109', 'Gujarat Technological University', 'Electronics and Communications', '72.5', '100', '0'), (8517, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2013', '164', '152', '316', '4', '108', 'VIT University', 'Bioinformatics', '8.74', '10', '0'), (8518, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '169', '159', '328', '4.5', '118', 'Netaji Subhas Institute of Technology', 'Electronics and Communicartion', '74.95', '100', '0'), (8519, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '157', '318', '4.5', '117', 'VTU', 'Computer Science', '8.81', '10', '12'), (8520, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Embedded systems', 'Fall ', '2012', '800', '580', '1380', '3.5', '110', 'University of Mumbai', 'Electronics and Telecommunication', '72', '100', '0'), (8521, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '170', '150', '320', '3.5', '106', 'IIT Bombay', 'Mechanical', '8.1', '10', '0'), (8522, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '570', '1370', '4', '109', 'M S University of Baroda', 'Computer Science', '4', '4', '0'), (8523, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '168', '169', '337', '5', 'None', 'SVCE', 'Computer Science & Engineering', '74', '100', '32'), (8524, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '730', '1530', '3.5', '114', 'CEG', 'EEE', '8.66', '10', '0'), (8525, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '550', '1350', '3.5', '114', 'MANIT BHOPAL', 'Computer Science', '8.59', '10', '0'), (8526, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2011', '800', '620', '1420', '3.5', '117', 'NIT Nagpur', 'civil engineering', '8.96', '10', '0'), (8527, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '166', '162', '328', '4', '117', 'NITK Surathkal', 'Computer Science and Engineering', '8.23', '10', '26'), (8528, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '650', '1450', '4.5', '116', 'MU', 'Computer Science', '73', '100', '0'), (8529, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '800', '640', '1440', '4.5', '108', 'MU', 'Electronics Engg.', '0', '0', '0'), (8530, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '580', '1380', '3', '112', 'JNTU', 'Computer Science', '77.38', '100', '0'), (8531, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Information Security', 'Fall ', '2012', '790', '660', '1450', '4', '115', 'Cochin University of Science and Technology', 'Electronics & Communication', '66.6', '100', '0'), (8532, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '610', '1410', '4.5', '115', 'BITS Pilani', 'EEE', '0', '0', '0'), (8533, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '170', '152', '322', '3.5', '108', 'NSIT', 'ECE', '74.64', '100', '36'), (8534, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '650', '1450', '4', '118', 'BITS Pilani', 'Information Systems', '8.81', '10', '0'), (8535, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Spring ', '2015', '154', '149', '303', '3.5', '100', 'MSRIT', 'Electronics and Communication', '9.35', '10', '0'), (8536, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2013', '164', '157', '321', '5', '113', 'NIT Rourkela', 'Civil Engineering', '8.23', '10', '0'), (8537, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'CS/ EE', 'Fall ', '2011', '730', '670', '1400', '4.5', '116', 'VTU', 'ECE', '72', '100', '0'), (8538, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2015', '162', '153', '315', '4', '101', 'NIT', 'Electronics and Telecommunication Engineering', '9.59', '10', '22'), (8539, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2010', '800', '580', '1380', '3.5', 'None', 'Anna University', 'Electronics and Communication', '0', '0', '0'), (8540, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2011', '800', '690', '1490', '4.5', '110', 'University of Pune', 'Mechanical Engineering', '102', '100', '0'), (8541, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '164', '164', '328', '4', '119', 'BITS Pilani', 'CS and Physics', '7.97', '10', '0'), (8542, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Human Computer Interaction', 'Fall ', '2009', '720', '540', '1260', '3.5', '113', 'VTU', 'Computer Science', '68', '100', '0'), (8543, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '450', '1250', '4', '114', 'None', 'Computer Science', '9.57', '10', '0'), (8544, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '560', '1360', '3.5', '116', 'Supelec (France)', 'Electrical Engineering', '3.5', '4', '0'), (8545, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Human Computer Interaction', 'Fall', 'None', '165', '148', '313', '4.5', '112', 'None', 'Computer Science', '8.3', '10', '0'), (8546, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '164', '329', '4', '111', 'Anna University', 'Computer Science and Engineering', '9.3', '10', '0'), (8547, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2011', '770', '570', '1340', '3', '105', 'None', '0', '0', '0', '0'), (8548, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '660', '1420', '4', '102', 'JNTU', 'Computer Science and Engineering', '71', '100', '0'), (8549, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '800', '690', '1490', '4', '115', 'R V College of Engineering', 'Electrical and Electronics Engineering', '72', '100', '0'), (8550, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2013', '161', '157', '318', '4', '111', 'MU', 'Electronics and Telecommunication', '76', '100', '0'), (8551, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '700', '1500', '4.5', '119', 'R V College of Engineering', 'CSE', '9.85', '10', '0'), (8552, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2008', '800', '540', '1340', '6', '300', 'University of Mumbai', 'Mechanical Engineering', '76', '100', '0'), (8553, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '660', '1430', '4', '112', 'VESIT', 'Information Technology', '69', '100', '0'), (8554, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Robotics', 'Fall ', '2011', '800', '630', '1430', '5', '112', 'NITC', 'ME', '0', '0', '0'), (8555, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '660', '1460', '3.5', '117', 'BITS Goa', 'Computer Science(B.E) & Bio (Msc)', '8.58', '10', '0'), (8556, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '165', '157', '322', '4', '322', 'MU', 'it', '81', '100', '33'), (8557, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science/ Electronics and Communication', 'Fall ', '2016', '160', '160', '320', '3.5', '115', 'University of Pune', 'Electronics and Telecommunication', '72', '100', '24'), (8558, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computational Science', 'Fall ', '2011', '780', '720', '1500', '4', '116', 'IGIT', 'Mechanical', '70', '100', '0'), (8559, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '800', '720', '1520', '5.5', 'None', 'Anna University', 'Mech', '9.5', '10', '0'), (8560, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2011', '790', '670', '1460', '5', '118', 'Madras Institute of Technology', 'Electronics and Instrumentation', '8.9', '10', '0'), (8561, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2014', '162', '151', '313', '4', '108', 'Naval Polytechnical Academy', 'Weapons Systems Engineering and Operations', '91.5', '100', '0'), (8562, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '590', '1380', '3', '107', 'Anna University', 'INFORMATION TECHNOLOGY', '82', '100', '0'), (8563, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '610', '1370', '4', '107', 'PSG College of Technology', 'Information Technology', '8.76', '10', '0'), (8564, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Human Computer Interaction', 'Fall ', '2012', '169', '155', '324', '4', '119', 'VIT', 'Computer Engineering', '82', '100', '0'), (8565, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '680', '1480', '4.5', '105', 'Jaypee Institute of Information Technology', 'Electronics and Communication', '9.1', '10', '0'), (8566, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Civil and Environmental Engg', 'Fall ', '2014', '167', '156', '323', '4', '114', 'VJTI', 'Civil Engineering', '7.7', '10', '0'), (8567, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '720', '1470', '3.5', '107', 'Sri Krishna College Of Engineering And Technology', 'computer science & engineering', '71', '100', '0'), (8568, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Financial Engineering', 'Spring ', '2011', '800', '540', '1340', '4', '105', 'None', '0', '74', '100', '0'), (8569, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '169', '154', '323', '4', '109', 'Jaypee Institute of Information Technology', 'Computer Science', '7.5', '10', '0'), (8570, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '710', '1490', '4', '119', 'Pune University', 'Information Technology', '66', '100', '0'), (8571, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Entertainment technology-Animations and graphics', 'Fall', 'None', '790', '560', '1350', '4', '106', 'NIT Calicut', 'Computer Science', '8.34', '100', '0'), (8572, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '640', '1440', '4.5', '111', 'MU', 'Computer Engineering', '68.42', '100', '0'), (8573, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '750', '500', '1250', '3.5', '103', 'Maharishi Dayanand University', 'Computer Science & Engineering', '63.4', '100', '0'), (8574, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2011', '790', '490', '1280', '4', '106', 'College of Engineering and Technology', 'Biotechnology', '77', '100', '0'), (8575, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '720', '1520', '4', '114', 'SJCE', 'ELECTRONICS AND COMMUNICATION', '85', '100', '0'), (8576, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Human Computer Interaction', 'Fall ', '2012', '770', '700', '1470', '3.5', '116', 'SASTRA', 'Information and Communication Technology', '8.4', '10', '0'), (8577, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '159', '326', '5.5', '110', 'BNMIT', 'Electronics and communications', '86.1', '100', '0'), (8578, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2010', '790', '560', '1350', '3.5', '107', 'None', '0', '0', '0', '0'), (8579, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '480', '1280', '3', '92', 'MU', 'Electronics', '75.86', '100', '0'), (8580, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '166', '168', '334', '4', '117', 'None', '0', '9.3', '10', '0'), (8581, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '600', '1390', '3.5', 'None', 'SVCE', 'CS', '75', '100', '0'), (8582, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '800', '620', '1420', '4', '115', 'PICT', 'Information Technology', '62', '100', '0'), (8583, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Information Security', 'Fall ', '2015', '164', '167', '331', '5', 'None', 'Georgia Tech', 'Computer Science', '2', '4', '138'), (8584, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'computer science / MIS', 'Fall ', '2015', '168', '157', '325', '4', '107', 'BITS Goa', 'CS', '8.39', '10', '42'), (8585, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computational Science', 'Fall ', '2012', '800', '670', '1470', '4', '114', 'NIT Hamirpur', 'Mechanical Engineering', '8.68', '10', '0'), (8586, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '490', '1280', '4.5', '108', 'SSN College of Engineering', 'Electronics And Communication Engineering', '82', '100', '0'), (8587, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Chemical/Environmental Engg.', 'Fall ', '2014', '163', '163', '326', '4.5', '114', 'R V College of Engineering', 'Chem Engineering', '9.12', '10', '0'), (8588, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'EE / CS', 'Fall ', '2013', '800', '610', '1410', '4.5', '109', 'NIT Tirchy', 'Electronics & Comm. (ECE)', '9.1', '10', '0'), (8589, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '610', '1390', '5', '107', 'None', 'E&TC;', '3.92', '4', '0'), (8590, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Chemical Engineering', 'Fall ', '2013', '169', '162', '331', '5', '112', 'IIT Bombay', 'Chemical Engineering', '9.22', '10', '0'), (8591, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronic and Telecommunication Engineering', 'Fall ', '2012', '1430', '640', '2070', '3.5', '114', 'D J Sanghvi', 'EXTC', '81.4', '100', '0'), (8592, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '630', '1430', '4.5', '112', 'CEG', 'Computer Science', '9.21', '10', '0'), (8593, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '169', '154', '323', '3', '112', 'Zhejiang University', 'Digital Media Technology', '87', '100', '0'), (8594, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2015', '170', '155', '325', '5', '112', 'NITK Surathkal', 'Civil Engineering', '9.22', '10', '0'), (8595, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '750', '550', '1300', '3', '100', 'D J Sanghvi', 'EXTC', '79', '100', '0'), (8596, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '168', '157', '325', '4', '116', 'Sardar Patel College of Engineering', 'Electrical Engineering', '70.22', '100', '0'), (8597, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '164', '162', '326', '4', '116', 'R V College of Engineering', 'Information Science', '9.35', '10', '0'), (8598, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Construction Management', 'Fall ', '2014', '163', '157', '320', '3.5', '116', 'IIT Roorkee', 'Architecture & Planning', '7.714', '10', '0'), (8599, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '520', '1320', '3', '107', 'Thapar University', 'Computer Science', '9', '10', '0'), (8600, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Biological Sciences Biotechnology ', 'Fall ', '2014', '163', '157', '320', '4', '115', 'BITS Pilani', 'Biological Sciences and Chemical Engineering', '6.11', '10', '0'), (8601, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2014', '162', '160', '322', '4', '110', 'University of Pune', 'Civil', '73.73', '100', '6'), (8602, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '600', '1400', '4', 'None', 'IT BHU', 'Metallurgical Engineering', '7.74', '10', '0'), (8603, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '166', '164', '330', '4.5', '117', 'IT BHU', 'CSE', '8.17', '10', '0'), (8604, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2009', '800', '650', '1450', '4.5', '117', 'Nirma Institute of Technology', 'Information Technology', '8.88', '10', '0'), (8605, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '800', '570', '1370', '3.5', '107', 'CEG', 'ECE', '8.85', '10', '0'), (8606, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '167', '163', '330', '4.5', '118', 'R V College of Engineering', 'Information Science Engineering', '9.09', '10', '0'), (8607, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (8608, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '750', '550', '1300', '4', '114', 'Manipal Institue of Technology', 'Electronics and Communication Engineering', '9.8', '10', '0'), (8609, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical and computer science', 'Fall ', '2011', '800', '730', '1530', '4.5', '116', 'CEG', 'ECE', '9.7', '10', '0'), (8610, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2015', '170', '158', '328', '3.5', '111', 'YMCA', 'Electronics & Communication Engg', '9.225', '10', '7'), (8611, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '168', '154', '322', '4', '112', 'Manipal Institue of Technology', 'Mechanical & Manufacturing', '9.2', '10', '0'), (8612, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '170', '151', '321', '3.5', '100', 'IIT Roorkee', 'Mech and Industrial Engg', '7.4', '10', '10'), (8613, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '660', '1430', '4', '111', 'VIT Pune', 'Computer Engineering', '72', '100', '0'), (8614, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical and computer science', 'Fall ', '2011', '800', '660', '1460', '3.5', '104', 'CEG', 'ECE', '8.81', '10', '0'), (8615, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2012', '760', '630', '1390', '4', '108', 'K J Somaiya College of Engiineering', 'Electronics', '70', '100', '0'), (8616, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '161', '151', '312', '3', 'None', 'Bharathiar University', 'Electrical and Electronics', '8', '10', '84'), (8617, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '800', '680', '1480', '3.5', '101', 'D J Sanghvi', 'Computer Engineering', '70', '100', '0'), (8618, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Information Security', 'Fall ', '2013', '162', '158', '320', '4', '112', 'KU', 'Information Technology', '7.1', '10', '0'), (8619, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Civil and Environmental Engg', 'Fall ', '2014', '163', '158', '321', '4', '111', 'None', '0', '0', '0', '0'), (8620, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '168', '157', '325', '4', '113', 'CEG', 'ECE', '9.27', '10', '0'), (8621, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '164', '159', '323', '4', '109', 'MU', 'Electronics & Telecommunication', '68.88', '100', '0'), (8622, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '800', '550', '1350', '4', '114', 'WBUT', 'ECE', '9.04', '10', '0'), (8623, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '170', '158', '328', '4', '110', 'Sir MVIT', 'Computer Science and Engg', '83.5', '100', '0'), (8624, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '660', '1440', '4', '119', 'SSN College of Engineering', 'Computer science', '8.7', '10', '0'), (8625, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2013', '760', '630', '1390', '3.5', 'None', 'UPTU', '0', '69', '100', '0'), (8626, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '800', '650', '1450', '4', '115', 'University of Pune', 'Mechanical Engineering', '65.15', '100', '0'), (8627, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '670', '1470', '4', '108', 'VESIT', 'Electronics and Telecommunication', '70.53', '100', '0'), (8628, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '740', '1540', '5', '117', 'CEG', 'ECE', '9.3', '10', '0'), (8629, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2012', '800', '600', '1400', '3.5', '110', 'SSN College of Engineering', 'Computer Science', '68.8', '100', '0'), (8630, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '570', '1360', '3.5', '100', 'BITS Goa', 'B.E(Hons) Computer Science & M.Sc(Hons) Economics', '8.47', '10', '0'), (8631, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Information Security', 'Fall ', '2012', '800', '640', '1440', '4.5', '116', 'M.U.', 'Infotech', '64.5', '100', '0'), (8632, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '170', '163', '333', '4', '109', 'BITS Pilani', 'Electrical and Electronics', '8.9', '10', '0'), (8633, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '750', '600', '1350', '3.5', '104', 'SSN College of Engineering', 'CSE', '87.5', '100', '0'), (8634, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '169', '168', '337', '4', '111', 'None', '0', '0', '0', '0'), (8635, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '800', '600', '1400', '4.5', '114', 'BITS Pilani', 'Electrical and Electronics', '8', '10', '0'), (8636, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2011', '800', '610', '1410', '3.5', '106', 'R V College of Engineering', 'Computer Science', '77.7', '100', '0'), (8637, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '153', '315', '3.5', '102', 'SSN College of Engineering', 'Computer Science and Enginnering', '86.6', '100', '0'), (8638, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '650', '1450', '4.5', '118', 'Anna University', 'IT', '80', '100', '0'), (8639, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '440', '1240', '3', '105', 'Sri Jayachamarajendra College of Engineering', 'ELECTRONICS AND COMMUNICATION', '9.82', '10', '0'), (8640, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '590', '1370', '4', '113', 'BITS Pilani', 'Computer Science', '9.36', '10', '0'), (8641, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '520', '1280', '3.5', '103', 'CEG', 'Computer Science', '9.01', '10', '0'), (8642, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '620', '1420', '4', '112', 'PSG College of Technology', 'Information Technology', '9.05', '10', '0'), (8643, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2007', '800', '390', '1190', '4', '263', 'Nirma Institute of Technology', 'Civil Engineering', '8.65', '10', '0'), (8644, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Information Security', 'Fall ', '2013', '163', '151', '314', '4', '108', 'VIT', 'EEE', '8.53', '10', '0'), (8645, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '570', '1360', '3.5', '100', 'PICT', 'IT', '60', '100', '0'), (8646, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '470', '1250', '3.5', '106', 'D J Sanghvi', 'Electronics', '75.18', '100', '0'), (8647, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '790', '630', '1420', '4', '108', 'B N M Institute of Technology', 'ECE', '87.65', '100', '0'), (8648, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Aerospace Engineering', 'Fall', 'None', '156', '162', '318', 'None', '115', 'Universidad Simon Bolivar', 'Computer Science', '4.6', '5', '0'), (8649, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '15', '168', '158', '326', '4', '109', 'IIT Guwahati', 'ECE', '9.47', '10', '8'), (8650, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '550', '1350', '4', '107', 'TSEC', 'Computer Engineering', '74', '100', '0'), (8651, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '710', '550', '1260', '4.5', '108', 'ITESM', 'CS', '86', '100', '0'), (8652, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '151', '312', '3', 'None', 'University of madras/ Vellammal Engineering College', 'Computer science and Engineering', '73', '100', '0'), (8653, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '168', '160', '328', '4.5', '106', 'Manipal Institue of Technology', 'Computer science engineering', '8.8', '10', '0'), (8654, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '740', '600', '1340', '3.5', '117', 'Netaji Subhas Institute of Technology', 'Information Technology', '76.7', '100', '0'), (8655, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2015', '166', '149', '315', '4', '107', 'VESIT', 'Electronics', '78.25', '100', '0'), (8656, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '170', '155', '325', '4', '112', 'BITS Pilani', 'Electrical and Electronics', '9.13', '10', '0'), (8657, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '800', '630', '1430', '4', '113', 'University of Mumbai', 'Electronics and Telecommunication', '73', '100', '0'), (8658, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '670', '1470', '4', '110', 'BITS Pilani', 'Computer Science and Engineering', '6.93', '10', '0'), (8659, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'CS', 'Fall ', '2013', '166', '162', '328', '4', '117', 'BITS Pilani', 'Computer Science', '8.52', '10', '0'), (8660, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '570', '1350', '4', '113', 'National University of Singapore', 'ECE', '4.42', '5', '0'), (8661, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Human Computer Interaction', 'Fall ', '2012', '164', '162', '326', '4', '113', 'Manipal Institue of Technology', 'IT', '7.24', '10', '0'), (8662, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '161', '328', '3', '103', 'COEP', 'Instrumentation and Control', '9.38', '10', '12'), (8663, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '630', '1430', '4', '113', 'NIT Karnataka', 'Computer Science', '7.75', '10', '0'), (8664, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Financial Engineering', 'Fall ', '2006', '800', '680', '1480', '4.5', '280', 'COEP', 'E & TC', '0', '0', '0'), (8665, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '167', '156', '323', '4.5', '115', 'BITS Hyderabad', 'Computer Science', '8.55', '10', '30'), (8666, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '680', '1480', '4', '101', 'University of Mumbai', 'Electronics Engineering', '66.82', '100', '0'), (8667, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '770', '660', '1430', '3.5', '116', 'Mahatma Gandhi University Kerala', 'Electronics & Communication Engineering', '68', '100', '0'), (8668, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '590', '1390', '4.5', '117', 'VTU', 'Information Science', '79', '100', '0'), (8669, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '770', '660', '1430', '3', '111', 'None', 'Electrical and Electronics Engineering', '8.73', '10', '0'), (8670, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '800', '720', '1520', '4.5', '120', 'R V College of Engineering', 'ECE', '77.2', '100', '0'), (8671, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2011', '680', '520', '1200', '3.5', '101', 'Maulana Azad National Institute of Technology', 'Bioinformatics', '8.04', '10', '0'), (8672, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '168', '158', '326', '4', '112', 'VIT University', 'EEE', '8.9', '10', '0'), (8673, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '610', '1400', '4', '114', 'PICT', 'Computer Engineering', '3.5', '4', '0'), (8674, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '170', '159', '329', '3', '112', 'IIT Kanpur', 'EE', '9', '10', '0'), (8675, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '1334', '530', '1864', '4', '113', 'JSS Noida', 'Computer Science and Engineering', '73.2', '100', '0'), (8676, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall', 'None', '168', '160', '328', '4.5', '119', 'None', 'ECE', '9.8', '100', '24'), (8677, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '700', '1500', '4.5', '115', 'MU', 'electronics engineering', '70', '100', '0'), (8678, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Human Computer Interaction', 'Fall ', '2012', '159', '161', '320', '4', '116', 'R V College of Engineering', 'Information Science', '76', '100', '0'), (8679, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '800', '720', '1520', '4.5', 'None', 'MU', 'Computer Engineering', '71', '100', '0'), (8680, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', 'None', 'None', '0', 'None', 'None', 'None', 'Computer Science', '0', '0', '12'), (8681, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '800', '560', '1360', '3.5', '108', 'VTU', 'E&C;', '82.6', '100', '0'), (8682, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '760', '670', '1430', '5.5', '287', 'University of Mumbai', 'Computer Science', '66', '100', '0'), (8683, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '730', '1530', '4', '120', 'Random Anna University Affiliated College', 'Computer Science', '8.2', '10', '0'), (8684, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '700', '1500', 'None', '110', 'BITS Pilani', 'Computer Science', '7.52', '10', '0'), (8685, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '700', '1500', '3', '116', 'VTU', 'electronics & communication', '82', '100', '0'), (8686, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '161', '327', '3', '113', 'NIT Nagpur', 'Computer Science', '9.49', '10', '0'), (8687, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2011', '800', '690', '1490', '5', '116', 'Madras Institute of Technology', 'Aerospace Engineering', '8.3', '10', '0'), (8688, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '167', '162', '329', '5', 'None', 'Madras Institute of Technology', 'Computer Science', '8.8', '100', '36'), (8689, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '167', '152', '319', '4', '101', 'BITS Goa', 'Computer Science', '8.76', '10', '0'), (8690, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Financial Engineering', 'Fall ', '2014', '170', '159', '329', '3.5', '103', 'PEC University of Technology', 'Electronics Engineering', '7.1', '10', '0'), (8691, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '710', '1500', '4.5', 'None', 'D J Sanghvi', 'IT', '67', '100', '0'), (8692, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '750', '620', '1370', '4.5', '100', 'VESIT', 'Electronics and Telecomm.', '78', '100', '0'), (8693, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '169', '152', '321', '4', '115', 'IIT Roorkee', 'Industrial Engineering-B.Tech', '0', '0', '0'), (8694, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '169', '167', '336', '4', '116', 'IIITDM Kancheepuram', 'Computer Engineering', '8.96', '10', '0'), (8695, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '780', '600', '1380', '4.5', '116', 'SSN College of Engineering', 'Computer Science and Engineering', '8.41', '10', '0'), (8696, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '170', '160', '330', '4.5', '110', 'IIITDM Kancheepuram', 'Eledctronics Design and Manufacturing', '9.25', '10', '18'), (8697, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Industrial Design', 'Fall ', '2014', '168', '158', '326', '4.5', '105', 'IIT Roorkee', 'Mechanical Engineering', '6.8', '10', '0'), (8698, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '730', '560', '1290', '4', '108', 'JNTU', 'CSE', '76', '100', '0'), (8699, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '800', '650', '1450', '4', 'None', 'Netaji Subhas Institute of Technology', 'Instrumentation and Control Engg', '78.27', '100', '0'), (8700, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical and computer science', 'Fall ', '2011', '800', '540', '1340', '3', '107', 'University of Mumbai', 'Electronics', '73.08', '100', '0'), (8701, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '170', '159', '329', '4', '117', 'SSN College of Engineering', 'CSE', '81', '100', '0'), (8702, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '168', '161', '329', '3.5', '117', 'MU', 'Production Engineering', '74.8', '100', '0'), (8703, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Networking', 'Fall ', '2014', '165', '155', '320', '4', 'None', 'Manipal Institue of Technology', 'Electronics', '8.7', '10', '0'), (8704, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2012', '780', '600', '1380', '4', '102', 'SSN College of Engineering', 'CSE', '80.2', '100', '0'), (8705, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '800', '610', '1410', '4', '115', 'SSN College of Engineering', 'ECE', '80.2', '100', '0'), (8706, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '790', '420', '1210', '4.5', '108', 'Maharashtra Institute of Technology', 'Mechanical', '65.33', '100', '0'), (8707, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '170', '159', '329', '4', '112', 'Model Engineering College', 'Computer Science and Engineering', '76.3', '100', '0'), (8708, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '670', '1470', '5', '116', 'BITS Pilani', 'Computer Science', '7.9', '10', '0'), (8709, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '166', '334', '4', '113', 'RGPV', 'Computer Science', '75.7', '100', '0'), (8710, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Biological Sciences Biotechnology ', 'Fall ', '2013', '155', '146', '301', '2.5', '105', 'R V College of Engineering', 'Biotechnology', '8.57', '10', '0'), (8711, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '170', '155', '325', '4.5', '105', 'Delhi College Of Engineeing', 'Electronics and Communication', '67.5', '100', '0'), (8712, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2011', '800', '590', '1390', '3.5', '113', 'Sardar Patel College of Engineering', 'Electronics Engineering 2009 Batch (old syllabus)', '73.7', '100', '0'), (8713, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '690', '1490', '4.5', '114', 'IIT Kharagpur', 'Elctronics and Communication', '9.35', '10', '0'), (8714, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '20'), (8715, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '164', '155', '319', '4', '112', 'BITS Goa', 'Electronics and Instrumentation', '9.313', '10', '0'), (8716, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '166', '158', '324', '3.5', '114', 'Maharaja Agrasen Institute Of Technology', 'ECE', '72.6', '100', '2'), (8717, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'EE / CS', 'Fall ', '2013', '167', '159', '326', '3.5', '109', 'Pune University', 'Electronics and Telecommunications', '78.78', '100', '36'), (8718, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Operations Research', 'Fall ', '2012', '166', '161', '327', '4.5', '110', 'IIT Madras', 'Mechanical', '6.68', '10', '0'), (8719, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '650', '1450', '4', '109', 'Dhirubhai Ambani Institute of Information & Communication Technology', 'Information & Communication Technology', '9.35', '10', '0'), (8720, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall', 'None', '165', '155', '320', '3.5', '118', 'NITK Surathkal', 'Electronics and communication', '9.01', '10', '0'), (8721, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Information Security', 'Fall ', '2014', '170', '155', '325', '3.5', '109', 'Institute of Engineering and Technology Lucknow', 'Computer science', '74.4', '100', '0'), (8722, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '750', '640', '1390', '4', '267', 'SIES Graduate School of Technology', 'COMPUTER', '60', '100', '0'), (8723, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2009', '750', '570', '1320', '3', '102', 'Jaypee Institute of Information Technology', 'CSE/IT', '6.62', '10', '0'), (8724, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '167', '157', '324', '5', '113', 'VIT', 'Electrical and Electronics Engineering', '8.65', '10', '1'), (8725, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '770', '520', '1290', '3.5', '107', 'R V College of Engineering', 'Electronics and communication', '84', '100', '0'), (8726, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2012', '155', '149', '304', '3.5', '89', 'VTU', 'Biotechnology', '71', '100', '0'), (8727, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2013', '161', '155', '316', '4', '106', 'NIT Surat', 'Civil Engineering', '8.31', '10', '0'), (8728, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '760', '640', '1400', '3.5', '113', 'MU', 'Elec and Telecom', '67.1', '100', '0'), (8729, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '650', '1450', '4', '106', 'IIT Madras', 'Electrical Engineering', '9.13', '10', '0'), (8730, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2008', '780', '640', '1420', '4.5', '102', 'Anna University', 'CSE', '81', '100', '0'), (8731, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '168', '154', '322', '3.5', '111', 'Netaji Subhas Institute of Technology', 'Electronics and Communication', '72.9', '100', '0'), (8732, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Human Computer Interaction', 'Fall ', '2014', '160', '161', '321', '4', '113', 'KSRCT Anna university', 'Biotechnology', '86', '100', '0'), (8733, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2011', '710', '420', '1130', '3.5', '106', 'Padmashree Dr D Y Patil University', 'Dept. of Biotechnology and Bioinformatics', '68.1', '100', '0'), (8734, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2012', '710', '660', '1370', '4.5', '111', 'VIT University', 'Bioinformatics', '8.83', '10', '0'), (8735, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '168', '157', '325', '4', '110', 'BITS Pilani', 'Electrical and Electronics', '8.86', '10', '0'), (8736, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '164', '161', '325', '4', '109', 'BPUT', 'Electrical Engineering', '9.03', '10', '0'), (8737, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '170', '161', '331', '5', '113', 'Manipal Institue of Technology', 'CSE', '7.73', '10', '31'), (8738, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '630', '1400', '3', '108', 'MIT', 'CSE', '9', '10', '0'), (8739, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '730', '1530', '4', '117', 'SSN College of Engineering', 'Electronics & Communications', '82', '100', '0'), (8740, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '590', '1390', '3.5', '107', 'Thapar University', 'Computer Engineering', '8.15', '10', '0'), (8741, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '164', '158', '322', '3.5', '111', 'GGSIPU', 'ECE', '79.22', '100', '0'), (8742, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'EE / CS', 'Fall ', '2011', '800', '670', '1470', '4', '111', 'IIT Bombay', 'EE', '9.69', '10', '0'), (8743, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '162', '158', '320', '4', '110', 'BITS Pilani', 'CS', '9.18', '10', '0'), (8744, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2012', '800', '600', '1400', '4', '110', 'COEP', 'Mechanical', '6.97', '10', '0'), (8745, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '800', '630', '1430', '4', '115', 'VTU', 'ECE', '77', '100', '0'), (8746, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2015', '167', '158', '325', '4', '115', 'Pune University', 'Electronics', '9.7', '10', '0'), (8747, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '800', '560', '1360', '3.5', '108', 'R V College of Engineering', 'Electronics and Communication', '9.54', '10', '0'), (8748, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '650', '1450', '4', '112', 'NITK Surathkal', 'Computer Science', '8.82', '10', '0'), (8749, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '770', '520', '1290', '3', '104', 'PSG College of Technology', 'EEE', '9.12', '10', '0'), (8750, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Textile Science & Technology', 'Fall ', '2012', '740', '300', '1040', '2', 'None', 'Osmania University', 'Textile Technology', '9.02', '10', '0'), (8751, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Operations Research', 'Spring ', '2012', '790', '430', '1220', '4', '107', 'Anna University', 'ECE', '88', '100', '0'), (8752, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '165', '332', '4.5', '113', 'University of Pune', 'Electronics and Telecommunication', '63.33', '100', '0'), (8753, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2014', '164', '161', '325', '4', '116', 'K J Somaiya College of Engiineering', 'Electronics and Telecommunication', '65.48', '100', '0'), (8754, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '166', '156', '322', '4', '106', 'IIT', 'EE', '9.1', '10', '48'), (8755, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '610', '1410', '4', '111', 'MU', 'EXTC', '70', '100', '0'), (8756, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '600', '1400', '4', '106', 'Govt. College of Technology Coimbatore (Anna University)', 'Computer Science and Engineering', '8.6', '10', '0'), (8757, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '750', '690', '1440', '4.5', '113', 'VTU', 'ECE', '8.77', '10', '0'), (8758, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '800', '630', '1430', '4', '109', 'NITK Surathkal', 'Mechanical Engg', '8.4', '10', '0'), (8759, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '165', '151', '316', '3.5', '110', 'Manipal Institue of Technology', 'Electronics and Communication Engineering', '9.6', '10', '0'), (8760, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '590', '1390', '4', '106', 'None', '0', '8.7', '10', '0'), (8761, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '680', '1480', '3.5', '114', 'Jabalpur Engineering College (Govt.)', 'Information Technology', '71.5', '100', '0'), (8762, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '170', '162', '332', '3.5', '109', 'Delhi College Of Engineeing', 'Mechanical', '79.02', '100', '0'), (8763, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '560', '1360', '4', '111', 'DCE', 'EC', '80', '100', '0'), (8764, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Information Security', 'Fall ', '2013', '160', '168', '328', '4', '110', 'VIT', 'CS', '8.1', '10', '0'), (8765, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Information Security', 'Fall ', '2011', '800', '560', '1360', '4', '108', 'MU', 'Computer', '58.7', '100', '0'), (8766, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '500', '1290', '3', '105', 'VJTI', 'IT', '8.4', '10', '0'), (8767, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '163', '330', '4', '111', 'NIT Surathkal', 'ECE', '8.15', '10', '0'), (8768, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '163', '160', '323', '4', '109', 'Amity School of Engineering and Technology', 'Computer Science and Engineering', '7.56', '10', '0'), (8769, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Engineering/Comp Science', 'Fall ', '2014', '168', '159', '327', '4', '114', 'RAIT', 'INSTRUMENTATION', '77', '100', '0'), (8770, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2012', '800', '480', '1280', '4', '109', 'TSEC', 'Chem Engg', '72', '100', '0'), (8771, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '169', '157', '326', '4.5', '118', 'VIT University', 'ECE', '9.28', '10', '2'), (8772, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Engineering/Comp Science', 'Fall ', '2012', '800', '630', '1430', '4', '110', 'University of Pune', 'E&TC;', '3.95', '4', '0'), (8773, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Information Security', 'Fall ', '2012', '800', '570', '1370', '3.5', '113', 'VIT', 'Computer Science and Engineering', '8.61', '10', '0'), (8774, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '790', '560', '1350', '4', '4', 'CEG', 'Manufacturing', '8.61', '10', '0'), (8775, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'environmental engineering', 'Fall ', '2013', '166', '161', '327', '4', '111', 'D J Sanghvi', 'Chemical Engineering', '6', '10', '0'), (8776, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Mathematics', 'Fall ', '2014', '169', '156', '325', '4', '108', 'MNNIT', 'Electronics', '8.93', '10', '24'), (8777, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'HCI / CS', 'Fall', 'None', '166', '160', '326', '4', '114', 'BMSCE', 'Electronics and Communication Engineering', '9.24', '10', '0'), (8778, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2013', '165', '146', '311', '3', '101', 'MANIT (NIT) Bhopal', 'Bioinformatics', '7.13', '10', '25'), (8779, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '570', '1370', '4.5', '117', 'IIT Bombay', 'Computer Science', '7.84', '10', '0'), (8780, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2015', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (8781, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '790', '690', '1480', '3.5', 'None', 'University of Texas at Austin', 'ECE', '3.64', '4', '0'), (8782, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '640', '1410', '3.5', 'None', 'VIT', 'Information Technology', '9.25', '10', '0'), (8783, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '167', '165', '332', '4', '118', 'MU', 'Computer Engineering', '67.6', '100', '0'), (8784, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '166', '169', '335', '4', '113', 'IIT Guwahati', 'ECE', '8.37', '100', '0'), (8785, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '157', '320', '3', '106', 'Jaypee Institute of Information Technology', 'CS', '7.4', '10', '0'), (8786, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Human Computer Interaction', 'Fall ', '2012', '750', '630', '1380', 'None', '114', 'PESIT', 'Information Science', '8.1', '10', '0'), (8787, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '800', '710', '1510', '4', '115', 'Guru Gobind Singh Indraprashta University', 'Computer Science', '75.5', '100', '0'), (8788, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '800', '660', '1460', '4.5', '118', 'MU', 'Electronics and Telecommunication', '80.66', '100', '0'), (8789, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '800', '570', '1370', '4', '108', 'VIT University', 'EE', '8.7', '10', '0'), (8790, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '163', '155', '318', '4', '116', 'MSRIT', 'Electronics and Communication', '9.22', '10', '0'), (8791, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Human Computer Interaction', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'IIT Roorkee', 'Architecture', '8.2', '10', '0'), (8792, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '170', '154', '324', '4.5', '113', 'UPTU', 'CSE', '78.7', '100', '0'), (8793, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Information Security', 'Fall ', '2012', '770', '670', '1440', '3', '113', 'SGSITS', 'Information Technology', '75.6', '100', '0'), (8794, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '800', '730', '1530', '5', '119', 'MU', 'Electronics and Telecommunication', '71.9', '100', '0'), (8795, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '170', '154', '324', '4', '110', 'Netaji Subhas Institute of Technology', 'Computer Engineering', '73', '100', '0'), (8796, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '165', '160', '325', '4', '117', 'SJCE', 'E&C;', '9.5', '10', '0'), (8797, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Spring ', '2016', '170', '162', '332', '4', '110', 'BITS Pilani', 'Electronics and Communication', '9.43', '10', '3'), (8798, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Industrial Engg/Robotics', 'Fall ', '2014', '170', '154', '324', '4', '110', 'IIT Bombay', 'Mechanical Engineering', '7.32', '10', '22'), (8799, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2013', '164', '151', '315', '3.5', '112', 'SRM', 'Civil Engineering', '9.66', '10', '0'), (8800, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '710', '1490', '4', '111', 'Thadomal Shahani Engineering College', 'Computer Engineering', '67', '100', '0'), (8801, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '610', '1390', '4', '108', 'PESIT', 'Computer Science', '69.56', '100', '0'), (8802, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '620', '1420', '4', '106', 'COEP', 'Computer Engineering & Information Technology', '8.27', '10', '0'), (8803, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Embedded systems', 'Fall ', '2013', '166', '158', '324', '3.5', '110', 'Manipal Institue of Technology', 'Electronics and Communication', '8.8', '10', '0'), (8804, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '640', '1420', '1420', '116', 'IIT Roorkee', 'ECE', '8.026', '10', '0'), (8805, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '800', '560', '1360', '3', '98', 'D j Sanghvi', 'EXTC', '71', '100', '0'), (8806, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Information Security', 'Fall ', '2011', '800', '690', '1490', '4.5', '115', 'DA-IICT', 'Information and Communication Technology', '8.29', '10', '0'), (8807, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '170', '163', '333', '3.5', '113', 'NITK Surathkal', 'ECE', '8.17', '100', '0'), (8808, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Information Security', 'Fall ', '2012', '158', '151', '309', '4.5', '110', 'Nagpur University', 'Electronics and Communication', '76', '100', '0'), (8809, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Civil and Environmental Engg', 'Fall', 'None', '169', '165', '334', '4.5', '114', 'IIT Bombay', 'Chemical Engineering', '7.43', '10', '0'), (8810, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2010', '800', '590', '1390', '4', '112', 'University of Mumbai', 'Chemical Engineering', '0', '0', '0'), (8811, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '169', '157', '326', '4', '116', 'BITS Pilani', 'EEE', '8.83', '10', '0'), (8812, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '570', '1370', '4', '112', 'NIT Tirchy', 'CS', '8.81', '10', '0'), (8813, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '640', '1440', '5', '113', 'Delhi College Of Engineeing', 'Computer Engineerring', '63', '100', '0'), (8814, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (8815, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2011', '790', '470', '1260', '4.5', '110', 'VTU', 'biotechnology', '7.9', '10', '0'), (8816, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2013', '157', '150', '307', '3', '106', 'DY Patil University Navi Mumbai', 'Bioinformatics', '71', '100', '0'), (8817, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '165', '155', '320', '4.5', '110', 'SASTRA', 'ECE', '9.1', '10', '0'), (8818, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer vision/image-video processing', 'Fall ', '2013', '165', '160', '325', '5', '114', 'SPCE', 'IT', '61', '100', '0'), (8819, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '790', '640', '1430', '4', '109', 'K J Somaiya College of Engiineering', 'Mechanical Engineering', '60', '100', '0'), (8820, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Biotechnology/bio-engineering', 'Fall', 'None', '780', '530', '1310', '3.5', '103', 'NIT Rourkela', 'Biotechnology', '8.8', '10', '0'), (8821, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '800', '500', '1300', '4.5', '283', 'IP University Delhi', 'CSE', '81.61', '100', '0'), (8822, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2008', '800', '600', '1400', '4', '112', 'University of Kerala', 'Mechanical', '73', '100', '0'), (8823, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Engineering', 'Fall', 'None', '153', '148', '301', '3.5', '101', 'VTU', 'Computer science and engineering', '72.07', '100', '0'), (8824, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '1300', 'None', '1300', 'None', '100', 'BITS Pilani', 'Electrical and electronics', '7.5', '10', '0'), (8825, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2015', '169', '166', '335', '3.5', '113', 'NIT', 'Civil Engineering', '9.22', '10', '0'), (8826, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '168', '154', '322', '4', '110', 'Nagpur University', 'Electrical engineering', '74.4', '100', '0'), (8827, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2012', '800', '620', '1420', '1420', '105', 'RAIT', 'ECE', '72', '100', '0'), (8828, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '460', '1250', '3.5', '107', 'SSN College of Engineering', 'Electronics and Communication Engineering', '86', '100', '0'), (8829, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '160', '162', '322', '4', '114', 'R V College of Engineering', 'Computer Science and Engineering', '9.18', '10', '0'), (8830, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '730', '1520', '3.5', '109', 'VTU', 'CSE', '82.5', '100', '0'), (8831, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Operations Research', 'Fall ', '2012', '800', '550', '1350', '3.5', '109', 'MU', 'Computer', '75.2', '100', '0'), (8832, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '169', '154', '323', '4.5', '111', 'MU', 'Electronics and telecommunication', '80', '100', '0'), (8833, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '770', '600', '1370', '5', 'None', 'Toronto', 'EE', '3.6', '4', '0'), (8834, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Operations Research', 'Fall ', '2012', '800', '480', '1280', '4', '115', 'IIT Madras', 'Electrical Engineering', '7.3', '10', '0'), (8835, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (8836, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '770', '690', '1460', '4.5', '116', 'None', 'Computer Science', '8.48', '10', '0'), (8837, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (8838, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '690', '1490', '5', '114', 'VTU', 'Electronics and Communication', '9.85', '10', '0'), (8839, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Bioinformatics', 'Fall', 'None', 'None', 'None', '0', '3', 'None', 'IIT BHU', 'Biomedical Engineering', '7.83', '10', '0'), (8840, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2011', '760', '350', '1110', '3.5', '96', 'VTU', 'Mechanical', '67', '100', '0'), (8841, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '166', '161', '327', '4.5', '107', 'MSRIT', 'Electronics and Communication Engineering', '9.22', '10', '0'), (8842, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '800', '690', '1490', '4', '113', 'Sri Jayachamarajendra College of Engineering', 'Electronics & Communication', '81.92', '100', '0'), (8843, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '770', '650', '1420', '4', '115', 'Anna University', 'computer science', '80', '100', '0'), (8844, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '750', '610', '1360', '3.5', '109', 'Velammal Engineering College', 'Computer Science and Engineering', '8.8', '10', '0'), (8845, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '165', '157', '322', '4.5', '118', 'University of Pune', 'CS', '68', '100', '0'), (8846, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '168', '155', '323', '3.5', '108', 'K J Somaiya College of Engiineering', 'Electronics and Telecommunication', '75.26', '100', '0'), (8847, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '159', '323', '5', '119', 'MVJ College of Engineering', 'Computer Science', '75.2', '100', '0'), (8848, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2013', '170', '153', '323', '3.5', '104', 'DCE', '0', '74', '100', '0'), (8849, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '165', '330', '5.5', 'None', 'University of Cambridge', 'Computer Laboratory', '0', '0', '0'), (8850, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '750', '570', '1320', '3', '106', 'UA', 'Electronics And Communication', '75.7', '100', '0'), (8851, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2014', '159', '154', '313', '3.5', '107', 'KIIT', 'Civil Engineering', '7.85', '10', '1'), (8852, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Human Computer Interaction', 'Fall ', '2011', '800', '620', '1420', '4', '110', 'IIT Guwahati', 'Design', '8.04', '10', '0'), (8853, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '800', '740', '1540', '4.5', '293', 'D J Sanghvi', 'Computer Engg.', '72.91', '100', '0'), (8854, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '164', '155', '319', '4', '109', 'R V College of Engineering', 'Computer Science and Engineering', '9.4', '10', '0'), (8855, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '165', '162', '327', '4', '111', 'NIT Calicut', 'ECE', '9.04', '10', '17'), (8856, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '168', '165', '333', '4', '117', 'BITS Pilani', 'Computer Science', '9.12', '10', '14'), (8857, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '780', '710', '1490', '4.5', '111', 'VJTI', 'Electronics', '9.1', '10', '0'), (8858, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '163', '157', '320', '5', '114', 'VTU', 'ECE', '73.74', '100', '0'), (8859, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '163', '163', '326', '4.5', '118', 'VTU', 'Telecommunication', '8.38', '10', '0'), (8860, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2009', '740', '510', '1250', '3.5', '108', 'Amity University', 'Bioinformatics', '7.88', '10', '0'), (8861, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Urban Design', 'Fall ', '2015', '156', '155', '311', '4.5', '110', 'University of Mumbai', 'Sir J J College of Architecture', '74', '100', '36'), (8862, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '680', '1480', '5', '111', 'SSN College of Engineering', 'Electronics and Communication Engineering', '87', '100', '0'), (8863, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '166', '155', '321', '3.5', '113', 'YMCA', 'EIC', '8.17', '10', '0'), (8864, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '800', '510', '1310', '4', '112', 'BITS Pilani', '0', '9.91', '10', '0'), (8865, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '620', '1420', '4.5', '116', 'Jadavpur University', 'Electrical Engineering', '8.82', '10', '0'), (8866, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '164', '157', '321', '4', '111', 'SSN College of Engineering', 'ECE', '8.705', '10', '0'), (8867, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '166', '161', '327', '4', '117', 'University of Mumbai', 'Electronics and Telecom', '72', '100', '0'), (8868, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'HCI / CS', 'Fall ', '2014', '168', '149', '317', '3', 'None', 'IIIT Hyderabad', 'Computer Science', '7.87', '10', '0'), (8869, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'civil', 'Fall ', '2012', '163', '155', '318', '3.5', '107', 'Jadavpur University', 'construction engg', '8.56', '10', '0'), (8870, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '680', '1480', '5', '114', 'MU', 'Como Sc', '71', '100', '0'), (8871, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '165', '328', '4.5', '115', 'Anna University', 'CSE', '96.4', '100', '0'), (8872, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '156', '323', '4', '110', 'VIT', 'Electrical and Electronics', '8.51', '10', '0'), (8873, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Chemical Engineering', 'Fall ', '2013', '169', '157', '326', '3.5', 'None', 'M.N.I.T. JAIPUR', 'CHEMICAL ENGINEERING', '8.65', '10', '0'), (8874, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Human Computer Interaction', 'Fall ', '2010', '770', '560', '1330', '4.4', '116', 'UIIT HPU', '0', '67', '100', '0'), (8875, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '550', '1350', '4', '107', 'MU', 'EXTC', '71', '100', '0'), (8876, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Spring ', '2014', '169', '160', '329', '3.5', '114', 'Pune University', 'E&TC;', '64.47', '100', '0'), (8877, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'statistics', 'Fall ', '2015', '166', '165', '331', '3.5', '110', 'IIT Roorkee', 'Chemistry', '7.4', '10', '0'), (8878, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '169', '161', '330', '4.5', '117', 'None', 'Computer Science & Engineering', '8.92', '10', '0'), (8879, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Financial Engineering', 'Fall ', '2015', '170', '153', '323', '4', '113', 'Thadomal Shahani Engineering College', 'Information Technology', '66.52', '100', '25'), (8880, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '800', '530', '1330', '3.5', '108', 'Sri Jayachamarajendra College of Engineering', 'Electronics and Communication', '9.87', '10', '0'), (8881, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '580', '1370', '5.5', '115', 'VTU', 'Computer Science & Engineering', '78', '100', '0'), (8882, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Financial Engineering', 'Fall ', '2015', '170', '153', '323', '4', '114', 'Sardar Patel College of Engineering', 'Computer Science', '70', '100', '0'), (8883, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2013', '168', '152', '320', '4', 'None', 'Thiagarajar College of engineering', 'electrical and electronics', '9.53', '10', '0'), (8884, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '162', '160', '322', '4', '112', 'Bangalore University', 'electrical', '70', '100', '0'), (8885, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (8886, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '170', '157', '327', '4', '108', 'MU', 'Electronics and Telecommunication', '59.7', '100', '0'), (8887, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '730', '490', '1220', '4', '110', 'Jaypee Institute of Information Technology', 'CSE', '8.7', '10', '0'), (8888, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'CS', 'Fall ', '2013', '166', '164', '330', '5', '119', 'CoE Trivandrum', 'Electronics and Communication Engg', '8.5', '10', '0'), (8889, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '700', '430', '1130', '3', '91', 'Andal Alagar College of Engineering', 'EEE', '79.3', '100', '0'), (8890, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall', 'None', '780', '570', '1350', '3.5', '114', 'BITS Dubai', 'Mechanical Engineering', '9.64', '10', '0'), (8891, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '800', '720', '1520', '4', '118', 'Sardar Patel College of Engineering', 'Electrical Engineering', '68', '100', '0'), (8892, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '700', '1490', '4', '116', 'R V College of Engineering', 'electrical', '80.11', '100', '0'), (8893, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '670', '1460', '3.5', '114', 'NITK Surathkal', 'IT', '8.8', '10', '0'), (8894, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '170', '151', '321', '3', '104', 'BITS Goa', 'Mechanical', '8.32', '10', '0'), (8895, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall', 'None', '167', '155', '322', '4', '116', 'MU', 'EXTC', '77', '100', '0'), (8896, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'electronics', 'Fall ', '2012', '800', '680', '1480', '4', '101', 'University of Mumbai', 'Electronics', '80.44', '100', '0'), (8897, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '158', '323', '3.5', '113', 'NITK Surathkal', 'ECE', '8.4', '10', '0'), (8898, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '158', '152', '310', '4', '106', 'Sri Venkateswara College of Engineering', 'ECE', '79', '100', '0'), (8899, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Human Computer Interaction', 'Fall', 'None', '800', '660', '1460', '3.5', '110', 'University of Mumbai', 'Information Technology', '78.48', '100', '0'), (8900, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '630', '1430', '4', '106', 'NIT Jalandhar', 'Computer Science', '74', '100', '0'), (8901, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '740', '550', '1290', '4', '115', 'Anna University', 'ECE', '79', '100', '0'), (8902, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '770', '530', '1300', '4', '108', 'Anna University', 'ECE', '78.74', '100', '0'), (8903, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Robotics', 'Fall ', '2011', '800', '710', '1510', '4.5', '111', 'Coimbatore Insitute of Technology', 'Computer Science', '8.8', '10', '0'), (8904, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '170', '149', '319', '3', '103', 'International Institute of Information Technology Hyderabad', 'Computer Science and Engineering', '8.36', '10', '0'), (8905, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '166', '157', '323', '4', '114', 'PSG College of Technology', 'Electronics and Communication Engineering', '9.7', '10', '0'), (8906, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '800', '740', '1540', '5', '114', 'R V College of Engineering', 'EEE', '82', '100', '0'), (8907, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall', 'None', '163', '156', '319', '4', '109', 'MU', 'Electronics and telecommunication', '76.5', '100', '0'), (8908, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '167', '155', '322', 'None', '112', 'SASTRA', 'ECE', '0', '0', '0'), (8909, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '164', '161', '325', '5', '118', 'NIT Calicut', 'Electronics and Communication Engineering', '5.9', '10', '0'), (8910, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Finance', 'Fall ', '2011', '50', '34', '84', '4.5', '103', 'IIT Madras', 'Biotechnology', '7.37', '10', '0'), (8911, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'CS / MSIS / ITM', 'Fall ', '2014', '164', '155', '319', '3.5', '105', 'SMVDU Jammu', 'CSE', '8.73', '10', '39'), (8912, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '154', '315', '4', '120', 'PICT', 'Information Technology', '4.92', '5', '24'), (8913, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '159', '152', '311', 'None', 'None', 'MU', 'EXTC', '66.4', '100', '0'), (8914, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '680', '1440', '4', '114', 'VESIT', 'Electronics and Telecom', '76', '100', '0'), (8915, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '730', '690', '1420', '4', '109', 'SSN College of Engineering', 'EEE', '79', '100', '0'), (8916, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '640', '1440', '4', '110', 'BITS Pilani', 'Computer Science', '8.5', '10', '0'), (8917, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '157', '322', '4.5', '110', 'NIT Karnataka', 'Computer Science and Engineering', '8.32', '10', '0'), (8918, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '720', '560', '1280', '3.5', '108', 'Model Engineering College', 'Computer science', '75', '100', '0'), (8919, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Structural', 'Fall ', '2013', '164', '154', '318', '4', '104', 'NIT Srinagar', 'Civil Engineering', '9.603', '10', '0'), (8920, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '580', '1370', '4', '115', 'CEG', 'Computer Science', '8.3', '10', '0'), (8921, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '170', '164', '334', '4', '113', 'NIT Warangal', 'ECE', '8.64', '10', '0'), (8922, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall', 'None', '790', '700', '1490', '4.5', 'None', 'None', '0', '80', '100', '0'), (8923, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '640', '1430', '4.5', '115', 'MNM Jain Engineering College', 'CSE', '75.1', '100', '0'), (8924, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '770', '650', '1420', '4', '111', 'VESIT', 'Electronics and Tele communications', '70', '100', '0'), (8925, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '650', '1450', '4', '116', 'SRM', 'Information Technology', '9.8', '10', '0'), (8926, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '640', '1420', '4', '113', 'VIT Pune', 'Comp Engg', '8.83', '10', '0'), (8927, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall', 'None', '170', '157', '327', '4', '102', 'BITS Pilani', 'EEE', '9.94', '10', '0'), (8928, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '680', '1480', '5', '116', 'University of Mumbai', 'Electronics and Telecommunication', '70.57', '100', '0'), (8929, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '170', '152', '322', 'None', '110', 'SASTRA', 'ECE', '8.1', '10', '24'), (8930, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '720', '1520', '5', '116', 'VJTI', 'Computer Engineering', '8.5', '10', '0'), (8931, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Mechanical Engineering', 'Fall', 'None', '790', '660', '1450', '4', '111', 'University of Pune', 'Mechanical Engineering', '63', '100', '0'), (8932, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'environmental engineering', 'Fall ', '2011', '800', '670', '1470', '4.5', '113', 'Delhi College Of Engineeing', 'Environmental Engineering', '74.54', '100', '0'), (8933, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '168', '145', '313', '3', '109', 'NITK Surathkal', 'ECE', '8.97', '10', '26'), (8934, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '750', '610', '1360', '3', '109', 'VJTI', 'Computer Engineering', '8.6', '10', '0'), (8935, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '470', '1240', '3.5', '106', 'BMSCE', 'Telecommunication', '70', '100', '0'), (8936, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering and Computer Science', 'Fall ', '2015', '168', '164', '332', '4', '119', 'University of Mumbai', 'Electronics and Telecommunication', '83', '100', '0'), (8937, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '163', '150', '313', '3.5', '100', 'R V College of Engineering', 'Mechanical', '9.19', '10', '0'), (8938, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '160', '154', '314', '3.5', '108', 'Sri Bhagawan Mahaveer Jain College of Engineering', 'Information Science', '73', '100', '0'), (8939, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '170', '150', '320', '3', '104', 'BITS Goa', 'Mechanical', '6.32', '10', '48'), (8940, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '166', '158', '324', '3.5', '105', 'Manipal Institue of Technology', 'Mechatronics', '7.1', '10', '0'), (8941, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '99', '91', '190', '4.5', '115', 'BITS Pilani', 'Electrical and Electronics', '8.6', '10', '0'), (8942, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '167', '158', '325', '4', '115', 'Maharaja Agrasen Institute Of Technology', 'CSE', '71.7', '100', '7'), (8943, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '166', '162', '328', '4', '117', 'None', 'EEE', '8.9', '10', '0'), (8944, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '163', '156', '319', '4', '113', 'MU', 'Computer Engineering', '67', '100', '0'), (8945, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '164', '155', '319', '3', '111', 'Amity University', 'Computer Science', '7.22', '10', '36'), (8946, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '168', '156', '324', '4', '112', 'NIT Allahabad', 'CSE', '9.13', '10', '0'), (8947, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Spring ', '2015', '167', '150', '317', '3', '102', 'COEP', 'Instrumentation & Control Engineering', '8.03', '10', '0'), (8948, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and electrical engineering', 'Fall ', '2014', '165', '150', '315', '3.5', '110', 'Vidyalankar Institute of Technology', 'Electronics', '72', '100', '0'), (8949, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '630', '1390', '3.5', '103', 'Rajiv Gandhi Technical University', 'Electronics and Communication', '73', '100', '0'), (8950, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '159', '156', '315', '4', '112', 'Cochin University of Science and Technology', 'INFORMATION TECHNOLOGY', '84.15', '100', '63'), (8951, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '158', '156', '314', '3', '109', 'MSRIT', 'Telecommunication', '8.52', '10', '0'), (8952, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '650', '1450', '4.5', 'None', 'Anna University', 'Production', '8.57', '10', '0'), (8953, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '800', '450', '1250', '4.5', '112', 'Dr. Ambedkar Institute of Technology', 'Computer Science', '75', '100', '0'), (8954, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '660', '1440', '4', '111', 'MU', 'Computer Enginnering', '69', '100', '0'), (8955, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '168', '151', '319', '3.5', '109', 'BITS Pilani', 'Mechanical', '7.99', '10', '0'), (8956, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2010', 'None', 'None', '0', 'None', 'None', 'VTU', 'Computer Science', '76', '100', '0'), (8957, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '158', '152', '310', '3.5', '98', 'Shri Ramdeobaba Engineering College', 'Industrial Engineering', '77', '100', '0'), (8958, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2013', '161', '154', '315', '4', '109', 'SRM', 'Civil Engineering', '8.95', '10', '0'), (8959, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '640', '1440', '3', '113', 'Galgotias College Of Engineering & Technology', 'CSE', '68.7', '100', '0'), (8960, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Materials Science & Engineering', 'Fall ', '2014', '166', '157', '323', '3.5', '111', 'IIT (BHU) Varanasi', 'Metallurgical Engineering', '8.37', '10', '0'), (8961, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '169', '152', '321', '3.5', '97', 'VIT', 'ECE', '89.3', '100', '0'), (8962, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '750', '540', '1290', '3', '105', 'University of Pune', 'Computer Engineering', '65', '100', '0'), (8963, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', 'None', 'None', '0', 'None', '117', 'Symbiosis Institute of Technology', 'Mechanical', '3.511', '4', '0'), (8964, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '800', '520', '1320', '4', '113', 'VTU', 'Electronics and Communication', '61', '100', '0'), (8965, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '770', '660', '1430', '3', '111', 'Motilal Nehru National Institute of Technology', 'ECE', '8.65', '10', '0'), (8966, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '790', '690', '1480', '4', '109', 'Sardar Patel College of Engineering', 'Electrical Engineering', '59.3', '100', '0'), (8967, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '710', '1500', '3.5', '107', 'COEP', 'Computers', '6.89', '10', '0'), (8968, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '166', '155', '321', 'None', '107', 'Thapar University', 'Computer Science', '7.44', '10', '0'), (8969, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'CS', 'Fall ', '2012', '800', '700', '1500', '4', 'None', 'University of Mumbai', 'Computer', '64', '100', '0'), (8970, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '780', '570', '1350', '4', '117', 'PESIT', 'Telecommunication Engineering', '8.68', '10', '0'), (8971, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '160', '322', '3', '109', 'Panjab University', 'Computer Science', '76', '100', '0'), (8972, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '640', '1440', '4.5', '114', 'IIT Roorkee', 'Electrical Engineering', '7.1', '10', '0'), (8973, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '163', '152', '315', '3.5', '111', 'Siddaganga Institue of Technology', 'Telecommunication Engineering', '9.17', '10', '0'), (8974, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '165', '150', '315', '3.5', '111', 'BITS Pilani', 'ENI', '8.42', '10', '0'), (8975, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '148', '309', '3', '106', 'University Vishweriah College of Engineering', 'Computer Science', '75.1', '100', '0'), (8976, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '800', '540', '1340', '4', '119', 'Anna University', 'IT', '74', '100', '0'), (8977, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '164', '157', '321', '3', '105', 'VTU', 'Electrical and Electronics', '73.26', '100', '24'), (8978, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '152', '316', '3.5', '102', 'University of Pune', 'Information Technology', '71.44', '100', '0'), (8979, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '530', '1320', '3.5', '102', 'Sinhgad College of Engineering', 'Computer', '53', '100', '0'), (8980, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '161', '153', '314', '3.5', '108', 'PESIT', 'Electronics and Communication', '69.6', '100', '14'), (8981, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '550', '1350', '3.5', '104', 'D J Sanghvi', 'Information Technology', '74', '100', '0'), (8982, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall', 'None', '170', '153', '323', '4', '110', 'IIT', '0', '8.4', '10', '0'), (8983, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Information Science', 'Fall ', '2011', '680', '470', '1150', 'None', '102', 'Himachal Pradesh University/UIIT', 'Information Technology', '73.6', '100', '0'), (8984, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2015', '800', '650', '1450', '4', '115', 'BITS Goa', 'Electrical and Electronics Engineering', '8.2', '10', '32'), (8985, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '167', '157', '324', '3.5', '102', 'Sardar Vallabhbhai National Institute of Technology', 'Production Department', '7.66', '10', '34'), (8986, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '166', '156', '322', '3.5', '114', 'GITAM', 'CSE', '8.04', '100', '0'), (8987, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '640', '1440', '4', '109', 'PSG College of Technology', 'ECE', '8.4', '10', '0'), (8988, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2008', '800', '520', '1320', '5', '287', 'D J Sanghvi', 'Computer Engineering', '62', '100', '0'), (8989, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '157', '321', '4', '106', 'MU', 'Computer Engg.', '68', '100', '0'), (8990, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '450', '1230', '3.5', 'None', 'Walchand College Of Engineering', 'Electronics', '76', '100', '0'), (8991, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2015', '164', '153', '317', '3.5', '104', 'COEP', 'Civil Engineering', '7.52', '10', '0'), (8992, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '590', '1390', '3.5', '107', 'Nagpur University', 'electronics', '69', '100', '0'), (8993, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '750', '590', '1340', '3', '107', 'JNTU', 'Electronics and Communication', '74', '100', '18'), (8994, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '580', '1380', '3.5', 'None', 'Guru Gobind Singh Indraprashta University', 'ECE', '76.59', '100', '0'), (8995, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (8996, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '168', '166', '334', '5', '116', 'IIT BHU', '0', '8.4', '10', '0'), (8997, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '550', '1330', '4', '100', 'DTU', 'IT', '71', '100', '0'), (8998, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '152', '317', '4', '99', 'CEG', 'Information Technology', '9.1', '10', '0'), (8999, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '800', '550', '1350', '5', '111', 'Osmania University', 'Mechanical Engineering', '83', '100', '0'), (9000, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '690', '1490', '4.5', '113', 'TCET MU', 'Computer Engineering', '69', '100', '0'), (9001, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2009', '770', '570', '1340', '4', '113', 'Cochin University of Science and Technology', 'Computer Science & Engineering', '68', '100', '0'), (9002, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2010', '800', '580', '1380', '3.5', '106', 'PICT', 'Computer Engg', '3.56', '4', '0'), (9003, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and computer engineering electrical engineering telecommunications engineering', 'Fall ', '2015', '170', '157', '327', '4.5', '114', 'Jamia Millia Islamia', 'Electronics and Communication', '8.89', '10', '3'), (9004, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '168', '153', '321', '4', '110', 'D J Sanghvi', 'Computer Engg', '69', '100', '21'), (9005, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '157', '320', '4.5', '117', 'Shiv Nadar University', 'Computer Science', '9.15', '10', '0'), (9006, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '640', '1440', '4', '107', 'VTU', 'Telecommunication', '77', '100', '0'), (9007, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '156', '319', 'None', 'None', 'Panjab University', 'Information Technology', '70.2', '100', '0'), (9008, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '740', '510', '1250', '3.5', '100', 'PSG College of Technology', 'Computer Science and Engineering', '8.94', '10', '0'), (9009, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '168', '161', '329', '4', '110', 'BITS Pilani', 'El', '8.7', '10', '0'), (9010, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '168', '152', '320', '4', '108', 'MU', 'Computer Engineering', '69.47', '100', '12'), (9011, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '169', '162', '331', '4', '113', 'Visvesvaraya NIT Nagpur', 'Mechanical Engineeing', '7.94', '10', '0'), (9012, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '160', '148', '308', '3.5', '99', 'BIT Mesra', 'Electronics and Communication', '80.8', '100', '0'), (9013, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '154', '321', '3', '108', 'FRCRCE-Mumbai University', 'Information Technology', '67.2', '100', '0'), (9014, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '163', '156', '319', '3.5', '104', 'MU', 'Computers', '67.72', '100', '0'), (9015, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '168', '152', '320', '3.5', '106', 'Maharashtra Institute of Technology', 'electronics and telecommunication', '70', '100', '0'), (9016, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'International Affairs.', 'Fall ', '2013', '150', '148', '298', '4', '104', 'None', '0', '77', '100', '0'), (9017, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Chemical Engineering', 'Fall ', '2011', '800', '540', '1340', '4', '112', 'University school of chemical technology GGS Indraprastha University Delhi', '0', '79', '100', '0'), (9018, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '168', '158', '326', '4', '107', 'Veermata Jijabai Technological Institute', 'Electronics Engineering', '8.7', '10', '14'), (9019, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '148', '311', '4.5', '111', 'GITAM', 'CSE', '9.25', '10', '0'), (9020, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '159', '323', '5', '116', 'Amrita School of Engineering', 'Computer Science and Engineering', '8.6', '10', '0'), (9021, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '157', '319', '4', '115', 'BMSCE', 'CS', '9.3', '10', '24'), (9022, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Information Security', 'Fall ', '2014', '166', '156', '322', '4', '106', 'Thapar University', 'Computer Science', '7.1', '10', '24'), (9023, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '170', '163', '333', '4', '114', 'CoE Trivandrum', 'Computer Science', '7.64', '10', '0'), (9024, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2006', '7990', '650', '8640', '5', '297', 'MVSR', 'Mechanical Engg', '79.6', '100', '0'), (9025, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '156', '318', '3.5', '110', 'UPTU', 'Electronics', '64.74', '100', '42'), (9026, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Engineering Management / Industrial Engineering / IMSE', 'Fall', 'None', '163', '150', '313', 'None', '100', 'University of Pune', 'Mechanical Engg', '3.76', '4', '46'), (9027, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '161', '156', '317', '3.5', '105', 'Vishwakarma Institute of Technology', 'Computer Engineering', '75', '100', '0'), (9028, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '157', '143', '300', '3.5', '91', 'MU', 'Computer', '60.89', '100', '0'), (9029, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '170', '152', '322', '3.5', '98', 'Guru Gobind Singh Indraprashta University', 'TOOL ENGINEERING', '79.47', '100', '18'), (9030, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2013', '169', '161', '330', '4.5', '112', 'B M S College of Engineering', 'Mechanical', '9.14', '10', '0'), (9031, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '790', '670', '1460', '3.5', '107', 'BITS Pilani', 'Information Systems', '8.53', '10', '0'), (9032, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '169', '160', '329', '4.5', '111', 'NIT-Trichy', 'ECE', '7.82', '10', '24'), (9033, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '168', '161', '329', '3.5', '108', 'Delhi College Of Engineeing', 'Department of Computer Science', '71.4', '100', '0'), (9034, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '163', '154', '317', '3.5', '103', 'VTU', 'Computer science', '75.8', '100', '0'), (9035, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Spring ', '2016', '170', '155', '325', '4', '101', 'NIT Goa', 'CSE', '8.1', '10', '14'), (9036, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and computer engineering electrical engineering telecommunications engineering', 'Fall ', '2015', '166', '161', '327', '3.5', 'None', 'CoE Trivandrum', 'ELECTRONICS AND COMMUNICATION', '6.95', '10', '0'), (9037, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '780', '420', '1200', '3.5', '105', 'SRM', 'Computer Science and Engineering', '9.28', '10', '0'), (9038, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '170', '159', '329', '3', '103', 'Punjab Engineering College', 'Computer Science', '9.25', '10', '0'), (9039, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '156', '320', '3.5', '106', 'BIT Mesra', 'Information Technology', '7.34', '10', '0'), (9040, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Human Computer Interaction', 'Fall ', '2013', '154', '150', '304', '4', '97', 'CEG', 'Media Sciences', '8.235', '10', '0'), (9041, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '163', '164', '327', '4', 'None', 'Indira Gandhi Institute Of Technology', 'Electronics and Communication engineering', '81.94', '100', '0'), (9042, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Electronics', 'Fall ', '2014', '168', '154', '322', '3.5', '105', 'PSG College of Technology', 'Electrical and Electronics Engineering', '9.23', '10', '0'), (9043, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '590', '1390', '3', '111', 'K J Somaiya College of Engiineering', 'Computer Engineering', '75.12', '100', '0'), (9044, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '740', '530', '1270', '3', '105', 'Pune University', 'IT', '68', '100', '0'), (9045, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '640', '1440', '3.5', '107', 'VJTI', 'IT', '7.8', '10', '0'), (9046, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '154', '318', '3', '102', 'thakur mumbai university', 'computer engg', '62.6', '100', '0'), (9047, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '168', '167', '335', '4', '105', 'VNIT Nagpur', 'ECE', '7.13', '10', '0'), (9048, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '166', '154', '320', '3.5', '104', 'VNIT Nagpur', 'Electrical and Electronics Engg.', '8.52', '10', '0'), (9049, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '590', '1380', '3.5', '100', 'Sardar Patel College of Engineering', 'Computer engineering', '65.5', '100', '0'), (9050, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '170', '157', '327', '4', 'None', 'LNMIIT', 'COMPUTER SCIENCE', '8.2', '10', '0'), (9051, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '163', '151', '314', '3', '94', 'Amravati University', 'Mechanical Engineering', '72.35', '100', '0'), (9052, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and computer science', 'Fall ', '2013', '160', '152', '312', 'None', '100', 'Jaypee Institute of Information Technology', 'ECE', '6.8', '10', '0'), (9053, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '170', '156', '326', '3', 'None', 'Thapar University', 'Mechanical', '7.65', '10', '23'), (9054, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '610', '1410', 'None', '108', 'MU', 'Electronics Engineering', '63', '100', '0'), (9055, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '154', '167', '321', '3', '108', 'Veermata Jijabai Technological Institute', 'Information Technology', '8.6', '10', '0'), (9056, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'software engineering', 'Fall ', '2013', '160', '151', '311', '4', '109', 'R.D. National College', 'IT', '70', '100', '0'), (9057, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '170', '161', '331', '4', '111', 'Maharaja Surajmal Institute of Technology', 'Computer Science', '0', '0', '30'), (9058, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '165', '157', '322', '3', '104', 'NIT Calicut', 'Production Engineering', '8.5', '10', '0'), (9059, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '163', '153', '316', '3', '112', 'VIT', 'electronics', '8.86', '10', '0'), (9060, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '167', '163', '330', '4', 'None', 'NITK Surathkal', 'Mechanical Engineering', '8.92', '10', '29'), (9061, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '163', '164', '327', '4.5', '106', 'Nationl Institute of Technology Jamshedpur', 'Electronics and Communication Engineering', '9.42', '10', '0'), (9062, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '660', '1460', '4', '107', 'Nagpur University', 'Electronics Engineering', '69', '100', '0'), (9063, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '168', '157', '325', '4', '112', 'IIITD', 'Computer Science', '8.67', '10', '0'), (9064, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics & Communication', 'Fall ', '2012', '780', '690', '1470', 'None', 'None', 'SSN College of Engineering', 'ECE', '83', '100', '0'), (9065, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '780', '620', '1400', '4', '110', 'NIT Durgapur', 'Computer Science and Engineering', '8.29', '10', '0'), (9066, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '168', '330', '4.5', '116', 'Pune University', 'Computer Engineering', '59', '100', '0'), (9067, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '163', '151', '314', '4', '98', 'University of Mumbai', 'Electronics & Telecommunication', '75.56', '100', '0'), (9068, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '740', '560', '1300', '3', '100', 'YCCE', 'Electronics', '74', '100', '0'), (9069, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '760', '640', '1400', '3.5', '107', 'K J Somaiya College of Engiineering', 'Computer Engineering', '68.6', '100', '0'), (9070, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '600', '1400', '3.5', '109', 'NIT Calicut', 'ECE', '8.1', '10', '0'), (9071, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '163', '147', '310', '3.5', '106', 'SJCE', 'Electronics and Communication', '9.01', '10', '0'), (9072, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '158', '321', '4', '106', 'IIIT Jabalpur', 'Computer Science', '8.4', '10', '0'), (9073, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '151', '312', '4', '105', 'CSVTU', 'Electronics and Telecommunications', '71.1', '100', '18'), (9074, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '640', '1440', '4', '114', 'West Bengal University Of Technology', 'Information Tecdhnology', '8.03', '10', '0'), (9075, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '165', '145', '310', '3', '100', 'IIT', 'Information Technology', '8.28', '10', '48'), (9076, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '770', '680', '1450', '3', '99', 'BMSCE', 'EC', '85', '100', '0'), (9077, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '169', '153', '322', '4', '115', 'IIT Kharagpur', 'ECE', '9.28', '10', '0'), (9078, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '165', '148', '313', '2.5', '97', 'NIT Allahabad', 'Mechanical Engineering', '7.26', '10', '0'), (9079, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '620', '1400', '3.5', '114', 'NMIMS', 'Computer Engineering', '3.41', '4', '0'), (9080, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '530', '1330', '4', '104', 'VTU', 'Computer Science', '81.3', '100', '0'), (9081, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '740', '550', '1290', '3.5', '104', 'MU', 'computer', '67.23', '100', '0'), (9082, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '740', '610', '1350', '3.5', '92', 'MU', 'Computers', '70.58', '100', '0'), (9083, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall', 'None', '800', '440', '1240', '3', '97', 'MU', 'mech', '71', '100', '0'), (9084, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '168', '152', '320', '3.5', '103', 'KIIT', 'Computer Science', '9', '10', '0'), (9085, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '650', '1450', '3', '104', 'MU', 'Electronics and telecommunication', '78', '100', '0'), (9086, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '151', '312', '3', 'None', 'University of Pune', 'Computer Engg..', '60', '100', '0'), (9087, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '170', '148', '318', '3', '112', 'NIT Delhi', 'CSE', '8.23', '10', '0'), (9088, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'HCI / CS', 'Fall ', '2014', '169', '149', '318', '3.5', '108', 'Jaypee Institute of Information Technology', 'Computer Science Engineering', '8', '10', '0'), (9089, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '550', '1350', '3.5', '107', 'Jaypee Institute of Information Technology', 'ECE', '7.6', '10', '0'), (9090, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '168', '149', '317', '4', '107', 'ITM University Gurgaon', 'CS', '9.01', '10', '6'), (9091, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '790', '510', '1300', '3', '106', 'Jaypee Institute of Information Technology', 'Computer Science and Engineering', '7.5', '10', '0'), (9092, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '570', '1360', '4', '110', 'PESIT', 'Telecommunications', '8.33', '10', '0'), (9093, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '520', '1320', '4.5', '112', 'VTU', 'ECE', '75', '100', '0'), (9094, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '650', '1450', '4.5', '111', 'MU', 'Electronics & Telecommunication', '72.34', '100', '0'), (9095, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '550', '1330', '4.5', '112', 'University of Kerala', 'Electronics and Communication Engineering', '84', '100', '0'), (9096, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '165', '162', '327', '3', '109', 'NIT Silchar', '0', '6.96', '10', '54'), (9097, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '166', '160', '326', '4', '108', 'Bhilai Institute of Technology', 'Computer Science', '7.81', '10', '0'), (9098, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '167', '328', '3.5', '109', 'RNSIT', '0', '78.23', '100', '0'), (9099, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2011', '800', '640', '1440', '3.5', '108', 'IIT Roorkee', 'Industrail Eng', '7.1', '100', '0'), (9100, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '159', '149', '308', '3.5', '100', 'VIT Pune', 'I. T', '8.5', '10', '0'), (9101, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '167', '153', '320', '3.5', '110', 'NIT Kurukshetra', 'Electronics and Communication', '8.847', '10', '12'), (9102, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '166', '151', '317', '3.5', '95', 'VJTI', 'CS', '7.6', '10', '0'), (9103, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '156', '323', '4', '116', 'University of Mumbai', 'Computer Engineering', '65.55', '100', '16'), (9104, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall', 'None', '163', '153', '316', '3.5', '114', 'Jabalpur Engg College', 'EE', '8.21', '10', '0'), (9105, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '169', '154', '323', '4', '115', 'None', '0', '0', '0', '0'), (9106, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Human Computer Interaction', 'Fall ', '2011', '760', '440', '1200', '3.5', '110', 'Pune University', 'Computer Science', '70.66', '100', '0'), (9107, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '160', '146', '306', '3.5', '107', 'Sir MVIT', 'TELECOMMUNICATION', '82.54', '100', '0'), (9108, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '166', '157', '323', '3.5', '115', 'PESIT', 'Electronics and Communication', '9.03', '10', '0'), (9109, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '660', '1460', '3.5', '104', 'None', '0', '7.22', '10', '0'), (9110, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '720', '660', '1380', '4', '107', 'Anna University', 'Information Technology', '7.5', '10', '0'), (9111, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2013', '163', '155', '318', '3', '109', 'VIT University', 'Mechanical Engineering', '8.64', '10', '0'), (9112, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '152', '311', '4', '110', 'MU', 'Computer engg', '62', '100', '0'), (9113, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '168', '165', '333', '4.5', 'None', 'Delhi College Of Engineeing', 'ECE', '78.48', '100', '0'), (9114, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '800', '510', '1310', '3.5', '102', 'PSG College of Technology', 'IT', '9.36', '10', '0'), (9115, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '690', '1490', '3.5', '113', 'NIT-Trichy', 'EEE', '8.61', '10', '0'), (9116, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '160', '323', '4', '117', 'Thadomal Shahani Engineering College', 'Computer Engineering', '64.96', '100', '0'), (9117, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '158', '153', '311', '3', '97', "St Joseph's College of Engineering", 'Mechanical engineering', '74', '100', '0'), (9118, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2014', '162', '152', '314', '4', '105', 'L D College Of Engineering', 'Civil Engineering', '7.9', '10', '0'), (9119, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '640', '1440', '3.5', '110', 'University of Mumbai', 'Computer Engineering Department', '61', '100', '0'), (9120, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '160', '158', '318', '4.5', '116', 'Amrita School of Engineering', 'ECE', '7.73', '10', '0'), (9121, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '640', '1440', '4.5', '114', 'MU', 'IT', '76.5', '100', '0'), (9122, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '170', '161', '331', '4.5', '115', 'BITS Pilani', 'Electrical and Electronics', '8.04', '10', '0'), (9123, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '155', '321', '3.5', '111', 'None', 'Computer Science', '9.06', '10', '0'), (9124, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '170', '160', '330', '3.5', '113', 'NIT Calicut', 'ECE', '7.27', '10', '24'), (9125, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '600', '1400', '3.5', '110', 'NIT Hamirpur', 'Computer Science and Engineering', '8.64', '10', '0'), (9126, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '170', '151', '321', '4', '106', 'IIT Kharagpur', 'Mechanical Engineering B.Tech and M.Tech dual degree (5 yr)', '8.84', '10', '0'), (9127, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '150', '313', '4', 'None', 'DA-IICT', 'Information and Communication Technology', '9.26', '10', '15'), (9128, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '168', '162', '330', '3', '111', 'BIT Mesra', 'Electronics and Communication', '7.72', '10', '0'), (9129, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '165', '157', '322', '3.5', '109', 'VTU', 'Mechanical Engineering', '81', '100', '0'), (9130, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '161', '154', '315', '3', '103', 'PESIT', 'Telecommunicaiton', '7.95', '10', '0'), (9131, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Chemical Engineering', 'Fall ', '2012', '163', '156', '319', '4', '115', 'BITS Pilani', 'Chemical Engineering', '8.4', '10', '0'), (9132, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'software engineering', 'Fall ', '2015', '161', '154', '315', '3.5', '111', 'SASTRA', 'CSE', '8.75', '10', '0'), (9133, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2012', '800', '550', '1350', '3', '107', 'University of Mumbai', 'ELECTRONICS AND TELECOMMUNICATIONS', '67', '100', '0'), (9134, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '167', '157', '324', '3.5', '116', 'Amrita Vishwa Vidhyapeetham', 'ECE', '7.55', '10', '0'), (9135, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '164', '161', '325', '5', '111', 'Sir MVIT', 'Information Science and Engineering', '74.34', '100', '24'), (9136, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '158', '320', '3.5', '110', 'Thadomal Shahani Engineering College', 'Computers', '75.2', '100', '0'), (9137, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2014', '168', '161', '329', '3', '105', 'IIT BHU', 'Electronics and communication', '7.86', '10', '0'), (9138, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '152', '315', '3.5', '109', 'Pune University', 'Computer Engineering', '77', '100', '24'), (9139, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '170', '159', '329', '4.5', '113', 'MSRIT', 'EC', '9.1', '10', '0'), (9140, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '160', '324', '4.5', '117', 'Don Bosco Institute of Technology', 'Computer Science', '75.5', '100', '14'), (9141, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '590', '1390', '3', '105', 'Uttarakhand Technical University', 'Computer Science and Engineering', '72', '100', '0'), (9142, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Civil Engineering', 'Fall', 'None', '165', '157', '322', '3.5', '110', 'None', 'Civil Engineering', '8.19', '10', '0'), (9143, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '160', '157', '317', '3.5', '113', 'Amrita School of Engineering', 'EEE', '8.64', '10', '0'), (9144, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '540', '1340', '4', '112', 'RNSIT', 'Electronics and Communication', '75', '100', '0'), (9145, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '720', '580', '1300', 'None', 'None', 'IIT Guwahati', 'CSE', '6.55', '10', '0'), (9146, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '158', '319', '4', '112', 'MDU', 'Computer Science', '75', '100', '41'), (9147, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (9148, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering/Comp Science', 'Fall ', '2013', '800', '500', '1300', '3.5', '110', 'SRM', 'Computer Science', '8.47', '10', '0'), (9149, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '770', '680', '1450', '3.5', '101', 'Anna University', 'Production Engg', '8.6', '10', '0'), (9150, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '168', '158', '326', 'None', '115', 'Cochin University of Science and Technology', 'Computer Science and Engineering', '75', '100', '0'), (9151, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '460', '1260', '3.5', '99', 'Mahatma Gandhi University Kerala', 'Electronics & Communication', '79.5', '100', '0'), (9152, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '760', '580', '1340', '3.5', '105', 'RMK Engineering College', 'B.E Computer Science', '74', '100', '0'), (9153, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '166', '162', '328', '3', '102', 'BITS Pilani', 'Electronics & Communication', '9.73', '10', '0'), (9154, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2008', '800', '560', '1360', '5.5', '117', 'University of Calicut', 'Electronics and Communication Engg', '79', '100', '0'), (9155, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '600', '1400', '4', '110', 'Pune University', 'Computer Science', '65', '100', '0'), (9156, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2011', '800', '460', '1260', '4', '109', 'Sardar Patel College of Engineering', 'Electronics and Telecommunication', '71.33', '100', '0'), (9157, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '170', '157', '327', '3.5', '109', 'IIT Roorkee', 'Mechanical Engineering', '8.06', '10', '0'), (9158, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2012', '800', '660', '1460', '3.5', '117', 'Madras Institute of Technology', 'Aerospace engineering', '9.46', '10', '0'), (9159, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '167', '165', '332', '4', '107', 'NIT Calicut', 'Electrical and Electronics Engineering', '7.54', '10', '0'), (9160, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '163', '324', '4', '116', 'D J Sanghvi', 'Computers', '75.8', '100', '24'), (9161, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '163', '154', '317', '4', '100', 'BITS Hyderabad', 'Mechanical Engineering', '9.35', '10', '0'), (9162, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '170', '153', '323', '3.5', '107', 'Jadavpur University', 'Electrical Engineering', '8.56', '10', '0'), (9163, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '165', '156', '321', '3', '106', 'NSIT', 'Computer Engineering', '78.88', '100', '32'), (9164, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2014', '168', '158', '326', '4', '114', 'NIT Calicut', 'Computer Science and Engineering', '9.48', '10', '0'), (9165, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2010', '800', '600', '1400', '4', '105', 'VIT', 'EEE', '9.28', '10', '0'), (9166, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Spring ', '2014', '170', '142', '312', '3', '92', 'NIT Surat', 'Mechanical engineering', '7.32', '10', '0'), (9167, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Information Security', 'Fall ', '2012', '161', '151', '312', '3.5', '104', 'Pune University', 'Computer Engineering', '57.5', '100', '0'), (9168, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '170', '162', '332', '3', '107', 'IIT Mandi', 'Computer Science', '6.74', '10', '16'), (9169, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'MIS/MS CS', 'Fall ', '2013', '800', '450', '1250', '4.5', '101', 'Sri Sairam Engineering College', 'Computer Science', '73', '100', '0'), (9170, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '159', '326', '3.5', '114', 'R V College of Engineering', 'electrical and Electronics', '8.76', '10', '0'), (9171, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '760', '580', '1340', '4', '111', 'CEG', 'ECE', '8.47', '10', '0'), (9172, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '170', '152', '322', '3.5', '107', 'BITS Pilani', 'CS', '8.5', '10', '44'), (9173, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '750', '490', '1240', '4', '114', 'Amrita School of Engineering', 'Electronics and Instrumentation Engineering', '8.2', '10', '0'), (9174, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '159', '321', '3', '110', 'SRM', 'Mechatronics', '8.57', '10', '0'), (9175, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '164', '153', '317', '4', '112', 'SSN College of Engineering', 'ECE', '8.72', '10', '0'), (9176, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '750', '550', '1300', '3', '89', 'Coimbatore Insitute of Technology', 'Mechanical', '8.34', '10', '0'), (9177, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2013', '800', '640', '1440', '5', '114', 'COEP', 'Production Engineering', '7.88', '10', '0'), (9178, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '168', '153', '321', '4', '114', 'BITS Pilani', 'Computer Science and Information systems', '7.23', '10', '0'), (9179, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'KIIT', 'Electrical engineering', '7.64', '10', '0'), (9180, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '164', '151', '315', '4', '110', 'SJCE', 'Industrial and Production Engineering', '9.34', '10', '0'), (9181, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '630', '1430', '4.5', '114', 'VTU', 'ECE', '84.8', '100', '0'), (9182, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '169', '152', '321', '4', '109', 'MU', 'Information Technology', '62.47', '100', '28'), (9183, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '650', '1450', '3.5', '107', 'Sardar Patel College of Engineering', 'Computer', '76', '100', '0'), (9184, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Biomedical Engineering', 'Fall ', '2015', '167', '160', '327', '4', '115', 'BITS Goa', 'Physics + Electronics and Electrical', '8.05', '10', '3'), (9185, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Biomedical Engineering', 'Fall ', '2014', '161', '156', '317', '4', '108', 'VTU', 'Biotechnology', '84', '100', '0'), (9186, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '800', '590', '1390', '3', '109', 'Biju Patnaik University of Technology', 'Electronics and Instrumentation', '8.85', '10', '0'), (9187, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2007', '800', '720', '1520', '5', '280', 'PESIT', 'Electronics and Communication', '86', '100', '0'), (9188, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '780', '380', '1160', '3.5', '101', 'SSN College of Engineering', 'Electronics and communication engineering', '78', '100', '0'), (9189, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '164', '154', '318', '4', '111', 'SSN College of Engineering', 'B.E. Mechanical Engineering', '79', '100', '30'), (9190, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2015', '166', '163', '329', '4', '117', 'Medicaps Institute of Science & Technology Indore', 'ECE', '80.4', '100', '24'), (9191, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2007', '800', '660', '1460', '3.5', '112', 'VTU', 'ECE', '0', '0', '0'), (9192, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '800', '670', '1470', '4', '113', 'NIT Calicut', 'Mechanical Engineering', '6.67', '10', '0'), (9193, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '700', '1500', '4', '112', 'University of Pune', 'Electronics & Telecommunications', '61', '100', '0'), (9194, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '162', '156', '318', '4', '112', 'VTU', 'Instrumentation Technology', '9.57', '10', '0'), (9195, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '164', '150', '314', '3', '100', 'Dharamsinh Desai University', 'Computer Engineering', '7.87', '10', '0'), (9196, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '670', '1470', '4', '115', 'BITS Pilani', 'Computer Science', '8.13', '10', '0'), (9197, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering/Comp Science', 'Fall ', '2013', '164', '151', '315', '3', '94', 'SSN College of Engineering', 'CSE', '76.4', '100', '0'), (9198, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Embedded systems', 'Fall ', '2013', '161', '158', '319', '5', '112', 'VJTI', 'Electronics', '82', '100', '0'), (9199, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '164', '160', '324', '4.5', '113', 'SSN College of Engineering', 'ECE', '8.8', '10', '0'), (9200, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'CS', 'Fall ', '2014', '161', '149', '310', '3.5', '102', 'Manipal Institue of Technology', 'Computer Science', '8.96', '10', '0'), (9201, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '166', '157', '323', '4', '119', 'BITS Goa', 'Computer Science', '8.48', '10', '0'), (9202, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '159', '155', '314', '3.5', '111', 'GGSIPU', 'IT', '72', '100', '0'), (9203, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '530', '1280', '4.5', '110', 'VTU', 'Computer Science', '82', '100', '0'), (9204, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '159', '318', '4', '107', 'GECA', 'Information Technology', '7.3', '10', '0'), (9205, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '169', '155', '324', '4', '111', 'Delhi College Of Engineeing', 'Production and Industrial Engineering', '69', '100', '0'), (9206, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '168', '157', '325', '4', '116', 'NIT Calicut', 'ECE', '8.15', '10', '0'), (9207, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Spring ', '2014', '790', '760', '1550', '4', '116', 'University College of Engineering Osmania University', 'ECE', '3.2', '4', '0'), (9208, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Instrumentation and Control', 'Fall ', '2012', '170', '156', '326', '5', 'None', 'Jadavpur University', 'Instrumentation and Electronics Engineering', '8.948', '10', '0'), (9209, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '670', '1470', '4', '116', 'MU', 'Electronics', '66.7', '100', '0'), (9210, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '153', '314', '4.5', '113', 'JNTU', 'Computer Science and Information Technology', '77', '100', '0'), (9211, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '550', '1350', '4', '107', 'IIIT Hyderabad', 'ECE', '9.12', '10', '0'), (9212, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '800', '580', '1380', '3.5', '105', 'IIT Kharagpur', 'Aerospace', '8.66', '10', '0'), (9213, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '720', '610', '1330', '3.5', '107', 'MSRIT', 'ELEC & COMM', '8.74', '10', '0'), (9214, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '760', '640', '1400', '3.5', '109', 'Anna University', 'Mech', '7.41', '10', '0'), (9215, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Electronics', 'Fall ', '2012', '780', '560', '1340', '4', '112', 'B M S College of Engineering', 'Telecommunication', '9.1', '10', '0'), (9216, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2012', '780', '720', '1500', '4.5', '115', 'PESIT', 'Telecommunication', '7.69', '10', '0'), (9217, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '164', '155', '319', '4.5', '115', 'VJTI', 'PRODUCTION', '8.3', '10', '0'), (9218, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '760', '710', '1470', '3.5', '100', 'Pune University', 'I.T', '61.3', '100', '0'), (9219, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Aerospace Engineering', 'Spring ', '2014', '760', '600', '1360', '4', '112', 'SIT', 'Mech', '71', '100', '0'), (9220, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '164', '152', '316', '3.5', '104', 'Sir MVIT', 'E&CE;', '8.305', '10', '0'), (9221, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '750', '510', '1260', '4', '108', 'Amrita Vishwa Vidhyapeetham', 'Computer Science and Engineering', '8.36', '10', '0'), (9222, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Chemical Engineering', 'Fall ', '2011', '780', '560', '1340', '3', '89', 'Jadavpur University', 'Chemical Engineering', '74', '100', '0'), (9223, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Chemical Engineering', 'Fall ', '2014', '165', '161', '326', '3.5', '113', 'VTU', 'Chemical Engineering', '7.59', '10', '0'), (9224, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '750', '590', '1340', '4', '109', 'SVCE', 'CS', '8.2', '10', '0'), (9225, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '500', '1300', '4', '109', 'NIT Calicut', 'CSE', '9.25', '10', '0'), (9226, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '168', '156', '324', '3.5', '113', 'NITK Surathkal', 'ECE', '8.3', '10', '0'), (9227, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '164', '154', '318', '4', '111', 'Gujarat Technological University', 'ECE', '76.82', '100', '0'), (9228, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '750', '460', '1210', '3.5', '113', 'Manipal Institue of Technology', 'E&C;', '8.7', '10', '0'), (9229, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '166', '154', '320', '3.5', '111', 'University of Mumbai', 'Electrical Engineering', '70.6', '100', '0'), (9230, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '600', '1380', '3.5', '109', 'MU', 'Electronics', '73', '100', '0'), (9231, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '690', '1490', '4', '99', 'Sardar Patel College of Engineering', 'Electronics', '69', '100', '0'), (9232, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'CS/SE', 'Fall ', '2012', '800', '610', '1410', '4', '104', 'NMIMS', 'CE', '3.07', '4', '0'), (9233, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Systems and Control', 'Fall ', '2014', '165', 'None', '165', '3.5', '104', 'NIT Surat', 'Electrical Engineering', '8.18', '10', '0'), (9234, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2007', '800', '600', '1400', '4', '103', 'MU', 'Information Technology', '72', '100', '0'), (9235, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2009', '780', '680', '1460', '4', '110', 'U.P. Technical University', 'CS', '67', '100', '0'), (9236, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '168', '149', '317', '4', '107', 'University of Pune', 'Electronics and Tele-Communication', '63.445', '100', '0'), (9237, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '169', '159', '328', '3', '113', 'MSRIT', 'E & C', '9.23', '10', '0'), (9238, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '720', '1520', '4', '112', 'None', '0', '8.36', '10', '0'), (9239, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '770', '530', '1300', '3', '106', 'MU', 'CS', '72.48', '100', '0'), (9240, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '167', '152', '319', '4', '104', 'Netaji Subhas Institute of Technology', 'Computer Engineering', '76.56', '100', '0'), (9241, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '580', '1360', '4', '110', 'COEP', 'Computer and Information Tehnology', '8.39', '10', '0'), (9242, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Materials Science & Engineering', 'Fall ', '2015', '167', '160', '327', '4.5', '111', 'IIT Roorkee', 'Metallurgical and Materials Engineering', '9.112', '10', '0'), (9243, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2010', '800', '570', '1370', '3.5', '116', 'NITK Surathkal', 'ECE', '8.56', '10', '0'), (9244, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'EE / CE / CS', 'Fall ', '2015', '166', '157', '323', '4', '109', 'BITS Pilani', 'EEE', '8.64', '10', '0'), (9245, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '800', '710', '1510', '4.5', '111', 'NIT Tirchy', 'Mechanical Engg', '8.59', '10', '0'), (9246, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronic and Telecommunication Engineering', 'Fall ', '2014', '167', '148', '315', '4', '106', 'Veermata Jijabai Technological Institute', 'Electronics and Telecommuniaction', '8.1', '10', '0'), (9247, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '780', '630', '1410', '3', '112', 'University of Mumbai', 'Computer Engg', '70', '100', '0'), (9248, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '169', '153', '322', '4.5', '114', 'MDU', 'Applied Electronics and Instrumentation', '74.32', '100', '0'), (9249, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '800', '800', '1600', '4', '110', 'Thapar University', 'Mechanical Engineering', '9.35', '10', '0'), (9250, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '159', '166', '325', '4.5', '110', 'Anna University', 'EEE', '7.5', '10', '0'), (9251, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '161', '160', '321', '4', '110', 'NIT Delhi', 'EEE', '8.38', '10', '0'), (9252, 'Georgia Institute of Technology', '14', 'Reject', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '166', '156', '322', '4', '113', 'Pune University', 'Electronics & Telecomm', '62.9', '100', '22'), (9253, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '760', '640', '1400', '4', '112', 'NIT Calicut', 'ECE', '7.84', '10', '0'), (9254, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '157', '315', '3.5', '101', 'Anna University', 'Information Technology', '8.18', '100', '21'), (9255, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '156', '320', '4', '110', 'MITCOE University of Pune', 'IT', '56.57', '100', '0'), (9256, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'CS', 'Fall ', '2014', '167', '153', '320', '4.5', '113', 'Dhirubhai Ambani Institute of Information & Communication Technology', 'ICT (Information and Communication Technology)', '6.4', '10', '23'), (9257, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2013', '800', '400', '1200', '4', '105', 'CEG', '0', '9.2', '10', '0'), (9258, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '159', '157', '316', '4', '111', 'NITK Surathkal', 'Computer Engineering', '7.7', '10', '0'), (9259, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'None', 'computer science', '72', '100', '0'), (9260, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Spring ', '2015', '160', '147', '307', '3', '92', 'MU', 'Mechanical Engineering', '60', '100', '0'), (9261, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Interaction Design', 'Fall ', '2015', 'None', 'None', '0', 'None', '107', 'None', '0', '0', '0', '0'), (9262, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '550', '1330', '3', '112', 'Manipal Institue of Technology', 'Computer Science', '8.01', '10', '0'), (9263, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2014', '318', '157', '475', '4.5', '113', 'The LNM Institute of Information Technology', 'Electronics and Communication', '8.75', '10', '0'), (9264, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '166', '150', '316', '3', '104', 'K J Somaiya College of Engiineering', 'MECH', '72.14', '100', '0'), (9265, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '168', '155', '323', '4', '116', 'MU', 'Information Technology', '79.37', '100', '36'), (9266, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '620', '1410', '4', '108', 'VTU', 'Electronics', '8.84', '10', '0'), (9267, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '326', '156', '482', '4', '113', 'VTU', 'CSE', '82.64', '100', '12'), (9268, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2013', '166', '155', '321', '3', '107', 'NIT- Surat', 'Civil Engineering', '9.38', '10', '0'), (9269, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Embedded systems', 'Fall ', '2013', '800', '640', '1440', '4', '104', 'None', '0', '8.83', '10', '0'), (9270, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '167', '162', '329', '3.5', '113', 'COEP', 'Computer Engineering', '7.06', '10', '0'), (9271, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '570', '1340', '4', '108', 'MU', 'Comp Engg', '62', '100', '0'), (9272, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2012', '800', '650', '1450', '4.5', '115', 'BITS Goa', 'Chemical Engineering', '7.34', '10', '0'), (9273, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '165', '151', '316', '4', '103', 'J.N.T. University Hyderabad', 'Electronics and Communication Engineering', '81.85', '100', '0'), (9274, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '156', '317', '5', '115', 'PESIT', 'Information Science and Engineering', '8.5', '10', '0'), (9275, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Spring ', '2014', '162', '153', '315', '3.5', '97', 'VTU', 'Electronics and Communications', '83', '100', '0'), (9276, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Information Security', 'Fall ', '2014', '162', '148', '310', '3', '104', 'VESIT', 'CompEngg', '66', '100', '15'), (9277, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '170', '155', '325', '3.5', '111', 'MU', 'Information Technology', '64', '100', '17'), (9278, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '168', '168', '336', '5', '118', 'Madras Institute of Technology', 'Computer Science', '8.65', '10', '24'), (9279, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '154', '320', '3', '104', 'K J Somaiya College of Engiineering', 'Computer', '69', '100', '0'), (9280, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '740', '600', '1340', '4', '115', 'MU', 'Computer Science', '57', '100', '0'), (9281, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '580', '1350', '3.5', '96', 'Pune University', 'Computer Science', '63', '100', '0'), (9282, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '800', '640', '1440', '4', '115', 'None', '0', '8.74', '10', '0'), (9283, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', 'None', 'None', '0', 'None', '100', 'Pune University', 'Mechanical Engineering', '72.4', '100', '0'), (9284, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '780', '580', '1360', '4', '112', 'VTU', 'Information Science and Engineering', '77', '100', '0'), (9285, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '166', '153', '319', '4', '103', 'IIT Kanpur', 'M.Tech in Laser Technology', '10', '10', '0'), (9286, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '800', '680', '1480', '4', '108', 'R V College of Engineering', 'Electronics & Comm', '9.25', '10', '0'), (9287, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '165', '151', '316', '4', '109', 'Rajiv Gandhi Institute Of Technology', 'Computers', '65', '100', '0'), (9288, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '152', '314', '4', '111', 'MU', 'Computer Engineering', '67', '100', '0'), (9289, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '161', '154', '315', '4', '108', 'VIT', 'ECE', '8.78', '10', '0'), (9290, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '161', '145', '306', '3', '104', 'Anna University', 'Mechanical Engineering', '8.41', '10', '0'), (9291, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '164', '154', '318', '3.5', '109', 'MU', 'Information Technology', '69.82', '100', '30'), (9292, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '640', '1430', '3', '101', 'Nirma Institute of Technology', 'Computer engineering', '8.68', '10', '0'), (9293, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '162', '323', '3', '112', 'Rajasthan Technical University', 'Computer Science', '67.15', '100', '0'), (9294, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '149', '315', '3.5', '100', 'Nirma Institute of Technology', 'Information Technology', '7.63', '10', '30'), (9295, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '165', '158', '323', '3.5', 'None', 'MU', 'computer', '68', '100', '4'), (9296, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '161', '149', '310', '3', '104', 'Malaviya NIT Jaipur', 'Electronics and Communication', '8.63', '10', '0'), (9297, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2009', '470', '790', '1260', '3.5', '112', 'Madras Institute of Technology', 'Electronics and Communication engineering', '8', '10', '0'), (9298, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2011', '760', '540', '1300', '3', '102', 'Coimbatore Insitute of Technology', 'Computer Science & Engineering', '9.06', '10', '0'), (9299, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2015', '162', '162', '324', '3', '109', 'VTU', 'Civil Engineering', '8.12', '10', '12'), (9300, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2012', '800', '530', '1330', '3', '99', 'NMIMS', 'Electronics & Telecommunication', '2.73', '4', '0'), (9301, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '163', '157', '320', '5', '112', 'Amrita Vishwa Vidhyapeetham', 'Information Technology', '8.98', '10', '0'), (9302, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '165', '158', '323', '4.5', '115', 'SRM', 'Electrical & electronics engineering', '8.881', '10', '0'), (9303, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '162', '323', '4', '114', 'VTU', 'CSE', '9.23', '10', '0'), (9304, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '680', '1480', '3.5', '109', 'Osmania University', 'CSE', '86.2', '100', '0'), (9305, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '165', '161', '326', '3', '105', 'VTU', 'ECE', '87', '100', '0'), (9306, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '165', '151', '316', '3', '103', 'NIT Allahabad', 'Computer Science and Engineering', '8.7', '10', '36'), (9307, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '800', '710', '1510', '4', '116', 'D J Sanghvi', 'Electronics', '58.5', '100', '16'), (9308, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2013', '163', '164', '327', '4', '115', 'Anna University', 'Aeronautical Engg.', '8.73', '10', '0'), (9309, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '670', '1450', '3.5', '108', 'Jaypee Institute of Information Technology', 'ECE', '8.5', '10', '0'), (9310, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '167', '166', '333', '4.5', '118', 'None', 'Computer Science', '7.84', '10', '0'), (9311, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '168', '165', '333', '4', '117', 'PESIT', 'ECE', '9.7', '10', '0'), (9312, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '169', '157', '326', '3.5', '110', 'TU', 'Computer Science', '9.9', '10', '0'), (9313, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '152', '319', '3.5', '95', 'KIIT', 'ELECTRICAL ENGINEERING', '7.74', '10', '0'), (9314, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '510', '1310', '4.5', '104', 'Osmania University', 'CSE', '87.6', '100', '0'), (9315, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '600', '1370', '4', '104', 'MU', 'Electronics & Telecommunication', '71', '100', '0'), (9316, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2015', '159', '162', '321', '3.5', '107', 'NIT Kurukshetra', 'Civil Engineering', '8.84', '10', '24'), (9317, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '160', '150', '310', '4', '105', 'Sri Jayachamarajendra College of Engineering', 'ECE', '9.06', '10', '0'), (9318, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '170', '153', '323', '3.5', '105', 'NIT Tirchy', 'Production Engg', '7.77', '10', '34'), (9319, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science/ Mgmt', 'Fall ', '2011', '800', '640', '1440', 'None', '112', 'MU', 'IT', '62', '100', '0'), (9320, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '740', '550', '1290', '4', '107', 'University of New Orleans', 'Electrical Engineering', '3.74', '4', '0'), (9321, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '770', '580', '1350', '3', '107', 'PSG College of Technology', 'Production Engineering', '9.32', '10', '0'), (9322, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '167', '169', '336', '4.5', '117', 'BITS Pilani', 'Manufacturing Engineering', '7.97', '10', '12'), (9323, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Electronics', 'Fall ', '2015', '168', '160', '328', 'None', 'None', 'Anna University', 'Electrical and Electronics', '81', '100', '18'), (9324, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '155', '317', '4', '113', 'Anna University', 'EEE', '9', '10', '0'), (9325, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '159', '326', '3.5', '105', 'Dayananda Sagar College of Engineering', 'Information Science', '75', '100', '52'), (9326, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '650', '1450', '3.5', '116', 'D J Sanghvi', 'Comps', '67', '100', '0'), (9327, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '158', '321', '4', '105', 'GGSIPU', 'CSE', '69', '100', '0'), (9328, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '170', '154', '324', '4', '114', 'Manipal Institue of Technology', 'Electronics and Communication', '9.53', '10', '0'), (9329, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '740', '430', '1170', '3.5', '100', 'Amrita School of Engineering', 'eee', '6.3', '10', '0'), (9330, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Embedded systems', 'Fall ', '2015', '165', '153', '318', '3', '98', 'D J Sanghvi', 'Electronics', '70', '100', '0'), (9331, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '750', '550', '1300', '4', '108', 'YMCA', 'Computer Engineering', '76', '100', '0'), (9332, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Chemistry', 'Fall ', '2013', '800', '520', '1320', '3', '96', 'Institute of Chemical Technology', 'Dept. of Dyestuff Technology', '7', '10', '0'), (9333, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '640', '1440', '4', '112', 'GGSIPU', 'ECE', '66', '100', '0'), (9334, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '750', '600', '1350', '4', '106', 'Anna University', 'ECE', '84', '100', '0'), (9335, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '780', '600', '1380', '4', '102', 'VJCET (MG University)', 'CSE', '80.34', '100', '0'), (9336, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '640', '1440', '3', '103', 'IIT Jabalpur', 'CS', '7.35', '10', '0'), (9337, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '520', '1310', '4', '109', 'VESIT', 'Computer Science', '69', '100', '0'), (9338, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '162', '159', '321', '3.5', '108', 'PSG College of Technology', 'Electrical and electronics engineering', '9.4', '10', '0'), (9339, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '520', '1320', '4.5', '105', 'VTU', 'E&C;', '80.44', '100', '0'), (9340, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '620', '1410', '3.5', '105', 'BVCOE', 'IT', '75', '100', '0'), (9341, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2015', '168', '153', '321', '4', '116', 'University of Mumbai', 'Electronics and Telecommunication Engineering', '80', '100', '0'), (9342, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '800', '580', '1380', '3.5', '102', 'C.I.T.M M.D.U Rohtak', 'Mechanical Engineering', '70', '100', '0'), (9343, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '161', '320', '3', '106', 'Anna University', 'Information Technology', '74', '100', '0'), (9344, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '450', '1220', '4', '103', 'VTU', 'Computer Sciece', '73.5', '100', '0'), (9345, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronic and Telecommunication Engineering', 'Fall ', '2014', '170', '150', '320', '3.5', '103', 'IIT Bhubaneswar', 'Electrical Engineering', '9.47', '10', '0'), (9346, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '550', '1340', '3', '97', 'VTU', 'Computer Science', '80.5', '100', '0'), (9347, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '155', '151', '306', '4', '115', 'Amrita School of Engineering', 'ECE', '8.1', '10', '0'), (9348, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '570', '1370', '4.5', '116', 'MU', 'Computer Engineering', '72.95', '100', '0'), (9349, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '168', '155', '323', '4.5', '108', 'The LNM Institute of Information Technology', 'Electronics and Communication Engineering', '8.51', '10', '4'), (9350, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '790', '590', '1380', '3', '104', 'Amrita Vishwa Vidhyapeetham', 'ECE', '8.6', '10', '0'), (9351, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '162', '158', '320', '4', '101', 'COEP', 'Electrical', '7.4', '10', '36'), (9352, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '164', '152', '316', '4', '106', 'R V College of Engineering', 'TELECOMMUNICATIONS', '8.75', '10', '0'), (9353, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'software engineering', 'Fall ', '2014', '166', '154', '320', '4', '112', 'Delhi College Of Engineeing', 'Computers', '70', '100', '0'), (9354, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '168', '164', '332', '4', '110', 'TSEC', 'Electronics and Telecommunication', '64.8', '100', '0'), (9355, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Automotive Engineering', 'Fall ', '2010', '740', '730', '1470', '1470', '112', 'Thapar University', 'Mechanical Engineering', '8.13', '10', '0'), (9356, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Embedded systems', 'Fall ', '2013', '162', '158', '320', '3', '113', 'RAIT', 'Electronics', '61', '100', '0'), (9357, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '168', '163', '331', '4', '118', 'Government Rajiv Gandhi Institute of Technology', 'Mechanical Engineering', '78.4', '100', '81'), (9358, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2013', '166', '151', '317', '3.5', '107', 'Guru Gobind Singh Indraprashta University', 'Electronics and Communication', '77', '100', '0'), (9359, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '161', '157', '318', '4', '109', 'Manipal Institue of Technology', 'Electronics and Communication', '8.78', '10', '0'), (9360, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '790', '640', '1430', '3', '105', 'JNNCE / VTU', 'Computer Science', '78', '100', '0'), (9361, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '170', '160', '330', '4', '112', 'Jaypee Institute of Information Technology', 'Electronics and Communication', '8.6', '10', '0'), (9362, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Biomedical Engineering', 'Fall ', '2015', '164', '155', '319', '4', '110', 'None', 'Biomedical Engineering', '9.04', '10', '0'), (9363, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '165', '166', '331', '4', '113', 'Madras Institute of Technology', 'ECE', '9.1', '10', '0'), (9364, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '157', '323', '4', '110', 'Galgotias College of Engineering and Technology', 'Electronics and Instrumentation', '79.26', '100', '0'), (9365, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '790', '460', '1250', '4', '109', 'MU', 'Computer Science', '73.25', '100', '0'), (9366, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '760', '640', '1400', '3.5', '103', 'GITAM', 'COMPUTER SCIENCE', '9.25', '10', '0'), (9367, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and electrical engineering', 'Fall ', '2013', '162', '148', '310', '3.5', '107', 'BITS Dubai', 'Ece', '9.68', '10', '0'), (9368, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Chemical Engineering', 'Fall ', '2006', '800', '600', '1400', '4', '267', 'Andhra University', 'Chemical Engg', '83.2', '100', '0'), (9369, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2012', '790', '520', '1310', '3.5', '99', 'MU', 'Electronics and Telecommunication', '75.34', '100', '0'), (9370, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '740', '540', '1280', '4', '111', 'MU', 'Computer Engineering', '69', '100', '0'), (9371, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Materials Science & Engineering', 'Fall ', '2011', '790', '740', '1530', '4', '112', 'NIT Nagpur', 'Metallurgical and Materials Engineering', '9.39', '10', '0'), (9372, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2013', '164', '157', '321', '3.5', '111', 'CEG', 'Manufacturing', '8.96', '10', '0'), (9373, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '167', '151', '318', '3.5', '95', 'NIT Calicut', 'ECE', '7.88', '10', '24'), (9374, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computational Science', 'Fall ', '2013', '163', '155', '318', '3', '112', 'BITS Dubai', 'ECE', '9.45', '10', '0'), (9375, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Human Computer Interaction', 'Fall ', '2014', '160', '150', '310', '3.5', '108', 'NIT Tirchy', 'Instrumentation and Control Engg', '8.3', '10', '0'), (9376, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '165', '157', '322', '3.5', '108', 'MIT', 'instrumentation', '8.7', '10', '0'), (9377, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'CS', 'Fall ', '2013', '770', '590', '1360', '3.5', '111', 'VTU', 'ISE', '74.5', '100', '0'), (9378, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2016', '164', '155', '319', '3.5', '101', 'Dharamsinh Desai University', 'Instrumentation And Control', '9.05', '10', '0'), (9379, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '152', '162', '314', '3', '107', 'Amrita School of Engineering', 'Computer Science', '8.68', '10', '0'), (9380, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2010', '780', '320', '1100', '3', '97', 'Osmania University', 'EEE', '4', '100', '0'), (9381, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '570', '1360', '3.5', '113', 'NMIMS', 'Computer Science', '3.24', '4', '0'), (9382, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '168', '155', '323', '3.5', '110', 'NIT Kurukshetra', 'Computer Science', '9.16', '10', '0'), (9383, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '780', '560', '1340', '3.5', '108', 'NIT', 'ECE', '9.02', '10', '0'), (9384, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Electronics', 'Spring ', '2014', '165', '158', '323', '3.5', '100', 'Osmania University', 'electrical and electronics engineering', '72', '100', '0'), (9385, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '163', '155', '318', '4', '104', 'IIIT Jabalpur', 'ECE', '8', '100', '0'), (9386, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '770', '510', '1280', '3', '113', 'Anna University', 'ECE', '76.3', '100', '0'), (9387, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '770', '680', '1450', '3', '100', 'Vidyalankar Institute of Technology', 'Electronics and Telecommunication', '70.04', '100', '0'), (9388, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '170', '164', '334', '4', '112', 'Delhi College Of Engineeing', 'Electronics And Communication', '64.09', '100', '0'), (9389, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '800', '510', '1310', '3.5', '103', 'NIT Warangal', 'Computer science', '7.2', '10', '0'), (9390, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '600', '1380', '3', '97', 'Panjab University', 'Electronics and communication', '72.49', '100', '0'), (9391, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '780', '590', '1370', '3', '97', 'Sri Venkateswara College of Engineering', 'Computer Science', '8.2', '10', '0'), (9392, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '168', '152', '320', '4', '106', 'SASTRA', 'CSE', '9.37', '10', '12'), (9393, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '168', '157', '325', '3', '106', 'PESIT', 'Computer Science', '8.59', '10', '9'), (9394, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '167', '165', '332', 'None', '107', 'JNTU', 'EEE WES GPA : 3.9/4.0', '78', '100', '0'), (9395, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '154', '318', '4', '109', 'IIIT Allahabad', 'Information Technology', '8.54', '10', '0'), (9396, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '530', '1330', '3', '93', 'PICT', 'IT', '3.55', '4', '0'), (9397, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '790', '510', '1300', '4', '114', 'NIT Rourkela', 'Electronics and Communication Department', '9.45', '10', '0'), (9398, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Biomedical Engineering', 'Fall ', '2011', '720', '560', '1280', '5', '108', 'VJTI', 'Electrical Engineering', '7.4', '10', '0'), (9399, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2010', '780', '580', '1360', '4', '106', 'Anna University', 'Electronics and Communication', '74', '100', '0'), (9400, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2011', '790', '640', '1430', '4', '116', 'Sri Venkateswara College of Engineering', 'Computer Science and Engineering', '79', '100', '0'), (9401, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '167', '164', '331', '4.5', '117', 'R V College of Engineering', 'Electrical and Electronics', '85', '100', '55'), (9402, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '500', '1270', '3.5', '105', 'Anna University', 'C.S.E', '7.613', '10', '0'), (9403, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '165', '157', '322', '4.5', '116', 'Nanyang Technological University', 'EEE', '4.48', '5', '0'), (9404, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '167', '329', '5', '115', 'SRM', 'Computer science', '8.9', '10', '0'), (9405, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '155', '316', '3.5', '108', 'University of Calicut', 'Computer Science', '63', '100', '0'), (9406, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', '0', 'None', '152', '3', '155', '0', '101', 'BITS Pilani', 'EEE', '8', '10', '0'), (9407, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Biomedical Engineering', 'Fall ', '2013', '165', '157', '322', '3', '111', 'P.U.', 'UIET B.E.-Biotechnology', '72.3', '100', '0'), (9408, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2009', '800', '670', '1470', '4', '115', 'NIT Calicut', 'Electrical and Electronics Engg', '8.4', '10', '0'), (9409, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '660', '1430', '4', '112', 'VIT University', 'Computer science engineering', '9.1', '10', '0'), (9410, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '660', '1450', '4.5', '109', 'VIT', 'Computer Science Engineering', '9.33', '10', '0'), (9411, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '161', '322', '3.5', '110', 'Nirma Institute of Technology', 'Information Technology', '7.87', '10', '0'), (9412, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '720', '1520', '3.5', '108', 'D J Sanghvi', 'Chemical Engineering', '67', '100', '0'), (9413, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '790', '540', '1330', '3', '96', 'Bangladesh University of Engineering & Technology', 'Industrial & Production Engineering', '3.84', '4', '0'), (9414, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '161', '322', '3.5', '108', 'C.S.V.T.U.', 'Computer Science and Engg', '8.53', '10', '0'), (9415, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '170', '167', '337', '4', '116', 'BITS Pilani', 'Electronics and Communication', '9.47', '10', '0'), (9416, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '560', '1360', '4', '102', 'MU', 'Computer Engineering', '65', '100', '0'), (9417, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Information Security', 'Fall ', '2012', '154', '144', '298', '3', '98', 'Anna University', 'CSE', '75', '100', '0'), (9418, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '159', '151', '310', '3.5', '101', 'D j Sanghvi', 'computer engineering', '69', '100', '0'), (9419, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '520', '1320', '3', '105', 'PESIT', 'Information Science and Engg', '8.8', '10', '0'), (9420, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '160', '153', '313', '3.5', '109', 'None', 'Information Technology', '9.19', '10', '0'), (9421, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and electrical engineering', 'Fall ', '2013', '164', '149', '313', '3', '104', 'Madras Institute of Technology', 'ECE', '8.2', '10', '0'), (9422, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall', 'None', '169', '165', '334', '3.5', '120', 'None', 'Electronics and Comm', '8.19', '10', '0'), (9423, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '155', '321', '3.5', '107', 'BITS Hyderabad', 'Information Systems', '7.98', '10', '0'), (9424, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '170', '166', '336', '3.5', '114', 'IIT Madras', 'Electrical Engineering', '6.7', '10', '7'), (9425, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'software engineering', 'Fall ', '2012', '760', '590', '1350', '3.5', '110', 'VTU', 'Computer Science and Engineering', '80', '100', '0'), (9426, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '168', '162', '330', '5', '116', 'BIT Mesra', 'ECE', '9.11', '10', '0'), (9427, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '740', '1540', '4', '112', 'Pune University', 'Instrumentation and Control', '64', '100', '0'), (9428, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and computer science', 'Fall ', '2012', '164', '153', '317', '4', '112', 'NIT Karnataka', 'Electronics and Communication Engineering', '8.87', '10', '0'), (9429, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '450', '1250', '3.5', '97', 'NIT Tirchy', 'INSTRUMENTATION & CONTROL ENGG', '7.98', '10', '0'), (9430, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '159', '160', '319', '4', '111', 'R V College of Engineering', 'Computer Science', '74', '100', '0'), (9431, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '154', '315', '4', '104', 'VTU', 'Computer Science', '76.65', '100', '46'), (9432, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '152', '315', '3.5', 'None', 'Pune University', 'Computer Science', '70', '100', '0'), (9433, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '580', '1360', '3', '110', 'K J Somaiya College of Engiineering', 'electronics', '63.45', '100', '0'), (9434, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '560', '1360', '3.5', '110', 'VTU', 'Computer Science', '72', '100', '0'), (9435, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '580', '1380', 'None', '105', 'MSRIT', 'Computer Science', '75', '100', '0'), (9436, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '800', '570', '1370', '3.5', '110', 'IIT Guwahati', 'Computer Science', '7.1', '10', '0'), (9437, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '630', '1390', '5', '112', 'RNSIT', 'Information Science', '75', '100', '0'), (9438, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '800', '600', '1400', '4', '111', 'Jaypee Institute of Information Technology', 'Electronics and Communications', '8.7', '10', '0'), (9439, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '760', '540', '1300', '3.5', 'None', 'NIT Warangal', 'ECE', '7.83', '10', '0'), (9440, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '169', '144', '313', '4', '102', 'Chulalongkorn', 'Mechanical Engineering', '3.34', '4', '0'), (9441, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '690', '1490', '3.5', '110', 'VITS', 'ECE', '82', '100', '0'), (9442, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '780', '660', '1440', '4', '113', 'MU', 'Information Technology', '67', '100', '22'), (9443, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '170', '168', '338', '4.5', '116', 'Pune University', 'B.E (Computer Science)', '57', '100', '15'), (9444, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '168', '159', '327', '4', '108', 'The Maharaja Sayajirao University', 'Electronics', '3.7', '4', '0'), (9445, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '166', '155', '321', '2.5', '98', 'BITS Goa', 'Mechanical', '8.36', '10', '0'), (9446, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Chemical Engineering', 'Fall ', '2012', '800', '630', '1430', '3.5', '108', 'Thapar University', 'Chemical Engineering Department', '7.1', '10', '0'), (9447, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '170', '149', '319', '3.5', '101', 'YMCA', 'Mechanical Engineering', '7.734', '10', '0'), (9448, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '167', '157', '324', '4', '105', 'Shah And anchor Kutchhi Engineering College', 'IT', '72.71', '100', '0'), (9449, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '146', '308', '4', '105', 'SSN College of Engineering', 'Information Technology', '82', '100', '0'), (9450, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '730', '560', '1290', '4', '113', 'Sri Sairam Engineering College', 'Information technology', '90', '100', '0'), (9451, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '158', '325', '5', '117', 'GGSIPU', 'Computer Science', '82', '100', '41'), (9452, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics Engineering', 'Fall ', '2013', '170', '159', '329', '3', '112', 'MU', 'Electronics', '74', '100', '0'), (9453, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '400', '1200', 'None', '91', 'BITS Goa', 'Computer Science', '7.59', '10', '0'), (9454, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and computer science', 'Fall ', '2011', '780', '660', '1440', '4', '117', 'Amrita School of Engineering', 'Electronics and Communication Engineering', '78', '100', '0'), (9455, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '158', '322', '3.5', '113', 'D J Sanghvi', 'computer engineering', '73.5', '100', '0'), (9456, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '167', '157', '324', '4', '116', 'Delhi College Of Engineeing', 'Electrical Engg', '75.4', '100', '0'), (9457, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '650', '1450', '4.5', '110', 'Gujarat Technological University', 'Electrical and Electronics', '75.6', '100', '0'), (9458, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '590', '1390', '3', '102', 'GITAM', 'Electronics and Communication', '9.02', '10', '0'), (9459, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '160', '154', '314', '3', '103', 'Khon Kaen University', 'Computer Engineering', '3.86', '4', '0'), (9460, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2016', '167', '154', '321', '3.5', '112', 'Motilal Nehru National Institute of Technology', 'Electronics and Communication Engineering', '9.17', '10', '49'), (9461, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '167', '155', '322', '3', 'None', 'IIT Guwahati', 'Mathematics and Computing', '7.56', '10', '0'), (9462, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '167', '154', '321', '4', '113', 'univ of kerala', 'ec', '8.8', '10', '0'), (9463, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical And Aerospace', 'Fall ', '2014', '163', '160', '323', '4.5', '113', 'University of Pune', 'Mechanical Engineering', '72', '100', '0'), (9464, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '780', '630', '1410', '4.5', '109', 'MU', 'Electronics and Telecommunication', '68.03', '100', '0'), (9465, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '160', '158', '318', '4', '117', 'Pune University', 'Computer Engineering', '3.23', '4', '0'), (9466, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '480', '1280', '3.5', '108', 'Sikkim Manipal Institute of Technology', 'CSE', '8.38', '10', '0'), (9467, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '164', '159', '323', '4', '116', 'NIT Tirchy', 'CSE', '8.72', '10', '34'), (9468, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '170', '160', '330', '4.5', '115', 'NIT Calicut', 'Computer Science and Engineering', '8.29', '10', '15'), (9469, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Chemical Engineering', 'Fall ', '2011', '780', '540', '1320', '3', '93', 'NIT Jalandhar', 'Chemical Engineering', '7.3', '10', '0'), (9470, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '780', '580', '1360', 'None', 'None', 'CEG', 'CS', '8', '10', '0'), (9471, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2013', '162', '152', '314', '3.5', '115', 'PSG College of Technology', 'Mechanical', '8.34', '100', '0'), (9472, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '170', '148', '318', '4', '108', 'SJCE', 'Electronics and Communication', '9.63', '10', '32'), (9473, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '166', '159', '325', '3', '107', 'IIT Indore', 'Electrical Engineering', '8.64', '10', '0'), (9474, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2013', '800', '530', '1330', '3.5', '110', 'NITK Surathkal', 'Mechanical Engineering', '8.34', '10', '0'), (9475, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'CS', 'Fall ', '2013', '770', '610', '1380', '4', '105', 'Gujarat Technological University', 'Computer Engg.', '81', '100', '0'), (9476, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '650', '1440', '4.5', '114', 'KIIT', 'ECE', '9.13', '10', '0'), (9477, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '170', '145', '315', '3', '108', 'Thapar University', 'Electronics and Communication', '8.52', '10', '0'), (9478, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '490', '1250', '3', '103', 'WBUT', 'MCA', '8', '10', '0'), (9479, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '153', '315', '3', '109', 'PSG College of Technology', 'IT', '9.09', '10', '19'), (9480, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '160', '156', '316', '4', '112', 'Panjab University', 'Computer Science and Engineering', '72', '100', '28'), (9481, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '168', '157', '325', '3.5', '110', 'VNIT Nagpur', 'ECE', '9.1', '10', '0'), (9482, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '600', '1400', '3.5', '107', 'Sri Venkateswara College of Engineering', 'Mechanical Engineering', '78', '100', '0'), (9483, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '166', '165', '331', '5.5', '112', 'Manipal Institue of Technology', 'Information Technology', '7.99', '10', '0'), (9484, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '790', '590', '1380', '4', '112', 'MU', 'Electronics', '70', '100', '0'), (9485, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '167', '153', '320', '3.5', '110', 'Panjab University', 'Electronics and communication', '8.16', '10', '0'), (9486, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2013', '166', '158', '324', '4.5', '113', 'NIT Calicut', 'Mechanical Engineering', '8.03', '10', '0'), (9487, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '150', '314', '3', '98', 'KLUniversity', 'Computer science and engineering', '8.67', '10', '0'), (9488, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '149', '308', '3.5', '104', 'SSN College of Engineering', 'Computer Science', '82.81', '100', '0'), (9489, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '570', '1370', '4', '103', 'NIT', 'Electrical Engineering', '65.2', '100', '0'), (9490, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Nuclear Engineering', 'Fall ', '2011', '760', '660', '1420', '4.5', '114', 'NIT Bhopal', 'Electrical Engineering', '7.3', '10', '0'), (9491, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronic and Telecommunication Engineering', 'Fall ', '2012', '162', '152', '314', '3', '96', 'Sardar Patel University', 'Electronics and Telecommunication', '8.34', '10', '0'), (9492, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '168', '159', '327', '3.5', '104', 'University of Calicut', 'Computer Science', '70.1', '100', '30'), (9493, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '164', '157', '321', '3.5', '111', 'BIT Mesra', 'Electronics and Communication Engineering', '8.91', '10', '0'), (9494, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '170', '145', '315', '4', '110', 'PEC University of Technology', 'ECE', '9.2', '10', '0'), (9495, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '155', '317', '4.5', '114', 'Manipal Institue of Technology', 'Computer Science', '9.46', '10', '12'), (9496, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '165', '156', '321', '4.5', '112', 'MU', 'Computer Engineering', '71', '100', '30'), (9497, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2015', '160', '150', '310', '3.5', '100', 'MSRIT', 'Civil Engineering', '9.17', '10', '0'), (9498, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '600', '1400', '3.5', '102', 'NIT Tirchy', 'ELECTRONICS AND COMMUNICATION ENGINEERING', '8.53', '10', '0'), (9499, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '660', '1450', '4', '115', 'RNSIT', 'Electronics/communication', '77', '100', '0'), (9500, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '740', '610', '1350', '4', '108', 'Thiagarajar College of engineering', 'Mechanical Engineering', '8.7', '10', '0'), (9501, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '780', '520', '1300', '3.5', '108', 'PSG College of Technology', 'ECE', '9.17', '10', '0'), (9502, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '158', '319', '4', '107', 'VIT University', 'B.Tech Information Technology', '8.98', '10', '0'), (9503, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '450', '1250', '4', '102', 'CEG', 'Computer Science', '8.8', '10', '0'), (9504, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '790', '620', '1410', '3.5', '104', 'Madras Institute of Technology', 'Production engg', '8.4', '10', '0'), (9505, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '165', '152', '317', '4', '98', 'R V College of Engineering', 'ECE', '9.11', '10', '0'), (9506, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '162', '152', '314', '4', '110', 'VIT', 'Electronics and Communication Engineering', '8.89', '10', '0'), (9507, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '166', '159', '325', '3.5', '116', 'BITS Pilani', 'Electrical & Electronics Engineering', '7.58', '10', '0'), (9508, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '165', '162', '327', '3', '109', 'Sri Venkateswara College of Engineering', 'EEE', '7.11', '10', '0'), (9509, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '770', '620', '1390', '3.5', '112', 'Amrita School of Engineering', 'ECE', '7.24', '10', '0'), (9510, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2012', '780', '350', '1130', '3.5', '93', 'University of Mumbai', 'Instrumentation', '70', '100', '0'), (9511, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '580', '1380', '3', '104', 'VIT University', 'Electronics & Instrumentation', '9.01', '10', '0'), (9512, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '156', '149', '305', '3', '81', 'Walchand College Of Engineering', 'Computer sci and engg', '58.03', '100', '0'), (9513, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Electronics', 'Fall ', '2012', '780', '610', '1390', '3.5', '111', 'GTU', 'Electronics and Communication', '65', '100', '0'), (9514, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '170', '151', '321', '3.5', '109', 'BITS Pilani', 'EEE', '7.49', '10', '15'), (9515, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '580', '1380', '4', '112', 'Pune University', 'IT', '67.63', '100', '0'), (9516, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '167', '146', '313', 'None', '88', 'Madras Institute of Technology', 'information technology', '8.6', '10', '0'), (9517, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science/ Mgmt', 'Fall ', '2011', '780', '530', '1310', '3.5', '100', 'Sri manakula vinayagar engg college/Pondicherry university', 'computer science', '8.14', '10', '0'), (9518, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '550', '1350', '4.5', '108', 'Don Bosco Institute of Technology', 'Computers', '66', '100', '0'), (9519, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '165', '150', '315', '3.5', '100', 'COEP', 'I.T.', '7.65', '10', '54'), (9520, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2015', '161', '151', '312', '4', '107', 'MSRIT', 'Civil Engineering', '9.35', '10', '0'), (9521, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2014', '164', '157', '321', '4', '109', 'BITS Hyderabad', 'Mechanical Engineering', '7.25', '10', '0'), (9522, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '165', '155', '320', '4.5', '114', 'BITS Pilani', 'EEE', '8.46', '10', '9'), (9523, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '590', '1390', '4', '111', 'BITS Pilani', 'Computer Science', '8.7', '10', '0'), (9524, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '166', '165', '331', '4', '112', 'K.S. Institute of Technology', 'Computer Science and Engineering', '75.5', '100', '23'), (9525, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '790', '610', '1400', '3', '103', 'IET DAVV', 'Computer engineering', '71', '100', '0'), (9526, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '158', '153', '311', '4', '117', 'VTU', 'Information Science and Engineering', '75', '100', '0'), (9527, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '530', '1330', '3.5', '109', 'Cochin University of Science and Technology', 'Computer Science', '79', '100', '0'), (9528, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '164', '152', '316', '3.5', '106', 'NIT Calicut', 'Mechanical Engineering', '8.48', '10', '48'), (9529, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '159', '321', '3.5', '109', 'MIT', 'EEE', '8.85', '10', '0'), (9530, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '640', '1440', '4', '111', 'NITK Surathkal', 'ECE', '8.78', '10', '0'), (9531, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics & Communication', 'Fall ', '2012', '750', '630', '1380', '3.5', '110', 'SRM', 'ECE', '7.03', '10', '0'), (9532, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '760', '590', '1350', '3', '98', 'S.V Engineering College', 'Electrical & Electronics Engg', '7.2', '10', '0'), (9533, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '170', '155', '325', '3.5', 'None', 'IIT (BHU) Varanasi', 'Electrical', '7.91', '10', '0'), (9534, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '670', '1470', '4', '109', 'Thadomal Shahani Engineering College', 'Information Technology', '64', '100', '0'), (9535, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '165', '159', '324', '5', '111', 'Amrita School of Engineering', 'Computer Science', '8.93', '10', '0'), (9536, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2015', '170', '161', '331', '4', '119', 'NIT Karnataka', 'Electronics & Communication', '8.9', '10', '21'), (9537, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '150', '315', '3', '106', 'Sri Venkateswara College of Engineering', 'Information Technology', '78', '100', '0'), (9538, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '154', '152', '306', '3.5', '105', 'D J Sanghvi', 'IT', '72', '100', '36'), (9539, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '165', '157', '322', '3', 'None', 'None', '0', '8.68', '10', '0'), (9540, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '162', '157', '319', '4', '113', 'BIT Mesra', 'Mechanical', '8.5', '10', '0'), (9541, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '165', '155', '320', '4', 'None', 'VIT University', 'B.Tech Electronics and Communication', '8.99', '10', '0'), (9542, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '14', '162', '168', '330', '4', 'None', 'MU', 'Computers', '64.5', '100', '0'), (9543, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '165', '156', '321', '4', '114', 'VTU', 'ece', '76', '100', '0'), (9544, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '540', '1330', '4', '109', 'BESU Shibpur', 'Information Technology', '89', '100', '0'), (9545, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '164', '157', '321', '3.5', '104', 'IIT Guwahati', 'Mechanical', '6.23', '10', '0'), (9546, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '153', '314', '4', '113', 'MU', 'Computer Engineering', '60.28', '100', '0'), (9547, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '170', '155', '325', '3.5', '110', 'BITS Hyderabad', 'Electronics & Communication', '9.26', '10', '0'), (9548, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '155', '322', '3', '110', 'Mukesh Patel School of Technology Management and Engineering', 'Information Technology', '3.22', '4', '0'), (9549, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '730', '1500', '4', '113', 'CoE Trivandrum', 'Computer science', '71', '100', '0'), (9550, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '800', '670', '1470', '4', '114', 'University of Pune', 'Computer', '59', '100', '0'), (9551, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '168', '156', '324', '4.5', '114', 'University of Pune', 'Mechanical Engg.', '77.35', '100', '12'), (9552, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2007', '780', '370', '1150', '5', '270', 'College of Technology Pantnagar', 'Electronics and Communication Engineering', '7.922', '10', '0'), (9553, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'CS', 'Fall ', '2014', '168', '156', '324', '4', '103', 'IIT', 'ECE', '7.4', '10', '36'), (9554, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Networks', 'Spring ', '2014', '167', '150', '317', '3.5', '97', 'CEG', 'Electronics and communication engineering', '7.84', '10', '0'), (9555, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '156', '319', '3', 'None', 'Coimbatore Insitute of Technology', 'CSE', '8.1', '10', '0'), (9556, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '163', '150', '313', '3', '107', 'VIT University', 'EEE', '8.68', '10', '0'), (9557, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Operations Research', 'Fall ', '2013', '165', '162', '327', '5', '114', 'NITK Surathkal', 'EEE', '7.57', '10', '0'), (9558, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '162', '324', '3.5', '113', 'SASTRA', 'ICT', '8.32', '10', '24'), (9559, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '151', '316', '4.5', '110', 'VTU', 'Computer Science', '79', '100', '0'), (9560, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '167', '163', '330', '4', '111', 'BITS Pilani', 'BE EEE', '8.3', '100', '24'), (9561, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '169', '153', '322', '3.5', '100', 'Thiagarajar College of engineering', 'ECE', '8.78', '10', '0'), (9562, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'EE / CE / CS', 'Fall ', '2015', '170', '158', '328', '3.5', '113', 'NIT Warangal', 'Electronics and Communication Engg', '8.3', '10', '30'), (9563, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '163', '330', '5.5', '116', 'VIT University', 'ECE', '8.81', '10', '0'), (9564, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2010', '790', '610', '1400', '3', '108', 'JNTU', 'Information Technology', '79', '100', '0'), (9565, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '165', '150', '315', '3.5', '104', 'BITS Hyderabad', 'Electrical and Electronics Engineering', '7.8', '10', '0'), (9566, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '166', '154', '320', '4.5', '108', 'NIT Allahabad', 'Computer Science and Engineering', '7.67', '10', '0'), (9567, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Materials Science & Engineering', 'Fall ', '2011', '800', '630', '1430', '4', '110', 'IIT Madras', 'Metallurgical and Materials Engineering', '7.47', '10', '0'), (9568, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '164', '151', '315', '3.5', '105', 'Shah And anchor Kutchhi Engineering College', 'Computer Engineering', '76.2', '100', '0'), (9569, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Information Management', 'Fall ', '2015', '166', '159', '325', '4', '114', 'EEC', 'IT', '8.34', '10', '12'), (9570, 'Georgia Institute of Technology', '14', 'Reject', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '163', '157', '320', '3.5', '100', 'VSS Univ of Technology', 'Mechanical Engineering', '7.68', '10', '77'), (9571, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '162', '157', '319', '4', '108', 'R V College of Engineering', 'Computer Science', '78', '100', '0'), (9572, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '162', '157', '319', '4', '108', 'VTU', 'Computer Science', '79.33', '100', '0'), (9573, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '530', '1330', '4', '108', 'Anna University', 'Computer Science and Engineering', '81', '100', '0'), (9574, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '160', '327', '4', '112', 'MU', 'CS', '68.64', '100', '0'), (9575, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Information Security', 'Fall ', '2014', '152', '161', '313', '3', '105', 'PSG College of Technology', 'Computer Science & Engineering', '8.9', '10', '60'), (9576, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '750', '570', '1320', '4', '113', 'University of Pune', 'Computer Engineering', '61', '100', '0'), (9577, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Aerospace Engineering', 'Spring ', '2014', '166', '165', '331', '4', '112', 'NIT Calicut', 'Mechanical Engineering', '8.12', '10', '0'), (9578, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '149', '310', '3', '99', 'Sri Jayachamarajendra College of Engineering', 'Electronics and Communication', '9.52', '10', '0'), (9579, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Civil Engineering', 'Spring ', '2011', '780', '570', '1350', '3.5', '112', 'Bapatla Engineering College', 'Civil Engineering', '89.9', '100', '0'), (9580, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '168', '155', '323', '3.5', '105', 'NIT Warangal', 'Electronics and Communication Engineering', '8.88', '10', '36'), (9581, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '153', '314', 'None', '112', 'Coimbatore Insitute of Technology', 'Computer technology and Applications', '80', '100', '0'), (9582, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Information Security', 'Fall ', '2014', '159', '149', '308', '3', '103', 'SASTRA', 'Computer Science', '7.5', '10', '0'), (9583, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '150', '315', '4', '102', 'Madras Institute of Technology', 'Computer Science', '8.9', '10', '0'), (9584, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '740', '570', '1310', '4', '114', 'SIES Graduate School of Technology', 'Computer engineering', '70.68', '100', '0'), (9585, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2010', '790', '530', '1320', '3', '100', 'VTU', 'Information Science & Engineering', '68.09', '100', '0'), (9586, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '153', '318', '4', '104', 'CHARUSAT', 'Computer Engineering', '8.58', '10', '0'), (9587, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '157', '144', '301', '3.5', '97', 'MU', 'Computer Engineering', '75', '100', '0'), (9588, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '162', '154', '316', '3.5', '114', 'VTU', 'Electronics and Communication', '8.31', '10', '0'), (9589, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Spring ', '2014', '163', '142', '305', '3.5', '102', 'G. H. Patel College of Engineering and Technology', 'Mechatronics', '8.06', '10', '0'), (9590, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '164', '157', '321', '3.5', '110', 'None', '0', '75', '100', '24'), (9591, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2013', '165', '150', '315', 'None', 'None', 'Punjabi University', 'B.tech', '7.55', '10', '0'), (9592, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '168', '157', '325', '3', '105', 'ISM Dhanbad', 'Computer Science & Engineering', '7.83', '10', '0'), (9593, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '168', '154', '322', '4', '112', 'L D College Of Engineering', 'Electronics & Communication', '8.75', '10', '0'), (9594, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '160', '321', '4', '113', 'BITS Dubai', 'Computer Science', '9.07', '10', '0'), (9595, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '166', '151', '317', '3.5', '101', 'VRSEC', 'CSE', '86', '100', '0'), (9596, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '168', '155', '323', '3.5', '111', 'IIITDM Jabalpur', 'ECE', '8.8', '10', '0'), (9597, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '520', '1310', '3', '102', 'Pune University', 'Computer Science and engineering', '69.2', '100', '0'), (9598, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '169', '158', '327', '4.5', 'None', 'R V College of Engineering', 'ECE', '85.2', '100', '0'), (9599, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '740', '530', '1270', '3', '108', 'PICT', 'Information Technology', '72.36', '100', '0'), (9600, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '780', '590', '1370', '4', '103', 'Thadomal Shahani Engineering College', 'EXTC', '0', '0', '0'), (9601, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '600', '1400', '3', '104', 'VTU', 'Computer Science', '82', '100', '0'), (9602, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2013', '168', '157', '325', '4', 'None', 'NIT Tirchy', 'Production Engineering', '8.96', '10', '0'), (9603, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '168', '156', '324', '3', '98', 'SNIST', 'E.C.E', '81', '100', '0'), (9604, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '153', '318', '4', '105', 'Siddaganga Institue of Technology', 'information science and engg', '9.34', '10', '0'), (9605, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '162', '159', '321', '4', '115', 'VTU', 'Comp Science', '79', '100', '0'), (9606, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '550', '1350', '4.5', '109', 'MSRIT', 'CSE', '9.07', '10', '0'), (9607, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '152', '314', '3.5', '114', 'Vidyalankar Institute of Technology', 'computer science', '67', '100', '36'), (9608, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '580', '1370', '3', '107', 'PSG College of Technology', 'B.E (CSE)', '8.8', '10', '0'), (9609, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '660', '1440', '3', '114', 'MU', 'electronics and telecomm', '71', '100', '0'), (9610, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2011', '800', '610', '1410', '3.5', '109', 'Anna University', 'Information Technology', '77', '100', '0'), (9611, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '800', '550', '1350', '3', '108', 'NITK Surathkal', 'ECE', '8.2', '10', '0'), (9612, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '170', '163', '333', '4.5', '112', 'Netaji Subhas Institute of Technology', 'Information Technology', '72', '100', '36'), (9613, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '168', '153', '321', '3.5', '106', 'Manipal Institue of Technology', 'ECE', '8.62', '10', '0'), (9614, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '510', '1310', '3', '100', 'Jaypee Institute of Information Technology', 'ECE', '7', '10', '0'), (9615, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '157', '165', '322', '3.5', 'None', 'VTU', 'Information Science', '76', '100', '0'), (9616, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '169', '153', '322', '3.5', '108', 'NSIT', 'Maufacturing and Automation', '73', '100', '0'), (9617, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '167', '162', '329', '4', '100', 'Delhi University', 'Electronics and Communication', '73', '100', '0'), (9618, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '158', '324', '3', '111', 'BITS Goa', 'Computer Science', '7.14', '10', '12'), (9619, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '790', '570', '1360', '3.5', '107', 'ANU', 'Computer Science', '85', '100', '0'), (9620, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2006', '790', '680', '1470', '5', '293', 'Model Engineering College', 'Electronics And Communication', '82', '100', '0'), (9621, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '159', '151', '310', '4', '107', 'Bangalore Institute of Technology', 'ISE', '71.76', '100', '28'), (9622, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2015', '161', '153', '314', '4', '111', 'Sri Venkateswara College of Engineering', 'EEE', '8.8', '10', '0'), (9623, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '167', '155', '322', '4', 'None', 'SASTRA', 'Computer science and engineering', '8.48', '10', '0'), (9624, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '790', '590', '1380', '4', '113', 'GGSIPU', 'Electronics and Communication', '76', '100', '0'), (9625, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '153', '316', '3.5', '110', 'VTU', 'Computer Science', '8.86', '10', '0'), (9626, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '420', '1200', '3', '91', 'K J Somaiya College of Engiineering', 'Computer Science', '0', '0', '0'), (9627, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '520', '1320', '3.5', '104', 'Pune University', 'Computer', '66', '100', '0'), (9628, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '167', '158', '325', '4.5', '108', 'VIT Pune', 'Mechanical', '8.69', '10', '0'), (9629, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '800', '360', '1160', '3', '103', 'MU', 'Electronics and Communicatiion', '71.28', '100', '0'), (9630, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '790', '530', '1320', '4', '112', 'Heritage Institute of Technology Kolkata', 'Computer Science and Engineering', '9.19', '10', '0'), (9631, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '630', '1430', '4', '104', 'Anna University', 'ECE', '9.02', '10', '0'), (9632, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '790', '580', '1370', '4.5', '114', 'VIT University', 'School Of Electrical Engineers', '8.85', '10', '0'), (9633, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '780', '650', '1430', '3', '110', 'MU', 'IT', '74', '100', '0'), (9634, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '790', '670', '1460', '5', '112', 'MU', 'Computer', '61', '100', '0'), (9635, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '169', '167', '336', '4', '119', 'Sardar Patel University', 'Computer Engineering', '8.14', '10', '32'), (9636, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '147', '309', '3', '110', 'SJCE', 'CSE', '8.86', '10', '0'), (9637, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'environmental engineering', 'Fall ', '2012', '790', '600', '1390', '4', '109', 'MU', 'Chemical Engineering', '70', '100', '0'), (9638, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '168', '156', '324', '5', '115', 'VTU', 'Information Science & Engineering', '8.66', '10', '0'), (9639, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '710', '1510', '4', '115', 'None', 'Electronics & Communication', '70', '100', '0'), (9640, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '159', '155', '314', '4', '110', 'None', 'E&Tc;', '64', '100', '0'), (9641, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Spring ', '2013', '790', '600', '1390', '3', 'None', 'Shri Guru Gobind Singhji Institute of Engineering And Technology', 'Electronics and Telecommunication', '7.7', '10', '0'), (9642, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '160', '322', '3.5', '113', 'Pune University', 'Computer Engineering', '3.36', '4', '31'), (9643, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '166', '155', '321', '4', '117', 'MU', 'CS', '68', '100', '0'), (9644, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '400', '1190', '3.5', '100', 'Anna University', 'CS', '76', '100', '0'), (9645, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '540', '1340', '3.5', '108', 'Manipal Institue of Technology', 'Mechanical', '8.73', '10', '0'), (9646, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '166', '327', '4', '114', 'SSN College of Engineering', 'Computer Science Engineering', '8.06', '10', '0'), (9647, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '167', '157', '324', '4', '102', 'SASTRA', 'CSE', '6.9', '10', '0'), (9648, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '164', '153', '317', 'None', '101', 'BITS Goa', 'Electrical & Electronics', '6.6', '10', '0'), (9649, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '770', '690', '1460', '3', '105', "Vivekanand Educational Society's Institute Of Technology Mumbai", 'Electronics and Telecommunication', '65', '100', '0'), (9650, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '410', '1190', 'None', '90', 'R V College of Engineering', 'Information Science & Engg', '78', '100', '0'), (9651, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '750', '660', '1410', '3.5', '107', 'Anna University', 'EEE', '81', '100', '0'), (9652, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Chemical Engineering', 'Fall ', '2012', '760', '480', '1240', '3.5', '104', 'Padmashree Dr D Y Patil University', 'Biotechnology', '68', '100', '0'), (9653, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '164', '149', '313', '3', '104', 'Nirma Institute of Technology', 'Electronics and Communication Engineering', '8.1', '10', '0'), (9654, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '166', '155', '321', '3', 'None', 'VIT', 'Electrical and Electronics Engineering', '7.97', '10', '0'), (9655, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '530', '1310', '3.5', '109', 'MU', 'Electronics', '70.5', '100', '0'), (9656, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '530', '1320', '3', '100', 'University of Mumbai', 'EXTC', '70', '100', '0'), (9657, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '169', '150', '319', '3.5', '110', 'NITK Surathkal', 'Information Technology', '8.92', '10', '0'), (9658, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '690', '1490', '4.5', '118', 'PESIT', 'ISE', '8.55', '10', '0'), (9659, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2013', '168', '157', '325', '4', '116', 'IIT Roorkee', 'Mechanical & Industrial', '8', '10', '0'), (9660, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and electrical engineering', 'Fall ', '2013', '162', '160', '322', '4', '113', 'BMSCE', 'ECE', '78', '100', '0'), (9661, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '167', '146', '313', '3.5', '95', 'B V Bhoomaraddi College of Engg & Tech (Affiliated to VTU)', 'Electronics and Communication', '76', '100', '0'), (9662, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '540', '1340', '4', '106', 'Pune University', 'computer', '67', '100', '0'), (9663, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '580', '1380', '4', '110', 'BVBCET', 'Computer science', '75.55', '100', '0'), (9664, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '168', '159', '327', '4', '111', 'IIT BHU', 'Electrical Engineering', '8.23', '10', '0'), (9665, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '151', '313', '4.5', '108', 'Shivaji University', 'Computer Science', '67', '100', '0'), (9666, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '770', '540', '1310', '3.5', '114', 'Thadomal Shahani Engineering College', 'Computer Engineering', '68', '100', '0'), (9667, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '159', '149', '308', '3.5', '101', 'Mepco Schlenk Engineering College', 'Electronics and Communication', '9', '10', '0'), (9668, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '620', '1420', '4', '108', 'NIT Bhopal', 'Computer Science and Engineering', '7.95', '10', '0'), (9669, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '160', '321', '3', '109', 'MU', 'Electronics and Telecommunication', '67.21', '100', '18'), (9670, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '520', '1320', '4', '90', 'Reputed private institute [deemed university] equivalent in standard to a upper-middle-ranked NIT', 'Computer Science', '6', '10', '0'), (9671, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Information Security', 'Fall ', '2011', '780', '540', '1320', '4', '117', 'BITS Pilani', 'Computer Science', '8.4', '10', '0'), (9672, 'Georgia Institute of Technology', '14', 'Reject', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '167', '153', '320', '4.5', '113', 'Dhirubhai Ambani Institute of Information & Communication Technology', 'Information and Communication Technology', '6.4', '10', '24'), (9673, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '520', '1320', '4', '113', 'University of Mumbai', 'Computer', '68', '100', '0'), (9674, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '780', '440', '1220', '3', '104', 'VIT', 'Informatin Technology', '9.72', '10', '0'), (9675, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '165', '151', '316', '3.5', '113', 'nitk', 'ee', '7.59', '10', '24'), (9676, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'CS / SE / IT / MIS', 'Fall ', '2013', '164', '166', '330', '4', '119', 'WBUT', 'CSE', '7.83', '10', '0'), (9677, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'None', 'Fall ', '2013', '164', '153', '317', '4', '114', 'CEG', 'Manufacturing Engineering', '8.81', '10', '0'), (9678, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '650', '1400', '3.5', '110', 'SASTRA', 'CSE', '9.1', '10', '0'), (9679, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '560', '1310', '4', '112', 'Faculty of Technology Dharmsinh Desai University', 'Computer Engineering', '68', '100', '0'), (9680, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '680', '1480', '3', '106', 'SSN College of Engineering', 'ECE', '83.7', '100', '0'), (9681, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '670', '1470', '3.5', '111', 'NIT Tirchy', 'E.C.E', '9.67', '10', '0'), (9682, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '170', '148', '318', '3.5', '101', 'Nirma Institute of Technology', 'Electronics and communication', '8.28', '10', '0'), (9683, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '168', '153', '321', '3.5', '108', 'NIT Rourkela', 'Electrical', '8.74', '10', '0'), (9684, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '740', '560', '1300', '3', '103', 'The National Institute of Engineering', 'Information Science(same as Computer science differing in terms of electives towards the last 3 semesters of engineering)', '76.55', '100', '0'), (9685, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '158', '152', '310', '3', '113', 'Goa University', 'Electronics and Telecommunications', '70', '100', '40'), (9686, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '167', '157', '324', '4.5', '110', 'NIT Calicut', 'Mechanical Engineering', '7.11', '10', '0'), (9687, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '700', '1480', '4', '116', 'Amrita School of Engineering', 'Computer Science', '8.74', '10', '0'), (9688, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2015', '170', '157', '327', '3.5', '112', 'IIT Madras', 'Electrical Engineering', '8.4', '10', '14'), (9689, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '540', '1310', '4', '102', 'Rajiv Gandhi Technical University', 'Computer Science', '73', '100', '0'), (9690, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2013', '163', '149', '312', '3.5', '98', 'Manipal Institue of Technology', 'Industrial and production', '9.01', '10', '0'), (9691, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '154', '315', '4.5', '106', 'MU', 'Information Technology', '67.23', '100', '24'), (9692, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '170', '156', '326', '3.5', '109', 'BITS Pilani', 'Computer Science', '7.6', '10', '0'), (9693, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '165', '150', '315', '3.5', '107', 'PEC University of Technology', 'Electronics', '9.6', '10', '0'), (9694, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '165', '163', '328', '4', '115', 'Pune University', 'Computer Engineering', '75.53', '100', '0'), (9695, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '720', '1520', '3.5', '106', 'DU', 'EE', '71', '100', '0'), (9696, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '158', '321', '3', '115', 'VIT', 'Computer Science', '8.8', '10', '0'), (9697, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '166', '167', '333', '4.5', '113', 'Punjab Engineering College', 'Mechanical Engineering', '7.74', '10', '0'), (9698, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '570', '1330', '4', '107', 'RMK Engineering College', 'Computer science', '70', '100', '0'), (9699, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '164', '150', '314', '4', 'None', 'CEG', 'Computer Science', '8.99', '10', '0'), (9700, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '154', '317', '3', '101', 'MU', 'Computer Engineering', '76', '100', '0'), (9701, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '680', '1450', '4.5', '116', 'MU', 'Computers', '64', '100', '0'), (9702, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and computer science', 'Fall ', '2011', '800', '580', '1380', '4', '111', 'COEP', 'Electronics and Telecommunication', '8.52', '10', '0'), (9703, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '800', '700', '1500', '4', '116', 'COEP', 'Computer Engineering', '9.16', '10', '0'), (9704, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2010', '800', '730', '1530', '4.5', '118', 'Jaypee Institute of Information Technology', 'Information Technology', '8', '10', '0'), (9705, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics & Communication', 'Fall ', '2013', '162', '151', '313', '4', '99', 'VIT', 'Electronics & Communication', '8.76', '10', '0'), (9706, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2011', '800', '610', '1410', '3', '112', 'IIT Kanpur', 'Civil Engineering', '8.4', '10', '0'), (9707, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '160', '324', '3', '108', 'WBUT', 'CSE', '8.19', '10', '42'), (9708, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '560', '1360', '4', '116', 'Anna University', 'IT', '8.97', '10', '0'), (9709, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '159', '322', '4.5', '111', 'BITS Hyderabad', 'Electronics and Communication', '7.63', '10', '30'), (9710, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2013', '158', '157', '315', '4.5', '110', 'Moscow Aviation Institute(National Research University) Moscow Russia', 'Aerospace', '4.3', '5', '0'), (9711, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '156', '149', '305', '4', '108', 'MSRIT', 'Computer Science', '9.67', '10', '0'), (9712, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '610', '1410', '3.5', '113', 'MANIT Bhopal', 'Computer Science and Engineering', '8.89', '10', '0'), (9713, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '152', '315', '3.5', '104', 'BIT Mesra', 'COMPUTER SCIENCE', '8.7', '10', '0'), (9714, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '156', '320', '3', '107', 'BITS Pilani', 'Computer Science', '8.19', '10', '24'), (9715, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '159', '323', '4', '113', 'VTU', 'CS', '80', '100', '0'), (9716, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '168', '157', '325', '4.5', '115', 'R V College of Engineering', 'Electronics and Communication', '9.06', '10', '0'), (9717, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '158', '319', '4', '119', 'MU', 'Information Technology', '60', '100', '0'), (9718, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'CS/ EE', 'Fall ', '2015', '158', '169', '327', '4', '113', 'IIT Roorkee', 'Electrical', '7.66', '10', '32'), (9719, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '158', '323', '4', '113', 'VIT', 'Computer Science', '8.92', '10', '0'), (9720, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '157', '157', '314', '4', '113', 'PICT', 'I.T.', '60', '100', '0'), (9721, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '500', '1260', '4', '98', 'Xavier Institute of Engineering University of Mumbai', 'Computer Engineering', '60.084', '100', '0'), (9722, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '170', '152', '322', '4', '110', 'VIT University', 'Energy Division', '8.62', '10', '0'), (9723, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '790', '570', '1360', '4', '103', 'MU', 'Computer', '66', '100', '0'), (9724, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '155', '322', '4', '108', 'BITS Pilani', 'Computer Science', '6.8', '10', '0'), (9725, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '163', '151', '314', '4.5', '108', 'Sri Jayachamarajendra College of Engineering', 'EEE', '9.4', '10', '17'), (9726, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '167', '157', '324', '3.5', '102', 'None', 'Mechanical', '80', '100', '29'), (9727, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '150', '164', '314', '3', '102', 'Shah And anchor Kutchhi Engineering College', 'Computers', '59.27', '100', '0'), (9728, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '159', '148', '307', '3', '101', 'University of Pune', 'Mechanical', '68', '100', '0'), (9729, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '165', '158', '323', '3.5', '112', 'Dharamsinh Desai University', 'computer engineering', '8.3', '10', '12'), (9730, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '670', '1430', '3.5', '107', 'JNTU', 'ECE', '78', '100', '0'), (9731, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (9732, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '490', '1260', '3.5', '107', 'NIT Karnataka', 'IT', '8.98', '10', '0'), (9733, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '790', '560', '1350', '4.5', '110', 'Sinhgad College of Engineering', 'Mechanical Engineering', '66', '100', '0'), (9734, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '170', '156', '326', '3', '107', 'IIT Bombay', 'Electical Engineering', '7.81', '10', '0'), (9735, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '156', '156', '312', '4', '97', 'Pune University', 'Information Technology', '53.01', '100', '19'), (9736, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Biomedical Engineering', 'Fall ', '2011', '790', '520', '1310', '3', '99', 'BITS Pilani', 'Electronics & Instrumentation', '8', '10', '0'), (9737, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '166', '160', '326', '4.5', '110', 'NIT Karnataka', 'Electronics and Communication Engineering', '7.75', '10', '0'), (9738, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and computer science', 'Fall ', '2010', '780', '530', '1310', '3.5', '109', 'Jaypee Institute of Information Technology', 'ECE', '8.2', '10', '0'), (9739, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2014', '165', '159', '324', '4', '109', 'BITS Goa', 'Mechanical', '7.28', '10', '55'), (9740, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '149', '314', '3.5', '103', 'NIT Rourkela', 'Computer Science and Engineering', '8.54', '10', '0'), (9741, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Data Informatics', 'Fall ', '2015', '158', '151', '309', '4', '109', 'Manipal Institue of Technology', 'Computer Science and Engineering', '8.28', '10', '0'), (9742, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '156', '322', '4', '112', 'LNMIIT', 'CSE', '7.49', '10', '0'), (9743, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Data Science', 'Fall ', '2015', '167', '154', '321', '4', '117', 'VTU', 'ISE', '69', '100', '0'), (9744, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '162', '150', '312', '4', '102', 'Sardar Patel College of Engineering', 'Electronics', '80.58', '100', '0'), (9745, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '790', '570', '1360', '3.5', '116', 'JNTU', 'Electronics and Communication', '81', '100', '0'), (9746, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '158', '319', '3.5', 'None', 'University of Kerala', 'Computer Science and Engineering', '8.1', '10', '0'), (9747, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '168', '168', '336', '4', '111', 'Sardar Patel College of Engineering', 'Electronics', '75.87', '100', '0'), (9748, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '164', '162', '326', '4', '114', 'MU', 'IT', '76', '100', '24'), (9749, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '168', '162', '330', '4', '113', 'Netaji Subhas Institute of Technology', 'Manufacturing Processes & Automation', '72', '100', '46'), (9750, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '166', '153', '319', '4.5', '108', 'MU', 'Computer Engineering', '67', '100', '0'), (9751, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '166', '156', '322', '3.5', '109', 'Veermata Jijabai Technological Institute', 'Computer Technology', '8.3', '10', '22'), (9752, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2011', '760', '600', '1360', '4', '113', 'Anna University', 'ECE', '9.1', '10', '0'), (9753, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '157', '150', '307', '3.5', '101', 'Siddaganga Institue of Technology', 'Electrical and Electronics Engineering', '9.2', '10', '0'), (9754, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '160', '154', '314', '3.5', '109', 'SASTRA', 'ECE', '7.704', '10', '0'), (9755, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '165', '155', '320', '3.5', '113', 'None', '0', '3.2', '4', '44'), (9756, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '170', '157', '327', '4.5', '111', 'SASTRA', 'CS', '8.14', '10', '24'), (9757, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '159', '321', '4', 'None', 'JNTU', 'Computer Science', '73.6', '100', '0'), (9758, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2013', '161', '159', '320', '4', '117', 'Datta Meghe College of Engineering', 'Mechanical Engineering', '70.5', '100', '0'), (9759, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '800', '460', '1260', '3.5', 'None', 'MU', 'Computer Engineering', '72.12', '100', '0'), (9760, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2013', '770', '540', '1310', '4', '109', 'VTU', 'Civil Engineering', '7.46', '10', '0'), (9761, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '720', '450', '1170', '3.5', '107', 'VTU', 'Computer Science', '71', '100', '0'), (9762, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '710', '1510', '3.5', '112', 'MU', 'Computer Engg', '61.5', '100', '0'), (9763, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '800', '640', '1440', '4.5', '114', 'COEP', 'Computer Engineering', '9.31', '10', '0'), (9764, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and computer science', 'Fall ', '2011', '800', '410', '1210', '4', '104', 'NITK Surathkal', 'Electrical and Electronics', '8.01', '10', '0'), (9765, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2012', '780', '570', '1350', '3.5', '95', 'Jaypee Institute of Information Technology', 'ECE', '8.5', '10', '0'), (9766, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '780', '610', '1390', '3.5', '108', 'Pune University', 'Computer engg', '8.54', '10', '0'), (9767, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical & Computer Engg/MIS/Industrial/Systems Engg', 'Fall ', '2012', '166', '158', '324', '3', '111', 'Amrita Vishwa Vidhyapeetham', 'Electronics & Intrumentation', '8.04', '10', '0'), (9768, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '160', '325', '4.5', '108', 'VTU', 'CSE', '8.46', '10', '0'), (9769, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2012', '740', '570', '1310', '3', '101', 'Siddaganga Institue of Technology', 'Information Science and Engineering', '74.8', '100', '0'), (9770, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '790', '540', '1330', '4', '107', 'S.P.I.T. Mumbai University', 'Computer Engineering', '78.98', '100', '0'), (9771, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mech and Elec', 'Fall ', '2012', '800', '570', '1370', '4', 'None', 'None', '0', '8.07', '10', '0'), (9772, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '154', '320', '3.5', '107', 'D. A. V. V.', 'Information Technology', '65.03', '100', '0'), (9773, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '157', '154', '311', '4.5', '115', 'Anna University', 'CSE', '80', '100', '0'), (9774, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '166', '150', '316', '3', '100', 'MU', 'Electronics and Telecommunication', '68', '100', '0'), (9775, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '158', '322', '4', '113', 'NIT Bhopal', 'Information Technology', '8.58', '10', '0'), (9776, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '168', '149', '317', '4', '109', 'MU', 'Computers', '75.9', '100', '0'), (9777, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Electronics', 'Fall ', '2012', '159', '155', '314', '3.5', '102', 'Sardar Patel University', 'Electronics & Communication', '3.45', '4', '0'), (9778, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics & Communication', 'Spring ', '2014', '170', '144', '314', '3.5', '94', 'GCET V.V.Nagar', 'Electronics & Communication', '7.6', '10', '0'), (9779, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and computer science', 'Fall ', '2010', '760', '520', '1280', '4', '107', 'Anna University', 'EEE', '87.3', '100', '0'), (9780, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '161', '148', '309', '3', '107', 'PESIT', 'Electronics and Communication', '8.94', '10', '31'), (9781, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2010', '770', '650', '1420', '4', '110', 'Birla Vishvakarma Mahavidyalaya', 'CS', '9.19', '10', '0'), (9782, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '800', '570', '1370', '4', '117', 'Osmania University', 'I.T.', '82.3', '100', '0'), (9783, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Biological Sciences Biotechnology ', 'Fall ', '2013', '161', '164', '325', '3.5', '111', 'Sathyabama University', 'Biotechnology', '81', '100', '0'), (9784, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '169', '153', '322', '4', '118', 'NITK Surathkal', 'ECE', '8.84', '10', '0'), (9785, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '168', '162', '330', '4', 'None', 'GGSIPU', 'ECE', '68', '100', '42'), (9786, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '800', '610', '1410', '3.5', '113', 'University of Alberta', 'Computing Science', '3.8', '4', '0'), (9787, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '157', '319', '5', '115', 'NIT', 'Computer Engineering', '7.5', '10', '0'), (9788, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '166', '161', '327', '4', '116', 'JNTU', 'Mechanical Engineering', '69.34', '100', '24'), (9789, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2015', '167', '157', '324', '4', '108', 'Anna University', 'ECE', '9', '10', '0'), (9790, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '168', '155', '323', '4.5', '105', 'BITS Pilani', 'Electrical & Electronics', '7.81', '10', '0'), (9791, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '540', '1320', '3.5', '96', 'Gautam Buddh Technical University', 'Information Technology', '73.52', '100', '0'), (9792, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '600', '1400', '3', '104', 'Thapar University', 'ECE', '8.77', '10', '0'), (9793, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Materials Science & Engineering', 'Fall ', '2013', '163', '156', '319', '4', '109', 'VIT University', 'Mechanical', '8.98', '10', '0'), (9794, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'CS', 'Fall ', '2013', '157', '159', '316', '3.5', '108', 'MU', 'I.T.', '72', '100', '0'), (9795, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '154', '316', '3.5', '116', 'None', 'IT', '9.47', '10', '0'), (9796, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '500', '1290', '3.5', '91', 'MU', 'Electronics and Telecommunication', '3.97', '4', '0'), (9797, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '165', '156', '321', '3', '114', 'BMSCE', 'Telecom', '9.5', '10', '18'), (9798, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '154', '316', '4', '105', 'SSN College of Engineering', 'Information technology', '8.73', '10', '0'), (9799, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '730', '550', '1280', '4', '104', 'MU', 'Computer Science', '67', '100', '0'), (9800, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'EE / CS', 'Fall ', '2011', '780', '660', '1440', '3', '98', 'CEG', 'ECE', '9.13', '10', '0'), (9801, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '159', '323', '4', '114', 'Thapar University', 'Electronics(Instrument &Contol;)', '7.95', '10', '0'), (9802, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and computer science', 'Fall ', '2011', '780', '480', '1260', '3.5', '105', 'JNTU', 'EIE', '82.75', '100', '0'), (9803, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '162', '152', '314', '3', '90', 'B V Bhoomaraddi College of Engg & Tech (Affiliated to VTU)', 'Electronics and Communication', '9.1', '10', '0'), (9804, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '510', '1270', '3', '103', 'AISSMS College of Engineering Pune', 'Electronics', '64.91', '100', '0'), (9805, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '166', '148', '314', '4', '104', 'SJCE', 'CS', '8.73', '10', '0'), (9806, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '163', '152', '315', '4', '112', 'FCRIT', 'EXTC', '66.47', '100', '0'), (9807, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Robotics', 'Fall ', '2013', '160', '154', '314', '3.5', '103', 'SASTRA', 'Mechatronics', '8.79', '10', '0'), (9808, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '168', '160', '328', '3.5', '106', 'Institute of Technology Nirma University', 'Instrumentation & Control', '7.81', '10', '0'), (9809, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '660', '1460', '3.5', '99', 'IIITM', 'IT', '8.58', '10', '0'), (9810, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '630', '1430', '3.5', '106', 'Bangalore Institute of Technology', 'Information Science', '70', '100', '0'), (9811, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '600', '1400', '3.5', '110', 'Guru Gobind Singh Indraprashta University', 'Computer Science', '79', '100', '0'), (9812, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2010', '800', '630', '1430', '4', '109', 'NIT Durgapur', 'ECE', '7.93', '10', '0'), (9813, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '550', '1330', '3.5', '105', 'CEG', 'I.T', '8.45', '10', '0'), (9814, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'statistics', 'Fall ', '2014', '169', '153', '322', '3', '107', 'Bangalore Institute of Technology', 'ECE', '73', '100', '0'), (9815, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '166', '164', '330', '4.5', '117', 'IIT BHU', 'Electronics', '7.92', '10', '0'), (9816, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '159', '321', '3', '104', 'U.P.Technical University', 'Information Technology', '68', '100', '0'), (9817, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '720', '610', '1330', '4', '104', 'SASTRA', 'Mechanical Engineering', '9.04', '10', '0'), (9818, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '164', '151', '315', '3', '102', 'MU', 'Electrical', '79.8', '100', '0'), (9819, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '630', '1400', '4', '103', 'PSG College of Technology', 'IT', '8.71', '10', '0'), (9820, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '780', '550', '1330', '3', '104', 'I.E.T D.A.V.V.', 'Computer Engineering', '69.8', '100', '0'), (9821, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '166', '152', '318', '4', '110', 'MU', 'Electronics and telecommunication', '67', '100', '0'), (9822, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '165', '153', '318', '4', '119', 'CEG', 'Electronics and Communication Engineering', '9.26', '10', '0'), (9823, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '166', '148', '314', '3.5', '101', 'R V College of Engineering', 'Information science and engineering', '82.25', '100', '0'), (9824, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '680', '1480', '4', '105', 'Manipal Institue of Technology', 'Electronics and Communication', '9.06', '10', '0'), (9825, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '170', '145', '315', '3', '106', 'BMSCE', 'Electronics and Communication Engineering', '9.83', '10', '9'), (9826, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '168', '155', '323', '5', '115', 'MU', 'Computer Engineering', '76.5', '100', '0'), (9827, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '167', '164', '331', '4.5', '112', 'Jadavpur University', 'Mechanical Engineering', '8.56', '10', '24'), (9828, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '530', '1310', '3', '102', 'CEG', 'IT', '8.95', '10', '0'), (9829, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '166', '152', '318', '4', '112', 'MU', 'Electronics and Telecommunication', '62.96', '100', '0'), (9830, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '168', '153', '321', '3.5', '104', 'University of Pune', 'E&TC;', '69', '100', '0'), (9831, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '170', '149', '319', '3.5', '114', 'NIT Warangal', 'Computer Science and Engineering', '8.5', '10', '0'), (9832, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '165', '163', '328', '5', '118', 'VTU', 'Electrical and Electronics Engineering', '73.7', '100', '0'), (9833, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '630', '1420', '3.5', '101', 'GGSIPU', 'Electronics', '72', '100', '0'), (9834, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '170', '164', '334', '4', 'None', 'University of Mumbai', 'Electronics and Telecommunication', '68', '100', '12'), (9835, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2015', '167', '159', '326', '3.5', '103', 'Anna University', 'AERONAUTICAL', '7.9', '10', '1'), (9836, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '800', '540', '1340', '3', '105', 'K J Somaiya College of Engiineering', 'Information Technology', '73', '100', '0'), (9837, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and computer engineering electrical engineering telecommunications engineering', 'Fall ', '2014', '167', '145', '312', '3', '99', 'Keshav memorial Institute of Technology Hyderabad', 'ECE', '79', '100', '0'), (9838, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '170', '154', '324', '4', '114', 'MDU', 'EECE', '83.4', '100', '24'), (9839, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '520', '1280', '3.5', '91', 'GHRCE Nagpur', 'Electronics and Telecommunication', '73', '100', '0'), (9840, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '590', '1390', '3.5', '105', 'Nagpur University', 'Mechanical', '71', '100', '0'), (9841, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '800', '550', '1350', '2.5', '108', 'JNTU', 'CSE', '81', '100', '0'), (9842, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '800', '520', '1320', '3.5', '97', 'IET DAVV', 'Information Technology', '80', '100', '0'), (9843, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2008', '780', '470', '1250', '4.5', '111', 'Nagpur University', 'Electronics Engineering', '69.5', '100', '0'), (9844, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '158', '320', '3.5', '112', 'MU', 'Computer', '65', '100', '0'), (9845, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '790', '600', '1390', '3', '101', 'SASTRA', 'Computer Science', '7.98', '10', '0'), (9846, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '169', '161', '330', '3', '108', 'VNIT Nagpur', 'ECE', '9.36', '100', '24'), (9847, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '161', '326', '4', '118', 'University of Mumbai', 'Information Technology', '69.63', '100', '0'), (9848, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '740', '560', '1300', '4.5', '113', 'Pune University', 'Computer Engineering', '70.15', '100', '0'), (9849, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '165', '148', '313', '3', '109', 'None', 'Electronics', '8.7', '10', '24'), (9850, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '500', '1290', '3', '96', 'R V College of Engineering', 'Computer Science', '72', '100', '0'), (9851, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '164', '149', '313', '4', '102', 'UPTU', 'Electronics and Communication Engineering', '72.48', '100', '0'), (9852, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '470', '1270', '3.5', '100', 'MU', 'I.T.', '61', '100', '0'), (9853, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '550', '1350', '3.5', '113', 'Delhi College Of Engineeing', 'IT', '76', '100', '0'), (9854, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Chemical Engineering', 'Fall ', '2015', '167', '155', '322', '4', '108', 'Visvesvaraya NIT Nagpur', 'Chemical Engineering', '8.33', '10', '2'), (9855, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '780', '610', '1390', '3', '96', 'PICT', 'Electronics & Telecommunications', '66', '100', '0'), (9856, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '800', '670', '1470', '3', '111', 'MU', 'Electronics and Telecommunication Engineering', '80', '100', '0'), (9857, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '590', '1390', '3', '100', 'Rajiv Gandhi Institute Of Technology', 'Computer Engineering', '62.88', '100', '0'), (9858, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '750', '520', '1270', '3.5', '116', 'Pune University', 'Computer Science', '59.9', '100', '0'), (9859, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '800', '610', '1410', '4', '111', 'BITS Pilani', 'Computer Science', '8.3', '10', '0'), (9860, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Instrumentation and Control', 'Fall ', '2011', '800', '610', '1410', '3.5', '103', 'BITS Pilani', 'Electronics and Instrumentation', '9.4', '10', '0'), (9861, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '167', '151', '318', '3', '99', 'K J Somaiya College of Engiineering', 'Computers', '65', '100', '0'), (9862, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '165', '158', '323', '4', '110', 'MU', 'Electronics', '64.96', '100', '0'), (9863, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '750', '590', '1340', '3.5', 'None', 'Kerala University', 'Electronics and communication', '78', '100', '0'), (9864, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '163', '156', '319', '3.5', 'None', 'Datta Meghe College of Engineering', 'Mechanical', '68', '100', '0'), (9865, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '520', '1320', '3.5', '109', 'SSN College of Engineering', 'Electronics and Communication', '80.02', '100', '0'), (9866, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '168', '159', '327', '3', '105', 'CEG', 'ECE', '9.32', '10', '24'), (9867, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '160', '154', '314', '3', '107', 'Gujarat Technological University', 'Computer Engineering', '81.61', '100', '0'), (9868, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '610', '1400', '3', '105', 'VIT', 'Computer Science', '8.95', '10', '0'), (9869, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '163', '151', '314', '3.5', '111', 'R V College of Engineering', 'Electronics & Communication', '9.26', '10', '0'), (9870, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Operations Research', 'Fall ', '2014', '163', '152', '315', '3', '103', 'PSG College of Technology', 'Production Engineering (SW)', '8.04', '10', '0'), (9871, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '161', '152', '313', '4', '107', 'Sri Sairam Engineering College', 'Electronics and Instrumentation', '7.95', '10', '0'), (9872, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '153', '315', '4.5', '114', 'NSIT', 'Computer Engineering', '82.97', '100', '0'), (9873, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '630', '1430', '3.5', '106', 'MU', 'Computer Engineering', '73', '100', '0'), (9874, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2013', '750', '570', '1320', '3.5', '93', 'MU', 'Electronics and Telecommunication', '70.08', '100', '0'), (9875, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '165', '145', '310', '3', '98', 'Anna University', 'Information Technology', '7.8', '10', '0'), (9876, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2012', '800', '690', '1490', '4', '116', 'MU', 'Mechanical Engineering', '64.42', '100', '0'), (9877, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '800', '620', '1420', '3.5', '101', 'BITS Pilani', 'E.E.E', '8.3', '10', '0'), (9878, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '163', '150', '313', '3', '102', 'Sri Jayachamarajendra College of Engineering', 'Electronics and communications', '9.17', '10', '0'), (9879, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2014', '167', '155', '322', 'None', 'None', 'NIT Warangal', 'Civil', '8.14', '10', '0'), (9880, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '770', '680', '1450', '4', '115', 'RAIT', 'Electronics', '68.42', '100', '0'), (9881, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '169', '156', '325', '3.5', '114', 'Thapar University', 'ECE', '8.56', '10', '0'), (9882, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '157', '323', '4', '113', 'R V College of Engineering', 'Information Science', '82', '100', '43'), (9883, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '430', '1180', 'None', '106', 'MU', 'Electronics and TeleCommuincation', '72', '100', '0'), (9884, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '600', '1350', '4', '109', 'D J Sanghvi', 'IT', '68.9', '100', '0'), (9885, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '590', '1360', 'None', '105', 'Model Engineering College', 'Computer Science', '73', '100', '0'), (9886, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '620', '1420', '3', '107', 'Nirma Institute of Technology', 'Computer Engineering', '8.2', '10', '0'), (9887, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '162', '162', '324', '3.5', '111', 'Anna University', 'Mechanical Engineering', '78', '100', '44'), (9888, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Operations Research', 'Fall ', '2014', '169', '152', '321', '4.5', '100', 'BITS Pilani', 'BE (Civil)', '6.31', '10', '0'), (9889, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '169', '153', '322', '3', '98', 'NIT Warangal', 'ece', '8.05', '10', '0'), (9890, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Information Security', 'Fall ', '2011', '800', '430', '1230', '3.5', '94', 'Amrita School of Engineering', 'INFORMATION TECHNOLOGY', '7.22', '10', '0'), (9891, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '430', '1230', '4', '113', 'BITS Goa', 'Electrical and Electronics', '8.3', '10', '0'), (9892, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '500', '1300', '5', '116', 'BITS Pilani', 'EEE', '8.44', '10', '0'), (9893, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '770', '560', '1330', '3.5', '108', 'NIT Bhopal', 'Electrical Engineering', '8.61', '10', '0'), (9894, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '163', '161', '324', '4.5', '107', 'MU', 'Electrical Engineering', '73.4', '100', '0'), (9895, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '750', '610', '1360', '4', '112', 'MSRIT', 'Computer Science and Engineering', '9.31', '10', '0'), (9896, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '700', '1500', '3.5', '111', 'NIT Kurukshetra', 'Mechanical Engineering', '9.255', '10', '0'), (9897, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '800', '520', '1320', '3', '95', 'University of Mumbai', 'Electronics and Telecommunication', '68.87', '100', '0'), (9898, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2010', '770', '550', '1320', '3', '110', 'Anna University', 'IT', '74', '100', '0'), (9899, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '159', '321', '4.5', '113', 'NIT Durgapur', 'Information Technology', '7.81', '10', '0'), (9900, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '170', '148', '318', '3', '100', 'NIT Warangal', 'CSE', '7.96', '10', '24'), (9901, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2015', '167', '149', '316', '4', '106', 'IIT Madras', 'Civil Engineering', '7.3', '10', '24'), (9902, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2015', '167', '156', '323', '3.5', '116', 'RMD Engineering College Anna University', 'ECE', '8.7', '10', '6'), (9903, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '165', '164', '329', '4.5', '118', 'IIT X', 'CSE', '8.44', '10', '0'), (9904, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '168', '153', '321', '4', '110', 'NIT Silchar', 'CSE', '8.35', '10', '0'), (9905, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Spring ', '2013', '166', '152', '318', '4', '103', 'NIT Rourkela', 'B.tech in Biomedical Engineering', '9.1', '10', '0'), (9906, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2015', '800', '550', '1350', '3.5', '109', 'Sardar Patel College of Engineering', 'Electronics And Telecommunication Engg.', '72', '100', '29'), (9907, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '164', '149', '313', '3', '104', 'Manipal Institue of Technology', 'ECE', '8.51', '10', '0'), (9908, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '800', '670', '1470', '4', '114', 'University of Mumbai', 'Electronics Engineering', '74.76', '100', '0'), (9909, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '152', '315', '4.5', '109', 'Amity School of Engineering and Technology', 'Computer Science', '8', '10', '58'), (9910, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '650', '1450', '4.5', '116', 'Pune University', 'Computer Engineering', '3.4', '4', '0'), (9911, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2011', '780', '550', '1330', '3.5', '106', 'NIT Karnataka', 'Computer Engineering', '8.05', '10', '0'), (9912, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '730', '540', '1270', '4', '110', 'None', '0', '0', '0', '0'), (9913, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '164', '162', '326', '4', '109', 'PESIT', 'ECE', '8.45', '10', '24'), (9914, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2014', '161', '150', '311', '4', '110', 'Sri Venkateswara College of Engineering', 'EEE', '83', '100', '36'), (9915, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Instrumentation and Control', 'Fall ', '2013', '163', '150', '313', '3', '91', 'UPTU', '0', '64', '100', '0'), (9916, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '620', '1410', 'None', '105', 'JNTU', 'IT', '70', '100', '0'), (9917, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '153', '318', '3.5', '112', 'VJTI', 'Computer', '8.6', '10', '0'), (9918, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering/Comp Science', 'Fall ', '2014', '160', '153', '313', '3', '112', 'MU', 'COMPUTER', '67', '100', '0'), (9919, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '700', '1500', '4', '112', 'Jaypee Institute of Information Technology', 'CS', '8', '10', '0'), (9920, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Business Analytics', 'Fall ', '2015', '166', '159', '325', '3.5', '111', 'International Institute of Information Technology Hyderabad', 'Computer Science Dual Degree', '8.02', '10', '36'), (9921, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '149', '313', '3', '103', 'Amrita School of Engineering', 'CSE', '7.2', '10', '0'), (9922, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '169', '155', '324', '3', '104', 'Guru Gobind Singh Indraprashta University', 'Computer Science & Engineering', '71.7', '100', '19'), (9923, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '153', '315', '4', '108', 'R V College of Engineering', 'Computer Science', '74.93', '100', '0'), (9924, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '170', '146', '316', '4.5', '111', 'IIT Guwahati', 'ECE', '8.59', '10', '0'), (9925, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '600', '1390', '4', '113', 'MU', 'Computer Engineering', '60', '100', '0'), (9926, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2007', '800', '670', '1470', '4.5', '290', 'VJTI', 'Electronics', '71.1', '100', '0'), (9927, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '640', '1440', 'None', '107', 'COEP', 'Computer Engineering', '8.45', '10', '0'), (9928, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '650', '1450', '4.5', '113', 'SSN College of Engineering', 'Mechanical', '8.1', '10', '0'), (9929, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '167', '165', '332', '5.5', '114', 'Amrita School of Engineering', 'Computer Science', '9.41', '10', '0'), (9930, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2013', '170', '159', '329', '4', '114', 'None', 'mechanical', '9.71', '10', '0'), (9931, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '169', '148', '317', '4', '104', 'R V College of Engineering', 'Computer Science', '81', '100', '0'), (9932, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '510', '1300', '4.5', '117', 'Model Engineering College', 'Electronics and Communication', '77.71', '100', '0'), (9933, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '155', '317', '4', '110', 'Anna University', 'CS', '7.25', '10', '0'), (9934, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science/ Electronics and Communication', 'Fall ', '2013', '800', '590', '1390', '3.5', '110', 'Anna University', 'Computer Science and Engineering', '73', '100', '0'), (9935, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '660', '1460', '4.5', '117', 'VJTI', 'Computer Science', '8.7', '10', '0'), (9936, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '165', '151', '316', '3.5', '101', 'IIT Roorkee', 'Electrical Engineering (Dual Degree)', '8.174', '10', '0'), (9937, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2015', '160', '144', '304', '4', '101', 'MDU', 'Aeronautical Engineering', '73', '100', '0'), (9938, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '540', '1340', '3.5', '100', 'D J Sanghvi', 'Computer', '67', '100', '0'), (9939, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '750', '470', '1220', '3', '108', 'NIT Hamirpur', 'CSE', '8.36', '10', '0'), (9940, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '154', '146', '300', 'None', 'None', 'Portland State University', 'ECE', '3.33', '4', '0'), (9941, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '165', '168', '333', '3.5', '107', 'VTU', 'Electronics and Communication', '74.7', '100', '0'), (9942, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '640', '1430', '3.5', '117', 'Vishwakarma Institute of Technology', 'Computer Science', '9.65', '10', '0'), (9943, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Robotics', 'Fall ', '2014', '166', '152', '318', '3.5', '105', 'Bangalore Institute of Technology', 'Electrical and Electronics', '79', '100', '0'), (9944, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '570', '1370', '4', '105', 'PSG College of Technology', 'Theoretical Computer Science (Department of Mathematics and Computer Applications)', '9.05', '10', '0'), (9945, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '166', '160', '326', '3.5', '111', 'VJTI', 'electronics', '8.4', '10', '0'), (9946, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2013', '167', '158', '325', '4', '118', 'Goa University', 'Mechanical Engineering', '69', '100', '0'), (9947, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '740', '670', '1410', '3', '110', 'MU', 'IT', '58.9', '100', '0'), (9948, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '630', '1420', '3', '98', 'VESIT', 'Information Technology', '73', '100', '0'), (9949, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Civil Engineering', 'Fall', 'None', '163', '147', '310', '3.5', '105', 'NIT Tirchy', 'Civil engineering', '8.6', '10', '0'), (9950, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'CS', 'Fall ', '2013', '800', '650', '1450', '4', '111', 'K J Somaiya College of Engiineering', 'IT', '67', '100', '0'), (9951, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '159', '325', '3', '108', 'KIIT', 'Electrical Engineering', '8.28', '10', '44'), (9952, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '580', '1350', '3.5', '96', 'Pune University', 'Computer Science', '63', '100', '0'), (9953, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '161', '156', '317', '3.5', '108', 'University of Pune', 'Mechanical engineering', '67.3', '100', '0'), (9954, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '155', '317', '4', '111', 'R V College of Engineering', 'Information Science And Engineering', '9.62', '10', '0'), (9955, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '160', '141', '301', '3', '95', 'Coimbatore Insitute of Technology', 'Computer Science', '8.5', '10', '0'), (9956, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2015', '159', '160', '319', '3.5', '109', 'VTU', 'Civil Engineering', '80.5', '100', '0'), (9957, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '164', '152', '316', '4', '110', 'Anna University', 'Information Technology', '8.252', '10', '0'), (9958, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '167', '153', '320', '3.5', '109', 'SSN College of Engineering', 'ECE', '8.3', '10', '0'), (9959, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '163', '153', '316', '4', '117', 'BITS Pilani', 'Electronics', '7.59', '10', '16'), (9960, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engg/Robotics', 'Fall ', '2014', '164', '152', '316', '3', '100', 'Amrita School of Engineering', 'MECHANICAL ENGG', '8.4', '10', '0'), (9961, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '165', '162', '327', '4.5', '119', 'University of Mumbai', 'Computer Engg', '65', '100', '0'), (9962, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '168', '163', '331', '5', '118', 'University of Pune', 'Mechanical Engineering', '73', '100', '0'), (9963, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '166', '154', '320', '3', '106', 'M.V.S.R Engineering College', 'Information Technology', '90.8', '100', '0'), (9964, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '650', '1430', '3', '110', 'RGPV', 'Electronics and Telecommunication Engineering', '74.08', '100', '0'), (9965, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '166', '148', '314', '3', '110', 'BIT Mesra', 'Computer Science and Engineering', '7.68', '10', '0'), (9966, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall', 'None', 'None', 'None', '0', 'None', 'None', 'University of Petroleum and Energy studies', 'EEE', '3.46', '4', '0'), (9967, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '800', '570', '1370', '3', '107', 'JNTU', 'ece', '80.6', '100', '0'), (9968, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '167', '152', '319', '4', '107', 'Sardar Patel College of Engineering', 'Electronics Engineering', '73.5', '100', '0'), (9969, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '163', '152', '315', '4', '98', 'Coimbatore Insitute of Technology', 'ECE', '8.78', '10', '26'), (9970, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2012', '159', '158', '317', '4', '116', 'MU', 'Production Engineering', '74', '100', '0'), (9971, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '780', '610', '1390', '4', '106', 'MU', 'Information Technology', '55', '100', '0'), (9972, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and computer science', 'Fall ', '2011', '780', '700', '1480', '4.5', '108', 'VIT', 'Electronics and Communication Engineering', '8.74', '10', '0'), (9973, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '800', '670', '1470', '3.5', '102', 'None', '0', '72.5', '100', '0'), (9974, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Materials Science & Engineering', 'Fall ', '2014', '165', '161', '326', '4', '115', 'Visvesvaraya NIT Nagpur', 'Metallurgical and Materials Engineering', '8.34', '10', '0'), (9975, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '550', '1310', '3.5', '105', 'Amity University', 'CS', '7.9', '10', '0'), (9976, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2010', '790', '750', '1540', '4', '111', 'K J Somaiya College of Engiineering', 'Electronics', '66', '100', '0'), (9977, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '167', '150', '317', '3', '99', 'International Institute of Information Technology Hyderabad', 'Computer Science', '8.7', '10', '0'), (9978, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '153', '146', '299', '3', '84', 'PTU', 'ECE', '71.1', '10', '0'), (9979, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '161', '150', '311', '3.5', '102', 'Manipal Institue of Technology', 'EEE', '8.6', '10', '0'), (9980, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '690', '1490', '4.5', '118', 'BITS Pilani', 'Electronics and Instrumentation', '0', '0', '0'), (9981, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '146', '310', '3', '107', 'Sir MVIT', 'computer science', '78', '100', '0'), (9982, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2008', '790', '590', '1380', '3', '107', 'University of Pune', 'Computer Science', '70', '100', '0'), (9983, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '670', '1470', '5', '117', 'JNTU', 'Electronics and Communication Engineering', '85.9', '100', '0'), (9984, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'CS', 'Fall ', '2014', '161', '155', '316', '3', '115', 'Goa University', 'Computer Engineering', '70', '100', '0'), (9985, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '157', '319', '4', '116', 'Bangalore Institute of Technology', 'Computer Science', '82', '100', '21'), (9986, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '167', '161', '328', '4', '116', 'None', 'Mechanical', '9.17', '10', '0'), (9987, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '570', '1350', '3', '114', 'MSRIT', 'Computer Science', '9.12', '10', '0'), (9988, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '164', '153', '317', '3', '100', 'Sathyabama University', 'Mech & Prod', '82', '100', '24'), (9989, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '740', '550', '1290', '3', '95', 'MU', 'Electronics', '62', '100', '0'), (9990, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '600', '1400', '3', '109', 'University of Mumbai', 'computer', '75', '100', '0'), (9991, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronic and Telecommunication Engineering', 'Fall ', '2012', '790', '620', '1410', '3.5', '108', 'MU', 'Electronics and Telecommunication', '69', '100', '0'), (9992, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2014', '164', '157', '321', '4', '114', 'NITK Surathkal', 'Mechanical', '8.86', '10', '24'), (9993, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '780', '670', '1450', '5', '116', 'MU', 'Computer Science', '66.22', '100', '0'), (9994, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '164', '164', '328', '4', '112', 'Manipal Institue of Technology', 'Computer Sceince', '8.1', '10', '26'), (9995, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '740', '660', '1400', '3.5', '111', 'NED University Karachi', 'Electronic Engineering', '83', '100', '0'), (9996, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '149', '314', '3', '112', 'UPTU', 'CSE', '73.78', '100', '0'), (9997, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2013', '161', '149', '310', '3.5', '105', 'Gujarat Technological University', 'Electronics and Communication', '8.83', '10', '0'), (9998, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '156', '322', '3.5', '112', 'NIT Raipur', 'Information Technology', '8.34', '10', '0'), (9999, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '164', '146', '310', '3', '110', 'BITS Goa', 'Mechanical', '6.7', '10', '0'), (10000, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '152', '315', '3.5', '109', 'CEG', 'Computer Science and Engineering', '8.58', '10', '0'), (10001, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '162', '148', '310', '3.5', '99', 'IIT Hyderabad', 'Mechanical Engineering', '8', '10', '0'), (10002, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '159', '318', '4', '115', 'JNTU', 'Computer Science and Enigneering', '77.43', '100', '0'), (10003, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '160', '161', '321', '3', '112', 'University of Pune', 'Electronics and Telecommunications', '59.07', '100', '42'), (10004, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '760', '550', '1310', '3', '108', 'Jaypee Institute of Information Technology', 'CSE', '7.5', '10', '0'), (10005, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '166', '157', '323', '4', '104', 'NIT Warangal', 'Computer Science & Engineering', '8.76', '10', '54'), (10006, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '750', '570', '1320', '4.5', '110', 'VTU', 'COMPUTER SCIENCE', '82.75', '100', '0'), (10007, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '600', '1350', '3.5', '107', 'Fr. Conceicao Rodrigues College of Engineering', 'Computers', '62.72', '100', '0'), (10008, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '166', '154', '320', '4.5', '109', 'Sardar Patel College of Engineering', 'Computer Engineering', '73.58', '100', '0'), (10009, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Civil Engineering', 'Spring ', '2015', '161', '151', '312', '3.5', '102', 'Sardar Patel College of Engineering', 'Civil', '72', '100', '24'), (10010, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '500', '1280', '2.5', '96', 'University of Mumbai', 'Information Technology', '60.49', '100', '0'), (10011, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '162', '324', '4', '117', 'Siliguri Institute of Technology', 'Computer Science', '8.81', '10', '0'), (10012, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '155', '316', '3.5', '111', 'MU', 'IT', '65.6', '100', '37'), (10013, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '167', '152', '319', '3', '106', 'MU', 'Mech', '76', '100', '0'), (10014, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '159', '158', '317', '3.5', '113', 'Sri Venkateswara College of Engineering', 'CSE', '7.99', '10', '0'), (10015, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '152', '316', '3.5', '107', 'MU', 'COMPUTER SCIENCE', '69.3', '100', '0'), (10016, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '166', '156', '322', '3.5', '107', 'PSG College of Technology', 'Electrical Engineering', '9.51', '10', '0'), (10017, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2012', '157', '156', '313', '4', '106', 'Manipal Institue of Technology', 'IT', '8.1', '10', '0'), (10018, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '450', '1200', '3', '96', 'VTU', 'CS', '75', '100', '0'), (10019, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '530', '1290', '3.5', '114', 'Amrita Vishwa Vidhyapeetham', 'Computer Science & Engineering', '7.2', '10', '0'), (10020, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '157', '321', '4', 'None', 'Pune University', 'Computer Engineering', '71', '100', '0'), (10021, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '620', '1420', '3', '112', 'The LNM Institute of Information Technology', 'Communication and computer engg', '9.19', '10', '0'), (10022, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '640', '1400', '3.5', '110', 'SASTRA', 'ECE', '8.54', '10', '0'), (10023, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '650', '1450', '4', '115', 'VNIT Nagpur', 'ECE', '9.12', '10', '0'), (10024, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '164', '153', '317', '3.5', '108', 'VIT', 'Electronics and instrumentation', '8.58', '10', '0'), (10025, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '168', '159', '327', '3.5', '112', 'Bangladesh University of Engineering & Technology', 'Electrical and Electronic Engineering', '3.94', '4', '0'), (10026, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Electronics', 'Fall ', '2012', '730', '600', '1330', '4', '113', 'BMSCE', 'telecommunication engineering', '9.4', '10', '0'), (10027, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '630', '1390', '4.5', '114', 'NMIMS', 'Computer Science', '3.24', '4', '0'), (10028, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Electronics', 'Fall ', '2012', '800', '530', '1330', '3', '105', 'MU', 'Electronics and Telecommunication', '71.37', '100', '0'), (10029, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '400', '1180', '3.5', '103', 'MU', 'Electronics and telecommunication', '73', '100', '0'), (10030, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '167', '154', '321', '4', '111', 'IIT Madras', 'Mechanical Engineering', '8.66', '10', '0'), (10031, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '640', '1440', '4', '112', 'COEP', 'Electronics and Telecommunication', '9.32', '10', '0'), (10032, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Biomedical Engineering', 'Fall ', '2011', '740', '530', '1270', '3.5', '111', 'VIT University', 'Biomedical', '9.04', '10', '0'), (10033, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '168', '154', '322', '3.5', '111', 'IIT (BHU) Varanasi', 'Mechanical', '8.25', '10', '12'), (10034, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '168', '155', '323', '3.5', '110', 'IIT Allahabad', 'Computer Science', '8.9', '10', '0'), (10035, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '720', '570', '1290', '3.5', '116', 'MU', 'Computer Science', '78.04', '100', '0'), (10036, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '149', '312', '3.5', '111', 'JNTU', 'CSE', '78.3', '100', '12'), (10037, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '720', '500', '1220', '3.5', '105', 'VTU', 'Information Science', '82', '100', '0'), (10038, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '161', '322', '3.5', '108', 'C.S.V.T.U.', 'Computer Science and Engg', '8.56', '10', '0'), (10039, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '170', '154', '324', '3', '97', 'ISM Dhanbad', 'Electrical Enfineering', '7.67', '10', '0'), (10040, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '790', '620', '1410', '4', '110', 'BIT Mesra', 'mechanical', '74', '100', '0'), (10041, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '163', '152', '315', '3', '101', 'UPTU', 'Electrical & Electronics Engineering', '77.72', '100', '0'), (10042, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '620', '1420', '4.5', '112', 'BITS Pilani', 'ComputerScience', '5.71', '10', '0'), (10043, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '780', '640', '1420', '3.5', '108', 'Manipal Institue of Technology', 'Computer Science & Engineering', '3', '4', '0'), (10044, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '168', '154', '322', '3', '105', 'MDU', 'ECE(Hons)', '71', '100', '45'), (10045, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '800', '640', '1440', '3.5', '114', 'NIT Durgapur', 'ECE', '8.05', '10', '0'), (10046, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '159', '321', '4', '109', 'PESIT', 'Information Science', '8.7', '10', '24'), (10047, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2013', '167', '157', '324', '4', 'None', 'BITS Pilani', 'Electronics and Instrumentation', '8.14', '10', '0'), (10048, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '155', '321', '3.5', '111', 'DA-IICT', 'ICT', '8', '10', '0'), (10049, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '165', '155', '320', 'None', 'None', 'CoE Trivandrum', 'Electrical & Electronics Engineering', '8.12', '10', '0'), (10050, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '170', '154', '324', '4.5', '110', 'VIT University', 'Electronics And Communication', '9.21', '10', '0'), (10051, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '163', '148', '311', '3.5', '115', 'R V College of Engineering', 'Mechanical Engineering', '9.06', '10', '0'), (10052, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '168', '162', '330', '4', '114', 'Thapar University', 'Mechanical Engineering', '8.31', '10', '0'), (10053, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '166', '153', '319', '3.5', '106', 'K J Somaiya College of Engiineering', 'Computers', '67', '100', '0'), (10054, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '550', '1320', '4', '103', 'COEP', 'Computer Engineering & IT', '8.4', '10', '0'), (10055, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2010', '800', '660', '1460', '4', '114', 'PICT', 'Information Technology', '3.51', '4', '0'), (10056, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '164', '157', '321', '4.5', '113', 'Dr. Babasaheb Ambedkar Technological University Lonere', 'Chemical Engineering', '8.49', '10', '0'), (10057, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '800', '580', '1380', '3.5', '109', 'CEG', 'Computer Science & Engineering', '9.32', '10', '24'), (10058, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '159', '158', '317', 'None', 'None', 'Madras Institute of Technology', 'Computer Science', '7.762', '10', '0'), (10059, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '750', '560', '1310', '5', '114', 'Kolhapur Institute of Technology', 'Computer Science and Engg', '65', '100', '0'), (10060, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Sustainable enrgy and environment', 'Fall ', '2014', '168', '156', '324', '3', '116', 'IIT Roorkee', 'Mechanical Engineering', '8.5', '10', '0'), (10061, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '166', '153', '319', '3.5', '107', 'VIT', 'Computer Science', '8.9', '10', '0'), (10062, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '730', '480', '1210', '4', '114', 'MU', 'Electronics and Telecommunication', '64.87', '100', '0'), (10063, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '730', '560', '1290', '3', '113', 'SSN College of Engineering', 'CSE', '85.26', '100', '0'), (10064, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '164', '163', '327', 'None', '117', 'NIT Calicut', 'Computer Science', '7.85', '10', '16'), (10065, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '170', '158', '328', '4', '105', 'BITS Hyderabad', 'Mechanical Engineering', '9.66', '10', '6'), (10066, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '163', '328', '3', '115', 'GGSIPU', 'CSE', '70.65', '100', '0'), (10067, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '161', '159', '320', '4', '114', 'MU', 'Information Technology', '60', '100', '0'), (10068, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '168', '161', '329', '3.5', '107', 'BITS Pilani', 'Computer science', '7.5', '10', '0'), (10069, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall', 'None', '164', '146', '310', '3', '97', 'VIT', 'ECE', '9.1', '10', '50'), (10070, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '168', '156', '324', '4.5', '102', 'MIT College of Engineering', 'Information Technology', '63.12', '100', '0'), (10071, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '165', '152', '317', '3', '108', 'NMIMS', 'Electronics And Telecommunications', '3', '4', '0'), (10072, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '170', '147', '317', '4', '99', 'Anna University', 'Electronics & Instrumentation Engineering', '8.98', '10', '0'), (10073, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '165', '150', '315', '3.5', '104', 'MU', 'Electronics and Telecommunication', '76', '100', '0'), (10074, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '155', '322', '4', '112', 'PICT', 'IT', '3.8', '4', '0'), (10075, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '550', '1330', '3.5', '114', 'NITAllahabad', 'Electrical', '8.54', '10', '0'), (10076, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '163', '330', '3.5', '113', 'NIT Srinagar', 'ECE', '8.57', '10', '0'), (10077, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2014', '164', '153', '317', '3.5', '106', 'GGSIPU', 'Computer Science', '76', '100', '0'), (10078, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2011', '780', '690', '1470', '3', '98', 'CEG', 'electrical and electronics', '6.25', '10', '0'), (10079, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2010', '790', '600', '1390', '4', '112', 'NIT Silchar', 'Computer Science', '7.92', '10', '0'), (10080, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Biomedical Engineering', 'Fall ', '2011', '800', '580', '1380', '4.5', '115', 'NITT', 'Instrumentation and Control Engg', '8.55', '10', '0'), (10081, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '650', '1440', 'None', 'None', 'MSRIT', 'ECE', '9.39', '10', '0'), (10082, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '770', '530', '1300', '3', '92', 'PSG College of Technology', 'ECE', '9.26', '10', '0'), (10083, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '168', '152', '320', '4', '109', 'Anna University', 'Information Technology', '78', '100', '0'), (10084, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '163', '145', '308', '4', '100', 'VIT Pune', 'Industrial Engineering', '8.97', '10', '0'), (10085, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '780', '680', '1460', '4', '110', 'Anna University', 'Mechanical', '85', '100', '0'), (10086, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'EE / CE / CS', 'Fall ', '2015', '167', '160', '327', '3.5', '113', 'BITS Goa', 'Electronics and Instrumentation', '8.54', '10', '15'), (10087, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '168', '157', '325', '4.5', '119', 'MU', 'Electronics', '66.95', '100', '0'), (10088, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '162', '161', '323', '3.5', '114', 'None', 'Mechanical Engineering', '7.8', '10', '0'), (10089, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '800', '620', '1420', '4.5', 'None', 'Netaji Subhas Institute of Technology', 'Manufacturing Processes and Automation Engineering', '77.9', '100', '0'), (10090, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '790', '600', '1390', '3.5', '100', 'Sardar Patel College of Engineering', 'Electronics and Telecommunication', '70', '100', '0'), (10091, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '159', '320', '3.5', '111', 'VIT University', 'ECE', '8.58', '10', '0'), (10092, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '149', '311', '4', '106', 'Osmania University', 'Information Technology', '84', '100', '18'), (10093, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2013', '164', '148', '312', '3', '103', 'D J Sanghvi', 'Chemical Engineering', '70', '100', '0'), (10094, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '170', '161', '331', '4.5', '115', 'West Bengal University Of Technology', 'ECE', '8.66', '10', '12'), (10095, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '167', '146', '313', '3.5', '105', 'VIT', 'BTech CSE', '9.22', '10', '0'), (10096, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2015', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (10097, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'CS', 'Fall ', '2015', '167', '156', '323', '3.5', '105', 'Government College of Engineering Amravati', 'Computer Science', '8.73', '10', '0'), (10098, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2013', '800', '620', '1420', '3.5', '105', 'Osmania University', 'Mech', '8.47', '10', '0'), (10099, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Spring ', '2015', '159', '150', '309', '3.5', '104', 'VTU', 'Electronics & Telecommunication', '80', '100', '42'), (10100, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '169', '159', '328', '4.5', '102', 'BITS Pilani', 'Electrical and Electronics Engineering', '8.04', '10', '2'), (10101, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '155', '322', '3.5', '116', 'BNMIT', 'ISE', '75', '100', '15'), (10102, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '165', '155', '320', '3', '103', 'BITS Pilani', 'Information Systems', '7.19', '10', '0'), (10103, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Spring ', '2013', '164', '154', '318', 'None', 'None', 'NIT Surat', 'Mechanical Engineering', '8.3', '10', '0'), (10104, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '164', '160', '324', '4', '116', 'VIT', 'Mechanical Engineering', '9.16', '10', '0'), (10105, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '160', '149', '309', '3.5', '100', 'BITS Pilani', 'M.Sc(Tech) Information Systems', '7.17', '10', '0'), (10106, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Engineering Management / Industrial Engineering / IMSE', 'Fall ', '2014', '166', '156', '322', '3', '104', 'Institute of Chemical Technology', 'Polymer and Surface Coating', '63.2', '100', '0'), (10107, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '600', '1400', '4.5', '99', 'Anna University', 'CSE', '81', '100', '0'), (10108, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '790', '580', '1370', '3', '102', 'IIIT Hyderabad', 'Computer Science', '8.67', '10', '0'), (10109, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '158', '159', '317', '3', '109', "Lingaya's University", 'ECE', '7.98', '10', '0'), (10110, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Materials Science & Engineering', 'Fall ', '2011', '740', '540', '1280', '4', '105', 'NIT Warangal', 'Metallurgical and Materials Engineering', '9.01', '10', '0'), (10111, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '700', '460', '1160', '4', '101', 'Sri Venkateswara College of Engineering', 'ECE', '74', '100', '0'), (10112, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '166', '156', '322', '4', '99', 'PSG College of Technology', 'Mechanical Engineering', '8.86', '10', '0'), (10113, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '580', '1380', '3', '109', 'PSG College of Technology', 'ECE', '9.29', '10', '0'), (10114, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '680', '1480', '4.5', '113', 'VIT University', 'Electronics and Instrumentation', '8.98', '10', '0'), (10115, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '165', '152', '317', '3.5', '99', 'IITB MTech', 'CSE', '9.33', '10', '0'), (10116, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '750', '540', '1290', '3', '93', 'CEG', 'Information Technology', '7.8', '10', '0'), (10117, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '170', '159', '329', '3.5', '110', 'NIT Nagpur', 'Electronics and Communication', '8.93', '10', '42'), (10118, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '170', '161', '331', '3.5', '118', 'National Institue of Technology Karnataka', 'Computer Science and engineering', '8.72', '10', '0'), (10119, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '650', '1450', '4', '112', 'MU', 'ELECTRONICS ENGINEERING', '76.01', '100', '0'), (10120, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '156', '142', '298', '3', '101', 'GITAM', 'Information Technology', '8.6', '10', '0'), (10121, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '167', '160', '327', '4.5', '115', 'Pune University', 'mechanical', '63', '100', '42'), (10122, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '580', '1380', '4', '117', 'MU', 'Computer Engineering', '73', '100', '0'), (10123, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '157', '323', '4', '107', 'Madras Institute of Technology', 'Information Technology', '8.66', '10', '0'), (10124, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '800', '580', '1380', '4', '117', 'Anna University', 'Electronics and Instrumentation', '9.7647', '10', '0'), (10125, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '740', '570', '1310', '4', '105', 'Rajiv Gandhi Univ of Tech', 'Mechanical Engineering', '75.38', '100', '0'), (10126, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2016', '164', '149', '313', '4', '100', 'Anna University', 'Computer Science', '8.89', '10', '21'), (10127, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '144', '302', '3.5', '103', 'JNTU', 'Electronics and Instrumentation', '78.87', '100', '0'), (10128, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '770', '700', '1470', '4', 'None', 'SASTRA', 'mechanical', '7.55', '100', '0'), (10129, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '650', '1450', '4', '112', 'SSN College of Engineering', 'Electronics and Communication', '9', '10', '0'), (10130, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (10131, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2010', '800', '550', '1350', '4', '98', 'PSG College of Technology', 'Electronics and Communications', '8.89', '10', '0'), (10132, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '790', '550', '1340', '4.5', '112', 'ITM Gurgaon', 'Electronics and Communication', '73.3', '100', '0'), (10133, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2014', '156', '147', '303', '3', '95', 'Osmania University', 'Mechanical', '67', '100', '69'), (10134, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '760', '600', '1360', '3.5', '114', 'VTU', 'Electronics and Communication', '80.04', '100', '0'), (10135, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '165', '153', '318', '4', '109', 'SJCE', 'Electronics and Communication', '67.2', '100', '49'), (10136, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Human Computer Interaction', 'Fall ', '2012', '770', '590', '1360', '3', '102', 'PICT', 'Information Technology', '0', '0', '0'), (10137, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '157', '318', '5', '114', 'Anna University', 'CSE', '8.15', '10', '0'), (10138, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '530', '1330', '4', '102', 'Anna University', 'Electronics and Communication Engg.', '7.12', '10', '0'), (10139, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '760', '490', '1250', '3', '93', 'VTU', 'E&EE;', '73.4', '100', '0'), (10140, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '167', '156', '323', '3.5', '110', 'University of Mumbai', 'Computer Engineering', '68.9', '100', '0'), (10141, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '630', '1430', '4', '105', 'HBTI', 'Computer Science & Engg', '82', '100', '0'), (10142, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Information technology management', 'Fall ', '2012', '660', '420', '1080', '3.5', '110', 'Amravati University', 'Electronics & Telecommunication', '3.64', '4', '0'), (10143, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '750', '610', '1360', '3', '99', 'Madras Institute of Technology', 'ECE', '8.5', '10', '0'), (10144, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2011', '800', '460', '1260', '3.5', '104', 'PSG College of Technology', 'Electrical and Electronics', '8.76', '10', '0'), (10145, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '620', '1410', '4', '110', 'D J Sanghvi', 'EXTC', '73', '100', '0'), (10146, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '163', '152', '315', '3.5', '107', 'Delhi College Of Engineeing', 'ELECTRICAL ENGINEERING', '77', '100', '0'), (10147, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '152', '313', '3.5', '104', 'VESIT', 'Computer Engineering', '73.55', '100', '31'), (10148, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '620', '1410', '3', '99', 'Anna University', 'CSE', '8.8', '10', '0'), (10149, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '152', '316', '3', '102', 'University of Pune', 'Computer science', '67', '100', '0'), (10150, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '168', '332', '5', '119', 'Anna University', 'Computer Science', '8.34', '10', '19'), (10151, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '158', '324', '4', '117', 'MU', 'BE Information Technology', '66', '100', '0'), (10152, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '165', '152', '317', '3.5', '109', 'National Institute of Engineering', 'Mechanical', '8.9', '100', '0'), (10153, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '800', '700', '1500', '4', '113', 'University of Pune', 'Information Technology', '62', '100', '0'), (10154, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '670', '1470', '3', '114', 'VIT Pune', 'Computer Engineering', '68', '100', '0'), (10155, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '510', '1310', '4', '105', 'NIT RKL', 'CSE', '8.51', '10', '0'), (10156, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '780', '660', '1440', '5', '102', 'Pune University', 'Electronics', '9.1', '10', '0'), (10157, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '790', '800', '1590', '4', '111', 'I.E.T D.A.V.V.', 'Computer Engineering', '72', '100', '0'), (10158, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Construction Management', 'Fall ', '2012', '800', '650', '1450', '4', 'None', 'BITS Pilani', 'civil', '6.54', '10', '0'), (10159, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '167', '156', '323', '4', '112', 'Osmania University', 'Mechanical Engineering', '88.4', '100', '0'), (10160, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '161', '327', '4', '112', 'Anna University', 'Computer Science', '8.45', '10', '0'), (10161, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '170', '156', '326', '4', '115', 'NIT Rourkela', 'Electronics and Communication', '9.61', '10', '0'), (10162, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '700', '600', '1300', '3.5', '110', 'MU', 'Computer Engineering', '62', '100', '0'), (10163, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2008', '800', '640', '1440', '4.5', '118', 'Bangalore Institute of Technology', 'ECE', '77.77', '100', '0'), (10164, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '168', '150', '318', '3', '102', 'VIT University', 'Mechanical Engineering', '7.47', '10', '0'), (10165, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '790', '630', '1420', '3.5', '104', 'VTU', 'Computer Science and Electronics', '8.47', '10', '0'), (10166, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '670', '1470', '3.5', '100', 'Jaypee Institute of Information Technology', 'Electronics and Communication', '7.5', '10', '0'), (10167, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '480', '1260', '3.5', '100', 'Sinhgad College of Engineering', 'Information Technology', '72', '100', '0'), (10168, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '170', '160', '330', '3', '113', 'VTU', 'BE MS', '8.5', '10', '18'), (10169, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '460', '1260', '4', '103', 'NIT Surat', 'Computer Engineering', '8.11', '10', '0'), (10170, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '168', '148', '316', '3.5', '97', 'R V College of Engineering', 'ECE', '8.81', '10', '0'), (10171, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '168', '149', '317', '3', '104', 'PICT', 'Computer Engg', '3.6', '4', '0'), (10172, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '520', '1320', '3.5', '100', 'Pune University', 'I.T.', '67.1', '100', '0'), (10173, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Biomedical Engineering', 'Fall ', '2012', '780', '640', '1420', '4', '110', 'Sri Sairam Engineering College', 'ECE', '7.9441', '10', '0'), (10174, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '170', '155', '325', '3', '105', 'BITS Pilani', 'Electrical and Electronics', '7.23', '10', '0'), (10175, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '660', '1460', '4.5', '113', 'MU', 'Computer Engg', '63.5', '100', '0'), (10176, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '157', '322', '4', '116', 'PICT', 'Information Technology', '3.56', '4', '0'), (10177, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '170', '153', '323', '3', '97', 'IIT Kharagpur', 'Electrical Engineering', '7.22', '10', '0'), (10178, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Embedded systems', 'Fall ', '2012', '169', '162', '331', '4', '115', 'VTU', 'ECE', '8.43', '10', '0'), (10179, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '167', '157', '324', '4.25', 'None', 'IIT Ropar', 'Mechanical Engineering', '8.87', '10', '0'), (10180, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '158', '322', '3.5', '115', 'Anna University', 'Information technology', '74', '100', '0'), (10181, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '720', '1520', '4', '115', 'SSN College of Engineering', 'Computer Science and Engineering', '83', '100', '0'), (10182, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '680', '1480', '3.5', '117', 'IIT', 'ECE', '9.1', '10', '0'), (10183, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '167', '153', '320', '4.5', '108', 'VIT Pune', 'Industrial Engineering', '8.54', '10', '24'), (10184, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '570', '1370', '3.5', '105', 'Rajiv Gandhi Technical University', 'IT', '78.69', '100', '0'), (10185, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '166', '159', '325', '4', '106', 'D.K.T.E. (Shivaji University Maharashtra)', 'CS', '66', '100', '0'), (10186, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '540', '1340', '3.5', '101', 'PICT', 'CS/IT', '3.23', '4', '0'), (10187, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '160', '155', '315', '4', 'None', 'Amrita Vishwa Vidhyapeetham', 'Information Technology', '6.8', '10', '60'), (10188, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '780', '620', '1400', '5.5', '114', 'University of Massachesetts Amherst', 'Computer Engineering', '3.63', '4', '0'), (10189, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2012', '800', '670', '1470', '5', '115', 'Cochin University of Science and Technology', 'Mechanical Engg.', '76', '100', '0'), (10190, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '161', '152', '313', '4.5', 'None', 'Amrita School of Engineering', 'Electrical and Electronics', '8.2', '10', '0'), (10191, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2008', '710', '540', '1250', '4', '267', 'University of Mumbai', 'Computers', '58.5', '100', '0'), (10192, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2014', '167', '159', '326', '3.5', '117', 'L D College Of Engineering', 'Civil Engineering', '8.49', '10', '0'), (10193, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '165', '164', '329', '4.5', '117', 'GITAM', 'Computer Science and Engineering', '7.83', '10', '0'), (10194, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '780', '460', '1240', '4.5', '116', 'VIT', 'Information Technology', '9.36', '10', '0'), (10195, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '159', '323', '4.5', '115', 'Anna University', 'Computer Science and Engineering', '7.65', '10', '0'), (10196, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '620', '1420', '4.5', '105', 'BITS Pilani', 'Physics/EEE (Dual Degree)', '9.67', '10', '0'), (10197, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '790', '510', '1300', '3', '105', 'Anna University', 'Computer Science', '9.3', '10', '0'), (10198, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2007', '800', '410', '1210', '5', '253', 'IT BHU', 'Electrical Engg', '8.41', '10', '0'), (10199, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '169', '161', '330', '3.5', '111', 'PSG College of Technology', 'Electronics and communication', '8.66', '10', '0'), (10200, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2011', '730', '510', '1240', '3.5', '106', 'Anna University', 'cse', '8.67', '10', '0'), (10201, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '161', '323', '3.5', '111', 'Pune University', 'Information Technology', '70', '100', '0'), (10202, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '167', '155', '322', '3', '112', 'VNR VJIET', 'CSE', '74', '100', '0'), (10203, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '170', '149', '319', '3', '95', 'VJTI', 'Electronics', '8.22', '10', '12'), (10204, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '800', '600', '1400', '4.5', '108', 'MU', 'Electronics Engg', '68', '100', '0'), (10205, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Biological Sciences Biotechnology ', 'Fall ', '2011', '800', '550', '1350', '4.5', '110', 'not IIT', 'CBE', '75', '100', '0'), (10206, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '165', '160', '325', '3', '118', 'Thapar University', 'Computer Science', '9.61', '10', '0'), (10207, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '161', '325', '4', '114', 'Pune University', 'CS', '59', '100', '0'), (10208, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '800', '680', '1480', '4', '107', 'NIT Nagpur', 'mechanical engg.', '8.17', '10', '0'), (10209, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '620', '1390', '4', '98', 'D J Sanghvi', 'IT', '66.58', '100', '0'), (10210, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '170', '159', '329', 'None', '113', 'Lovely Professional University', 'CSE', '9.3', '10', '30'), (10211, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '159', '149', '308', '3', '104', 'Anna University', 'ECE', '79', '100', '0'), (10212, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2013', '168', '156', '324', '3.5', '114', 'ITM University', 'Computer Science', '8.3', '10', '0'), (10213, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Operations Research', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'IIT Madras', 'Electrical Engineering', '7.1', '10', '0'), (10214, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'CS', 'Fall ', '2015', '170', '152', '322', '3', '112', 'Rajasthan Technical University', 'Computer Science', '75.7', '100', '48'), (10215, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '620', '1400', '4', '96', 'SASTRA', 'ECE', '8.565', '10', '0'), (10216, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '161', '328', '4', '107', 'R V College of Engineering', 'Information Science and Engineering', '9.43', '10', '0'), (10217, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '170', '152', '322', '3.5', '95', 'NIT Tirchy', 'CSE', '8.75', '10', '42'), (10218, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '162', '154', '316', '3.5', '110', 'MU', 'Mechanical', '73', '100', '0'), (10219, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (10220, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '560', '1330', '3', '102', 'MU', 'Computer', '70.4', '100', '0'), (10221, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engg/ comp engg', 'Spring ', '2011', '800', '500', '1300', '3.5', '107', 'MG University', 'Electronics and Communication', '73', '100', '0'), (10222, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '510', '1270', '3', '109', 'NIT Raipur', 'CSE', '7.4', '10', '0'), (10223, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '162', '152', '314', '3.5', '103', 'Anna University', 'Electrical And Electronics Engineering', '7.96', '10', '0'), (10224, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2015', '169', '161', '330', '4.5', '116', 'BITS Pilani', 'Civil Engineering', '7.89', '10', '0'), (10225, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '550', '1340', '3', 'None', 'JNTU', 'Computer Science', '77.1', '100', '0'), (10226, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2012', '800', '700', '1500', '4', '115', 'NIT Warangal', 'civil engg', '7.89', '10', '0'), (10227, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '660', '1460', '4', '111', 'PICT', 'Computer Science', '3.3', '4', '0'), (10228, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '159', '326', '3.5', 'None', 'BMSCE', 'Computer Science', '8.67', '10', '0'), (10229, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '168', '163', '331', '4', '114', 'IIT BHU', 'Electronics Engineering', '8.04', '10', '0'), (10230, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '151', '312', '3.5', '106', 'Sardar Patel College of Engineering', 'Information Technology', '71.47', '100', '0'), (10231, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '169', '159', '328', '4', '115', 'Veermata Jijabai Technological Institute', 'Mechanical Engineering', '7.5', '10', '0'), (10232, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Financial Engineering', 'Spring ', '2014', '161', '157', '318', '3.5', '99', 'Anna University', 'EEE', '82.4', '100', '0'), (10233, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '167', '155', '322', '4', '111', 'UPTU', 'Computer Science & Engineering', '68.52', '100', '0'), (10234, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '154', '318', '4', '107', 'R V College of Engineering', 'Computer Science', '8.69', '10', '12'), (10235, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Human Computer Interaction', 'Fall ', '2013', '165', '158', '323', '4', '115', 'VTU', 'Computer Science', '73', '100', '0'), (10236, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '800', '530', '1330', '3', '102', 'NIT Jamshedpur', 'Mechanical', '6.62', '10', '0'), (10237, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2008', '800', '550', '1350', '3', '107', 'Koneru Lakshmaiah College of Engineering', 'Electronics and Communication Engineering', '8.8', '10', '0'), (10238, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2013', '164', '160', '324', '3', '106', 'VIT', 'ECE', '8.5', '10', '0'), (10239, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '155', '319', '4.5', '108', 'Anna University', 'CSE', '9.26', '10', '10'), (10240, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '157', '321', '3', '102', 'PESIT', 'Computer Science', '8.72', '10', '0'), (10241, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Materials Science & Engineering', 'Fall ', '2011', '800', '610', '1410', '4.5', '108', 'VNIT Nagpur', 'Metallurgy and Material Science Engg', '7.72', '10', '0'), (10242, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '780', '570', '1350', '3.5', '116', 'VIT', 'Mechanical', '8.23', '10', '0'), (10243, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '154', '321', '4', '114', 'SJCE', 'CS&E;', '8.69', '10', '0'), (10244, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '640', '1400', '4', '109', 'UPTU', 'Computer Science', '78', '100', '0'), (10245, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '167', '152', '319', '3', '108', 'Government College of Engineering Aurangabad', 'Mechanical', '7.976', '10', '0'), (10246, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '720', '1520', '4.5', '114', 'MU', 'Computers', '69.12', '100', '0'), (10247, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '170', '152', '322', '4.5', '116', 'BITS Pilani', 'Computer Science', '8.45', '10', '0'), (10248, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'environmental engineering', 'Fall ', '2015', '161', '158', '319', '4', '116', 'University of Mumbai', 'Chemical Engineering', '64', '100', '10'), (10249, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '150', '315', '4', '103', 'R V College of Engineering', 'CSE', '8.95', '10', '0'), (10250, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '470', '1270', '3.5', '110', 'NIT - Bhopal', 'ECE', '7.99', '10', '0'), (10251, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '154', '316', '3', '109', 'Sri Venkateswara College of Engineering', 'Computer Science Engineering', '7.7', '10', '0'), (10252, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '169', '150', '319', '4', '107', 'BITS Pilani', 'Computer Science', '7.5', '10', '0'), (10253, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2006', '800', '650', '1450', '5.5', '290', 'MVSR', 'Production Engineering', '84', '100', '0'), (10254, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '500', '1270', '3.5', '95', 'Anna University', 'cse', '84', '100', '0'), (10255, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'physics', 'Fall ', '2013', '164', '151', '315', '3.5', '112', 'University of Calcutta', 'Physics', '58.83', '100', '0'), (10256, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '162', '325', '4', '119', 'NITC', 'Computer Science', '8.17', '10', '0'), (10257, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '720', '490', '1210', '3.5', '105', 'BMSCE', 'ECE', '79', '100', '0'), (10258, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '152', '314', '3.5', '107', 'VTU', 'Computer Science and Engineering', '75', '100', '36'), (10259, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (10260, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '165', '154', '319', 'None', '106', 'GGSIPU', 'IT', '78', '100', '0'), (10261, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '780', '640', '1420', '3', '104', 'NIT', 'Mechanical Engineering', '9.1', '10', '0'), (10262, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '166', '150', '316', '3.5', '107', 'GGSIPU', 'IT', '79', '100', '0'), (10263, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Information Technology', 'Fall ', '2013', '168', '161', '329', '4.5', '116', 'BMSCE', 'Telecommunication Engineering', '73.91', '100', '0'), (10264, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '770', '660', '1430', '4', '113', 'MU', 'Mechanical Engineering', '66', '100', '0'), (10265, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '78', '470', '548', '4', '108', 'SSN College of Engineering', 'ELECTRONICS AND COMMUNICATIONSW', '80', '100', '0'), (10266, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '150', '312', '3.5', '98', 'K J Somaiya College of Engiineering', 'Information Technology', '65.6', '100', '0'), (10267, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '168', '161', '329', 'None', '114', 'PESIT', 'Information Science', '9.43', '10', '0'), (10268, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'EE / CS', 'Fall ', '2015', '163', '160', '323', '4', '111', 'BITS Pilani', 'Electrical and Electronics', '7.99', '10', '54'), (10269, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '520', '1320', '4', '113', 'VIT', 'Information Technology', '8.6', '10', '0'), (10270, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '167', '158', '325', '4', '111', 'MSRIT', 'Electrical and Electronics Enginnering', '7.84', '10', '0'), (10271, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '164', '152', '316', '4', '111', 'SSN College of Engineering', 'Mechanical Engg', '8.539', '10', '0'), (10272, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '740', '590', '1330', '3.5', '107', 'CEG', 'Mechanical engineering', '7.27', '10', '0'), (10273, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '160', '149', '309', '4', '99', 'Sri Jayachamarajendra College of Engineering', 'Electronics and Communication', '9.18', '10', '0'), (10274, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2013', '157', '157', '314', '4.5', '115', 'Anna University', 'Computer science', '81', '100', '0'), (10275, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '147', '314', '3', '97', 'R V College of Engineering', 'Electronics and Communication', '9.13', '10', '0'), (10276, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'EE / CS', 'Fall ', '2013', '800', '630', '1430', '3.5', '117', 'VTU', 'EE', '87', '100', '0'), (10277, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '170', '152', '322', '4', '103', 'PESIT', 'computer science', '73.88', '100', '0'), (10278, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Spring ', '2011', '800', '560', '1360', '3.5', '108', 'CEG', 'ECE', '8.908', '10', '0'), (10279, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '580', '1380', '3.5', '108', 'NIT Karnataka', 'NIT Karnataka Surathkal', '7.67', '10', '0'), (10280, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '166', '153', '319', '3.5', '111', 'IIIT Allahabad', 'CS', '8.52', '10', '24'), (10281, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '162', '154', '316', '4', '104', 'NIT - Surat', 'Mechanical Engineering', '8.61', '10', '0'), (10282, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '166', '159', '325', '4.5', '115', 'SJCE', 'Computer Science', '8.8', '10', '41'), (10283, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '162', '151', '313', '3.5', '98', 'SSN College of Engineering', 'Electronics and Communication', '86.2', '100', '0'), (10284, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '167', '152', '319', '3.5', 'None', 'IIT Madras', 'Mechanical', '8.7', '10', '0'), (10285, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '770', '570', '1340', 'None', 'None', 'Sri Venkateswara College of Engineering', 'Electronics and Communication', '6.6', '10', '0'), (10286, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Chemical Engineering', 'Fall ', '2012', '780', '600', '1380', '4', '108', 'D J Sanghvi', 'Chemical Engineering', '67.34', '100', '0'), (10287, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '770', '700', '1470', '4', '119', 'VTU', 'CS', '75', '100', '0'), (10288, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '770', '640', '1410', '4', '117', 'Watumull Institute University of Mumbai', 'Computer Science', '53', '100', '0'), (10289, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science/ Electronics and Communication', 'Fall ', '2015', '170', '154', '324', '3.5', '110', 'IIT Guwahati', 'Electronics and Communication Engineering', '7.95', '10', '20'), (10290, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '163', '151', '314', '3.5', '104', 'VESIT', 'IT', '62', '100', '0'), (10291, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '167', '155', '322', '4', '107', 'NIT Calicut', 'Mechanical', '9.36', '10', '20'), (10292, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '152', '313', '3.5', '104', 'VTU', 'Computer Science', '82.5', '100', '0'), (10293, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '166', '163', '329', 'None', '111', 'PSG College of Technology', 'Mechanical Engineering', '8.8', '10', '0'), (10294, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer vision/image-video processing', 'Fall ', '2014', '160', '152', '312', '3.5', '112', 'Anna University', 'Electronics and Communication Engineering', '9.09', '10', '0'), (10295, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '168', '161', '329', '4', '109', 'VTU', 'Information Science', '71.08', '100', '72'), (10296, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '166', '155', '321', '3.5', '106', 'CMRIT', 'Computer Science', '73', '100', '0'), (10297, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '530', '1310', '3', '104', 'VIT University', 'Computer Science', '9.2', '10', '0'), (10298, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '144', '308', '3.5', '99', 'PESIT', 'Information Science & Engineering', '8.43', '10', '0'), (10299, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering / Electrical Computer Engineering', 'Fall ', '2015', '770', '600', '1370', '3', '98', 'Manipal Institue of Technology', 'ECE', '8.23', '10', '36'), (10300, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Spring ', '2012', '800', '570', '1370', '3', '100', 'NIT Jaipur', 'Electronics and Communication Engg.', '8.51', '10', '0'), (10301, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '600', '1400', '3.5', 'None', 'BITS Goa', 'Electronics and Instrumentation', '8.8', '10', '0'), (10302, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '580', '1380', '3', '104', 'Nirma Institute of Technology', 'Computer Science', '8.57', '10', '0'), (10303, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '610', '1410', '5', '102', 'VTU', 'CSE', '73', '100', '0'), (10304, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '168', '161', '329', '5', '116', 'DA-IICT', 'Information and Communication Technology', '8.48', '10', '0'), (10305, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '163', '148', '311', '3', '94', 'VTU', 'Mech', '8.94', '10', '0'), (10306, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '152', '170', '322', '3.5', '107', 'VTU', 'Electronics and communication', '9', '10', '0'), (10307, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '168', '153', '321', '4', '113', 'VIT', 'CSE', '8.83', '10', '0'), (10308, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '166', '152', '318', '4', '111', 'NITK Surathkal', 'Electronics & Communications Engg', '8.45', '10', '15'), (10309, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2013', '730', '670', '1400', '3.5', '101', 'CEG', 'Mechanical', '8.61', '10', '0'), (10310, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '500', '1300', '4', '115', 'VIT University', 'Computer Science', '8.8', '10', '0'), (10311, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '700', '1490', '5', '119', 'VTU', 'Computer Science and Engineering', '72.5', '100', '0'), (10312, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Bioinformatics', 'Fall ', '2011', '730', '470', '1200', '3.5', '107', 'BITS Pilani', 'Biological Sciences and Computer Science (Dual)', '7.86', '10', '0'), (10313, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '640', '1440', '5', '113', 'MU', 'Electrical Engineering', '8.3', '10', '0'), (10314, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'electronics', 'Fall ', '2012', '740', '530', '1270', '3.5', '106', 'MU', 'Electronics', '68.5', '100', '0'), (10315, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '780', '660', '1440', '4.5', '109', 'MU', 'Computer Engineering', '57', '100', '0'), (10316, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (10317, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '168', '151', '319', '3.5', '94', 'NIT Karnataka', 'Electronics and Communication Engineering', '8.98', '10', '34'), (10318, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '700', '800', '1500', '4.5', '112', 'University of Pune', 'Information Technology', '72', '100', '0'), (10319, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '164', '157', '321', '3', '103', 'NIT Kurukshetra', 'ECE', '8.41', '10', '0'), (10320, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '800', '650', '1450', '4.5', '115', 'D j Sanghvi', 'Computer', '75.98', '100', '0'), (10321, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2012', '170', '148', '318', '3.5', '101', 'IIT BHU', 'civil engineering', '7.68', '10', '0'), (10322, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '790', '540', '1330', '3.5', '106', 'IIIT Allahabad', 'Information Technology', '8.5', '10', '0'), (10323, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '152', '316', '3.5', '107', 'VIT', 'Computer Science', '8.9', '10', '0'), (10324, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '166', '155', '321', '3.5', '104', 'The LNM Institute of Information Technology', 'CSE', '7.66', '10', '0'), (10325, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computational Science and Engineering', 'Fall ', '2014', '167', '164', '331', '4', '115', 'VIT', 'Mechanical Engineering (Energy Specialization)', '8.53', '10', '0'), (10326, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '159', '151', '310', '3.5', '106', 'SRM', 'Electronics & Communication Engineering', '8.724', '10', '0'), (10327, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2013', '800', '680', '1480', '3.5', '109', 'MU', 'Elec. and Telecommunications', '67.85', '100', '0'), (10328, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2006', '800', '730', '1530', '5.5', '290', 'MU', 'Computer Engg.', '63', '100', '0'), (10329, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '470', '1270', '3', 'None', 'VJTI', 'Computer Technology', '9.1', '10', '0'), (10330, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall', '2017', '170', '150', '320', '3.5', '105', 'BIT Mesra', 'Mechanical Engineering', '80.02', '100', '0'), (10331, 'Harvard University', '15', 'Admit', 'MS', 'urban and regional planning', 'Fall ', '2015', '168', '156', '324', '4.5', '118', 'School of Planning and Architecture New Delhi India', 'Architecture', '74', '100', '0'), (10332, 'Harvard University', '15', 'Admit', 'MS', 'Cell and Molecular Biology', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'NIT Calicut', 'Biotechnology', '9.1', '10', '0'), (10333, 'Harvard University', '15', 'Admit', 'MS', 'Architecture', 'Fall ', '2014', 'None', 'None', '0', 'None', 'None', 'Harvard University', 'Graduate School of Design', '0', '0', '0'), (10334, 'Harvard University', '15', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '159', '160', '319', '4', '111', 'R V College of Engineering', 'Computer Science', '74', '100', '0'), (10335, 'Harvard University', '15', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'IIT Kharagpur', 'Electrical Engg', '8.42', '10', '0'), (10336, 'Harvard University', '15', 'Admit', 'MS', 'Electronics and Communication', 'Fall', 'None', '158', '149', '307', '4', 'None', 'Indian Institute of Information and Technology design and manufacturing', 'ECE', '8', '10', '0'), (10337, 'Harvard University', '15', 'Admit', 'MS', 'physics', 'Fall ', '2011', '800', '540', '1340', '4.5', '113', 'BITS Pilani', 'Department of Physics', '8.79', '10', '0'), (10338, 'Harvard University', '15', 'Reject', 'MS', 'Pharmacology', 'Fall ', '2014', '145', '159', '304', '3.5', 'None', 'Nirma Institute of Technology', 'Pharmacy', '9.16', '10', '0'), (10339, 'Harvard University', '15', 'Reject', 'MS', 'environmental engineering', 'Fall ', '2013', '163', '154', '317', '4', '113', 'ISM Dhanbad', 'Environmental Science and Engineering', '8.94', '10', '0'), (10340, 'Harvard University', '15', 'Reject', 'MS', 'Biomedical Engineering', 'Fall ', '2011', '800', '700', '1500', '4.5', '114', 'Manipal Institue of Technology', 'ECE', '9.58', '10', '0'), (10341, 'Harvard University', '15', 'Reject', 'MS', 'physics', 'Fall ', '2011', '800', '530', '1330', '4.5', '115', 'BITS Pilani', 'Physics Electrical and Electronics', '9.17', '10', '0'), (10342, 'Harvard University', '15', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '510', '1310', '3.5', '94', 'BITS Goa', 'E.E', '7.21', '10', '0'), (10343, 'Harvard University', '15', 'Reject', 'MS', 'Computational/Systems BIology', 'Fall ', '2014', '165', '166', '331', 'None', '117', 'Not too well known', 'Electronics and Electrical Engineering', '7.74', '10', '0'), (10344, 'Harvard University', '15', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '780', '550', '1330', '1330', '112', 'BITS Goa', 'Information Systems', '8.6', '10', '0'), (10345, 'Harvard University', '15', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '168', '162', '330', '5', '116', 'BIT Mesra', 'ECE', '9.11', '10', '0'), (10346, 'Harvard University', '15', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '158', '319', '4', '107', 'VIT University', 'B.Tech Information Technology', '8.98', '10', '0'), (10347, 'Harvard University', '15', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '165', '163', '328', '4', '115', 'Pune University', 'Computer Engineering', '75.53', '100', '0'), (10348, 'Harvard University', '15', 'Reject', 'MS', 'optics', 'Fall ', '2006', '790', '560', '1350', '5.5', '283', 'Delhi College Of Engineeing', 'electronics and communication engg.', '75', '100', '0'), (10349, 'Harvard University', '15', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2006', '790', '560', '1350', '5.5', '283', 'Delhi College Of Engineeing', 'Electronics and Communication engg', '74', '100', '0'), (10350, 'Harvard University', '15', 'Reject', 'MS', 'Biostatistics', 'Fall ', '2011', '800', '670', '1470', 'None', '115', 'Indian Statistical Institute', 'Mathematical Statistics and Probability', '0', '0', '0'), (10351, 'Harvard University', '15', 'Reject', 'MS', 'Learning Sciences', 'Fall ', '2011', '720', '630', '1350', '3.5', '112', 'University of Delhi', 'English Hons.', '0', '0', '0'), (10352, 'Harvard University', '15', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '165', '330', '5.5', 'None', 'University of Cambridge', 'Computer Laboratory', '0', '0', '0'), (10353, 'Harvard University', '15', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '166', '152', '318', '3.5', '104', 'BITS Pilani', 'EEE', '8.1', '100', '0'), (10354, 'Harvard University', '15', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '700', '1490', '5', '119', 'VTU', 'Computer Science and Engineering', '72.5', '100', '0'), (10355, 'Harvard University', '15', 'Reject', 'PhD', 'Electronics & Communication', 'Fall', '2013', '166', '152', '318', '3.5', '104', 'BITS Pilani, Pilani Campus', 'EEE', '8.1', '10', '0'), (10356, 'Illinios Institute of Technology, Chicago', '16', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall', '2018', '155', '147', '302', '4', '101', 'R.M.K. Engineering College', 'ECE', '8.11', '10', '15'), (10357, 'Illinios Institute of Technology, Chicago', '16', 'Admit', 'MS', 'Civil Engineering', 'Fall', '2016', '161', '148', '309', '3.5', '102', 'RV College of Engineering', 'Civil Engineering', '8.44', '10', '0'), (10358, 'Indiana University, Bloomington', '17', 'Reject', 'Masters', 'Computer Science', 'Fall', '2016', '166', '144', '310', '3', '92', 'Shri guru govind singh college of engineering, nanded', 'Computer Science', '8.59', '10', '0'), (10359, 'Iowa State University', '18', 'Admit', 'MS', 'Industrial Engineering', 'Fall', '2018', '167', '152', '319', '3', '108', 'Shri Ramdeobaba College of Engineering', 'Mechanical Engineering', '8.43', '10', '18'), (10360, 'Iowa State University', '18', 'Admit', 'MS', 'Industrial Engineering', 'Fall', '2015', '167', '157', '324', '0', '102', '-1', '-1', '-1', '-1', '0'), (10361, 'Kansas State University', '19', 'Reject', 'MS', 'Civil Engineering', 'Fall', '2019', '160', '143', '303', '4.5', '93', 'AP Shah Institute Of Technology, Thane', 'Civil Engineering', '7.22', '10', '6'), (10362, 'Kansas State University', '19', 'Reject', 'MS', 'Civil Engineering', 'Fall', '2019', '160', '143', '303', '4.5', '93', 'AP Shah Institute Of Technology, Thane', 'Civil Engineering', '7.22', '10', '6'), (10363, 'New York University', '20', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2016', 'None', 'None', '0', 'None', 'None', 'University of Petroleum and Energy Studies', 'Computer Science', '3.24', '4', '0'), (10364, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '166', '156', '322', '3', '105', 'Delhi College Of Engineeing', 'Computer Science', '0', '0', '0'), (10365, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '570', '1370', '3', '100', 'GITAM', 'Computer Science', '9.21', '10', '0'), (10366, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '167', '158', '325', '4', '115', 'Maharaja Agrasen Institute Of Technology', 'CSE', '71.7', '100', '7'), (10367, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '800', '500', '1300', '3', '97', 'Panjab University', 'BE(CS)', '67.4', '100', '0'), (10368, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '800', '690', '1490', '4.5', '117', 'BITS Goa', 'Electronics & Instrumentation Physics', '0', '0', '0'), (10369, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '48', '34', '82', '5', '100', 'NIT Surat', 'Mech Engg', '64', '100', '0'), (10370, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '790', '660', '1450', '3.5', '108', 'Harcourt Butler Technological Institute', 'CSE', '72.2', '100', '0'), (10371, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '800', '480', '1280', '4', '104', 'MU', 'Computer Dept.', '68', '100', '0'), (10372, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '760', '570', '1330', '3', '101', 'MU', 'IT', '57', '100', '0'), (10373, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '160', '322', '3', '109', 'Panjab University', 'Computer Science', '76', '100', '0'), (10374, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '640', '1440', '4.5', '114', 'IIT Roorkee', 'Electrical Engineering', '7.1', '10', '0'), (10375, 'New York University', '20', 'Admit', 'MS', 'CS', 'Fall ', '2015', '162', '156', '318', '3.5', '109', 'Anna University', 'CS', '7.33', '10', '0'), (10376, 'New York University', '20', 'Admit', 'MS', 'Information Science', 'Fall ', '2011', '680', '470', '1150', 'None', '102', 'Himachal Pradesh University/UIIT', 'Information Technology', '73.6', '100', '0'), (10377, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '157', '321', '4', '106', 'MU', 'Computer Engg.', '68', '100', '0'), (10378, 'New York University', '20', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '800', '640', '1440', '4.5', '117', 'MU', 'Electronics', '67', '100', '30'), (10379, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '770', '410', '1180', '3.5', '111', 'Pune University', 'Computer Engineering', '64', '100', '0'), (10380, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '440', '1230', '3.5', '104', 'VIT', 'Information Technology', '8', '10', '0'), (10381, 'New York University', '20', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2015', '164', '155', '319', '3', '110', 'COEP', 'Electrical Engineering', '7.23', '10', '10'), (10382, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '780', '670', '1450', '4', '111', 'RAIT', 'extc', '57', '100', '0'), (10383, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '156', '319', 'None', 'None', 'Panjab University', 'Information Technology', '70.2', '100', '0'), (10384, 'New York University', '20', 'Admit', 'MS', 'International Affairs.', 'Fall ', '2013', '150', '148', '298', '4', '104', 'None', '0', '77', '100', '0'), (10385, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '167', '155', '322', '4.5', '109', 'Maharaja Agrasen Institute Of Technology', 'B.Tech (Computer Science)', '76', '100', '0'), (10386, 'New York University', '20', 'Admit', 'MS', 'Organizational Behavior', 'Spring ', '2014', 'None', 'None', '0', 'None', 'None', 'Penn State', 'Psychology/Business', '3.9', '4', '0'), (10387, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '490', '1270', '3', '102', 'Malwa Institute', 'Computer Science', '67', '100', '0'), (10388, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '169', '160', '329', '4.5', '111', 'NIT-Trichy', 'ECE', '7.82', '10', '24'), (10389, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '590', '1380', '3.5', '100', 'Sardar Patel College of Engineering', 'Computer engineering', '65.5', '100', '0'), (10390, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '151', '310', '3', '93', 'VTU', 'IS', '80', '100', '0'), (10391, 'New York University', '20', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '780', '670', '1450', '3', '93', 'Harcourt Butler Technological Institute', 'Biochemical Engineering', '73', '100', '0'), (10392, 'New York University', '20', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (10393, 'New York University', '20', 'Admit', 'MS', 'Information Science', 'Fall ', '2010', '800', '710', '1510', '6', '119', 'Indian Statistical Institute', 'Systems Science and Informatics Unit', '75.1', '100', '0'), (10394, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '168', '330', '4.5', '116', 'Pune University', 'Computer Engineering', '59', '100', '0'), (10395, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '640', '1440', '4', '114', 'West Bengal University Of Technology', 'Information Tecdhnology', '8.03', '10', '0'), (10396, 'New York University', '20', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '161', '152', '313', '4', '97', 'VIT University', 'ECE', '8.26', '10', '0'), (10397, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '770', '550', '1320', '3.5', '106', 'Galgotia college of engineering and technology II UPTU', 'Computer science', '72', '100', '0'), (10398, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '620', '1400', '3.5', '114', 'NMIMS', 'Computer Engineering', '3.41', '4', '0'), (10399, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '166', '153', '319', '4', '113', 'University of Pune', 'Computer Engineering Dept.', '64.6', '100', '3'), (10400, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '800', '510', '1310', '3.5', '100', 'MDU', 'IT', '69', '100', '0'), (10401, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '800', '590', '1390', '3', 'None', 'Umiversity of mumbai', '0', '61', '100', '0'), (10402, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall', 'None', '164', '151', '315', 'None', '101', 'None', 'CS', '72', '100', '64'), (10403, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '168', '149', '317', '4', '107', 'ITM University Gurgaon', 'CS', '9.01', '10', '6'), (10404, 'New York University', '20', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2015', '152', '149', '301', '3', '95', 'PSG College of Technology', 'BIOTECHNOLOGY', '8.2', '100', '0'), (10405, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '670', '1460', '4', '116', 'GGSIPU', 'IT', '76', '100', '0'), (10406, 'New York University', '20', 'Admit', 'MS', 'MIS-management related courses', 'Fall ', '2011', 'None', 'None', '0', '3', '95', 'VESIT', 'Electronics and Telecom', '0', '0', '0'), (10407, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '800', '630', '1430', '4', '120', 'Fr. Conceicao Rodrigues College of Engineering', 'Computer Engineering', '66.67', '100', '0'), (10408, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '790', '570', '1360', '4', '283', 'VTU', 'Information Science', '74.5', '100', '0'), (10409, 'New York University', '20', 'Admit', 'MS', 'physical therapy', 'Fall ', '2011', '580', '530', '1110', '3.5', '116', 'Christian Medical College Vellore', '0', '3.96', '4', '0'), (10410, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '630', '1430', '3.5', '111', 'MU', 'Computer Science', '64', '100', '0'), (10411, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Spring ', '2012', '730', '520', '1250', '3.5', '104', 'SSN College of Engineering', '0', '75', '100', '0'), (10412, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '168', '153', '321', '5', '106', 'UPTU', 'CS', '70', '100', '0'), (10413, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '161', '329', '4', '110', 'NIT Calicut', 'CSE', '6.91', '10', '0'), (10414, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '540', '1320', '3', '95', 'Jaypee Institute of Information Technology', 'computer science', '6.83', '10', '0'), (10415, 'New York University', '20', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '710', '540', '1250', '4', '103', 'Pune University', '0', '0', '0', '0'), (10416, 'New York University', '20', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (10417, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '168', '158', '326', 'None', '115', 'Cochin University of Science and Technology', 'Computer Science and Engineering', '75', '100', '0'), (10418, 'New York University', '20', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '800', '490', '1290', '3', 'None', 'None', '0', '0', '0', '0'), (10419, 'New York University', '20', 'Admit', 'MS', 'International Affairs.', 'Fall ', '2013', '740', '600', '1340', '4', '116', 'University of Mumbai', 'Engineering(Information Technology)', '58', '100', '0'), (10420, 'New York University', '20', 'Admit', 'MS', 'Management of Technology', 'Fall ', '2012', '750', '580', '1330', '5.5', '112', 'Anna University', 'Information Technology', '81', '100', '0'), (10421, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2009', '800', '580', '1380', '4', '111', 'PICT', 'Information Technology', '3.273', '4', '0'), (10422, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '690', '600', '1290', '3.5', '94', 'K J Somaiya College of Engiineering', 'Computer Science', '64', '100', '0'), (10423, 'New York University', '20', 'Admit', 'MS', 'Information Technology', 'Fall ', '2011', '800', '580', '1380', '5', '109', 'Shanghai Institute of Foreign Trade', 'Electronic commerce', '3.3', '4', '0'), (10424, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '530', '1330', '4', 'None', 'Western Michigan University', 'Computer Science', '3.2', '4', '0'), (10425, 'New York University', '20', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '164', '146', '310', '3', '91', 'JNTU', 'Electrical Engineering', '78.33', '100', '0'), (10426, 'New York University', '20', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '162', '138', '300', '3', '84', 'Anna University', 'mechanical', '7.8', '10', '0'), (10427, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '730', '630', '1360', '3', '97', 'VJTI', 'Computer Engineering', '7.8', '10', '0'), (10428, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', 'None', 'None', '0', 'None', 'None', 'Andhra University', 'CS', '75', '100', '0'), (10429, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'None', 'computer science', '72', '100', '0'), (10430, 'New York University', '20', 'Admit', 'MS', 'Interaction Design', 'Fall ', '2015', 'None', 'None', '0', 'None', '107', 'None', '0', '0', '0', '0'), (10431, 'New York University', '20', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (10432, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '167', '154', '321', '3', '100', 'NIT Nagpur', 'Computer Science and Engineering', '8.39', '10', '0'), (10433, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '740', '400', '1140', '3.5', '100', 'VTU', 'CS', '65', '100', '0'), (10434, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '690', '540', '1230', '4', '115', 'VTU', 'Electronics and Communications Engineering', '68.76', '100', '0'), (10435, 'New York University', '20', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '520', '1280', '3', '97', 'Not so reputed ..', 'Electrical E', '3.97', '4', '0'), (10436, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '162', '147', '309', '3.5', '100', 'K J Somaiya College of Engiineering', 'I.T.', '64', '100', '0'), (10437, 'New York University', '20', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '161', '148', '309', '3', '97', 'WBUT', 'ECE', '7', '10', '0'), (10438, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '149', '311', '3', '100', 'Charotar University of Science and Technology', 'Electronics & Communication', '8.85', '10', '36'), (10439, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '162', '160', '322', '4', '114', 'MU', 'Information Technology', '54', '100', '12'), (10440, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '168', '125', '293', '3.5', '104', 'Pune University', 'E&TC;', '55', '100', '0'), (10441, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall', 'None', '157', '152', '309', '3.5', '109', 'MU', 'I.T.', '54', '100', '0'), (10442, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '163', '157', '320', '5', '112', 'Amrita Vishwa Vidhyapeetham', 'Information Technology', '8.98', '10', '0'), (10443, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall', 'None', '166', '155', '321', '3', '108', 'IIIT Allahabad', 'IT', '8.8', '10', '0'), (10444, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '690', '550', '1240', 'None', '94', 'Sardar Patel College of Engineering', 'Computers', '67.14', '100', '0'), (10445, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '510', '1310', '4.5', '104', 'Osmania University', 'CSE', '87.6', '100', '0'), (10446, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '163', '158', '321', '4', '99', 'Amity University', 'Information Technology', '7.55', '10', '0'), (10447, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '710', '600', '1310', '3.5', 'None', 'North Dakota State University', 'ECE', '3.1', '4', '0'), (10448, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '760', '590', '1350', '4', '107', 'Nirma Institute of Technology', 'Computer Engineering', '7.5', '10', '0'), (10449, 'New York University', '20', 'Admit', 'MS', 'Technology Management', 'Fall ', '2014', '155', '150', '305', '3.5', '104', 'BITS Pilani', 'EEE', '7.22', '100', '0'), (10450, 'New York University', '20', 'Admit', 'MS', 'CS/ EE', 'Fall ', '2011', '730', '670', '1400', '4.5', '116', 'VTU', 'ECE', '72', '100', '0'), (10451, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '165', '149', '314', '4', '105', 'Anna University', 'ECE', '73.4', '100', '0'), (10452, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '520', '1310', '4', '109', 'VESIT', 'Computer Science', '69', '100', '0'), (10453, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '163', '157', '320', '4', '109', 'Punjabi University', 'Computer', '6.55', '10', '0'), (10454, 'New York University', '20', 'Admit', 'MS', 'CS / MIS', 'Fall', 'None', '168', '166', '334', '3.5', '116', 'MU', 'IT', '7.1', '10', '0'), (10455, 'New York University', '20', 'Admit', 'MS', 'CS / SE / IT / MIS', 'Fall ', '2015', '158', '157', '315', '4', '112', 'Rajasthan Technical University', 'Computer Engineering', '67.11', '100', '30'), (10456, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '760', '510', '1270', '5', '98', 'Rajiv Gandhi Institute Of Technology', 'Instrumentation', '60.56', '100', '0'), (10457, 'New York University', '20', 'Admit', 'MS', 'Journalism', 'Fall ', '2015', '161', '162', '323', '4.5', '115', 'Visvesvaraya NIT Nagpur', 'Electronics and Communication Engineering', '7.36', '10', '66'), (10458, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '560', '1340', '5', '114', 'MU', 'IT', '63.2', '100', '0'), (10459, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '640', '550', '1190', '3', '109', 'PTU', 'Electrical Engineering', '76.3', '100', '0'), (10460, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '800', '660', '1460', '3.5', '103', 'VIT', 'Telecommunication', '8.76', '10', '0'), (10461, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '750', '450', '1200', '3', '90', 'Andhra University', 'Information Technology', '86', '100', '0'), (10462, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '560', '1360', '4', '102', 'MU', 'Computer Engineering', '65', '100', '0'), (10463, 'New York University', '20', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '770', '670', '1440', '3.5', '114', 'UPTU', 'CS', '0', '0', '0'), (10464, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '600', '1400', '5', '114', 'NIT Tirchy', 'Electrical and Electronics Engineering', '7.8', '10', '0'), (10465, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '800', '390', '1190', '3', '97', 'UIR', 'MIS', '3.67', '4', '0'), (10466, 'New York University', '20', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2015', '161', '157', '318', '4.5', '114', 'NUST', 'Electrical and Power Engineering Department - Electronics Engineering', '3.13', '4', '3'), (10467, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '740', '590', '1330', '4', '110', 'None', '0', '0', '100', '0'), (10468, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '148', '308', '3', 'None', 'BPUT', '0', '7.4', '10', '0'), (10469, 'New York University', '20', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '800', '600', '1400', '3.5', '108', 'ITM Gurgaon', 'Electronics and Communications', '67', '100', '0'), (10470, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '165', '153', '318', '3', '108', 'Symbiosis Institute of Technology', 'Computer Science', '3.305', '4', '8'), (10471, 'New York University', '20', 'Admit', 'MS', 'Human Computer Interaction', 'Fall ', '2012', '750', '500', '1250', '4.5', '111', 'VIT University', 'B.Tech Bioinformatics', '8.88', '10', '0'), (10472, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '540', '620', '1160', '3.5', '273', 'MU', 'Computer Engg', '0', '0', '0'), (10473, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '500', '1300', '3.5', '109', 'CEG', 'Computer Science and Engineering', '7.9', '10', '0'), (10474, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', 'None', 'None', '0', 'None', 'None', 'MU', 'Information Technology', '0', '0', '0'), (10475, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Spring ', '2012', '770', '540', '1310', '4', '112', 'Vishwakarma Institute of Technology', 'Computer', '64', '100', '0'), (10476, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '510', '1310', '3.5', '104', 'Anna University', 'Computer Science', '74', '100', '0'), (10477, 'New York University', '20', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Spring ', '2015', '163', '155', '318', '3', '98', 'SSN College of Engineering', 'EEE', '8.2', '10', '12'), (10478, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '610', '1400', '3', '103', 'IET DAVV', 'Computer engineering', '71', '100', '0'), (10479, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'Ecole des Mines', 'Computer Science', '0', '0', '0'), (10480, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '800', '550', '1350', '3.5', '102', 'None', 'CS', '72', '100', '0'), (10481, 'New York University', '20', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2015', '162', '151', '313', '3.5', '104', 'JNTU', 'ECE', '70', '100', '0'), (10482, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '161', '147', '308', '3', '100', 'Anna University', 'B.E in Computer Science', '8.51', '10', '0'), (10483, 'New York University', '20', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '160', '150', '310', 'None', '110', 'Anna University', 'ECE', '8.46', '10', '16'), (10484, 'New York University', '20', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '161', '145', '306', '3.5', '98', 'JSS Noida', 'mechanical', '0', '0', '0'), (10485, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Spring ', '2013', '162', '152', '314', 'None', '112', 'SRKNEC Nagpur', 'Electronics', '63', '100', '0'), (10486, 'New York University', '20', 'Admit', 'MS', 'Real Estate Finance & Development', 'Fall ', '2011', '800', '320', '1120', '3.5', '104', 'NIT Warangal', 'Civil Engineering', '7.3', '10', '0'), (10487, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '710', '1510', '3', '100', 'None', '0', '0', '0', '0'), (10488, 'New York University', '20', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '166', '168', '334', '4.5', 'None', 'University of Mumbai', 'Electronics & Telecommunications', '66', '100', '0'), (10489, 'New York University', '20', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2015', '163', '152', '315', '3.5', '113', 'Maharishi Dayanand University', 'Electronics and Communication Engineering', '3.65', '4', '0'), (10490, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '165', '158', '323', '3.5', '112', 'Thapar University', 'Computer Science', '7.91', '10', '38'), (10491, 'New York University', '20', 'Admit', 'MS', 'CS', 'Spring ', '2015', '164', '153', '317', '3.5', 'None', 'Manipal Institue of Technology', 'Information Technology', '7.67', '10', '0'), (10492, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '570', '1320', '4', '113', 'University of Pune', 'Computer Engineering', '61', '100', '0'), (10493, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '540', '1340', '3', '109', 'Sardar Patel University', 'I.T', '9.3', '10', '0'), (10494, 'New York University', '20', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '780', '550', '1330', '2.5', '99', 'MU', 'IT', '62', '100', '0'), (10495, 'New York University', '20', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (10496, 'New York University', '20', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2013', '169', '159', '328', '4.5', '114', 'BITS Pilani', 'Computer Science', '7.63', '10', '4'), (10497, 'New York University', '20', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '800', '590', '1390', '3', '100', 'IP University Delhi', 'CSE', '74', '100', '0'), (10498, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '293', '141', '434', '3', 'None', 'dr d.y patil institute of engineering and techonology', 'electronics', '55', '100', '0'), (10499, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Spring ', '2011', '770', '440', '1210', '4', '105', 'MU', 'Information Technology', '65', '100', '0'), (10500, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '158', '324', '3', '111', 'BITS Goa', 'Computer Science', '7.14', '10', '12'), (10501, 'New York University', '20', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '470', '1250', '3.5', '106', 'D J Sanghvi', 'Electronics', '75.18', '100', '0'), (10502, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '530', '1320', '4', '112', 'Heritage Institute of Technology Kolkata', 'Computer Science and Engineering', '9.19', '10', '0'), (10503, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '800', '450', '1250', '3.5', '105', 'JNVU', 'Information Technology', '69', '100', '0'), (10504, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '169', '156', '325', '4', '107', 'NIT Tirchy', 'ECE', '7.95', '10', '14'), (10505, 'New York University', '20', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '530', '1320', '3', '100', 'University of Mumbai', 'EXTC', '70', '100', '0'), (10506, 'New York University', '20', 'Admit', 'MS', 'Management Information System', 'Fall ', '2013', '155', '155', '310', '3', '105', 'Atharva College', 'electronics & telecommunication', '65.2', '100', '0'), (10507, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '800', '480', '1280', 'None', '110', 'BITS Pilani', '0', '6.5', '10', '0'), (10508, 'New York University', '20', 'Admit', 'MS', 'Information Technology', 'Spring ', '2013', '800', '450', '1250', '4', '108', 'Nirma Institute of Technology', 'IT', '7.78', '10', '0'), (10509, 'New York University', '20', 'Admit', 'MS', 'CS / SE / IT / MIS', 'Fall ', '2013', '164', '166', '330', '4', '119', 'WBUT', 'CSE', '7.83', '10', '0'), (10510, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '770', '600', '1370', '4', '114', 'Anna University', 'ECE', '78', '100', '0'), (10511, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Spring ', '2012', '750', '550', '1300', '3.5', '106', 'MU', 'Computer', '55.6', '100', '0'), (10512, 'New York University', '20', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '165', '163', '328', '4', '115', 'Pune University', 'Computer Engineering', '75.53', '100', '0'), (10513, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '161', '152', '313', '4', '110', 'JUIT', 'CSE', '8', '10', '0'), (10514, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '160', '146', '306', '3.5', '106', 'Madras Institute of Technology', 'Information Technology', '8.2', '10', '54'), (10515, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '530', '1310', '3.5', '110', 'GITAM', 'CSE', '8.22', '10', '0'), (10516, 'New York University', '20', 'Admit', 'MS', 'Computational Biology', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'Master of Technology Anticipated graduation July 2013 Jawaharlal Nehru Univesity ', 'School of computational and systems biology', '8.15', '10', '0'), (10517, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '154', '317', '3', '101', 'MU', 'Computer Engineering', '76', '100', '0'), (10518, 'New York University', '20', 'Admit', 'MS', 'CS / SE / IT / MIS', 'Spring ', '2016', '164', '148', '312', '4', '103', 'VTU', 'CS', '63', '100', '68'), (10519, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '163', '160', '323', '3', '109', 'IIIT Hyderabad', 'Electronics & Communication', '7.6', '10', '0'), (10520, 'New York University', '20', 'Admit', 'MS', 'Information Systems', 'Spring ', '2015', '165', '155', '320', '3', '102', 'Hi-Tech College of Engineering and Technology', 'Computer Science', '67.26', '100', '54'), (10521, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '160', '324', '3', '108', 'WBUT', 'CSE', '8.19', '10', '42'), (10522, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '164', '148', '312', 'None', '110', 'University of Mumbai', 'Information Technology', '76.4', '100', '0'), (10523, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Spring ', '2015', '165', '152', '317', '3.5', '106', 'MNNIT', 'Civil Engineering', '7.1', '10', '0'), (10524, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '161', '147', '308', '3.5', '113', 'MSRIT', 'Information Science', '9.31', '10', '24'), (10525, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '163', '145', '308', '3', '93', 'Chitkara University', 'CSE', '7.05', '10', '0'), (10526, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '162', '148', '310', '4.5', '7', 'Manipal Institue of Technology', 'IT', '7.62', '10', '60'), (10527, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '800', '600', '1400', '3.5', '108', 'University of Pune', 'Computer Science', '71', '100', '0'), (10528, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Spring ', '2013', '159', '149', '308', '3', '108', 'Mody Institute of Technology and Science', 'Electronics and Communications', '6.9', '10', '0'), (10529, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '170', '157', '327', '4.5', '111', 'SASTRA', 'CS', '8.14', '10', '24'), (10530, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '470', '1260', '3', 'None', 'Techno India Salt Lake Kolkata', 'Electronics and Instrumentation Engineering', '8.4', '10', '0'), (10531, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '154', '320', '3.5', '107', 'D. A. V. V.', 'Information Technology', '65.03', '100', '0'), (10532, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '165', '151', '316', '3.5', '100', 'None', '0', '71.75', '100', '42'), (10533, 'New York University', '20', 'Admit', 'MS', 'MS Analytics/ MIS', 'Fall ', '2013', '161', '156', '317', '3.5', '105', 'Nagpur University', '0', '75.5', '10', '0'), (10534, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '800', '600', '1400', '4.5', '110', 'Pune University', 'Electronics', '54', '100', '0'), (10535, 'New York University', '20', 'Admit', 'MS', 'Information Systems', 'Spring', 'None', '800', '630', '1430', '3', '105', 'PEC University of Technology', 'Electrical', '8.69', '10', '0'), (10536, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '740', '550', '1290', '4', '101', 'Gujarat Technological University', 'Computer Engineering', '3.97', '4', '0'), (10537, 'New York University', '20', 'Admit', 'MS', 'Finance', 'Fall ', '2013', '800', '600', '1400', '4', '104', 'NIT', 'Civil', '7.8', '10', '0'), (10538, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '750', '640', '1390', '4', '267', 'SIES Graduate School of Technology', 'COMPUTER', '60', '100', '0'), (10539, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '550', '1320', '3.5', '108', 'VTU', 'Electronics', '68', '100', '0'), (10540, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '650', '1430', '4.5', '116', 'Pt. Ravishankar Shukla University', 'Computer Science & Engineering', '7.92', '10', '0'), (10541, 'New York University', '20', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2014', '168', '152', '320', '3', '107', 'NIT Tirchy', 'EEE', '7.61', '10', '36'), (10542, 'New York University', '20', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2015', '159', '152', '311', '3.5', '100', 'None', 'Civil Engineering', '71.9', '100', '8'), (10543, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '168', '152', '320', 'None', 'None', 'JSS Noida', 'Information Technology', '70', '100', '33'), (10544, 'New York University', '20', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '164', '156', '320', '3.5', 'None', 'Amrita School of Engineering', 'Mechanical Engineering', '6.5', '10', '19'), (10545, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '420', '1220', '4', '108', 'MU', 'Computer Engineering', '74.6', '100', '0'), (10546, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '550', '1330', '3', '104', 'I.E.T D.A.V.V.', 'Computer Engineering', '69.8', '100', '0'), (10547, 'New York University', '20', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '164', '147', '311', '4', '103', 'MU', 'Electronics', '60', '100', '42'), (10548, 'New York University', '20', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '800', '610', '1410', '3', '104', 'MU', 'Information Technology', '77', '100', '0'), (10549, 'New York University', '20', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '147', '136', '283', '3.5', '107', 'Dayananda Sagar College of Engineering', 'Electronics and communication', '65', '100', '0'), (10550, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '730', '550', '1280', '3.5', '105', 'IGIT', 'CSE', '73.8', '100', '0'), (10551, 'New York University', '20', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (10552, 'New York University', '20', 'Admit', 'MS', 'Marketing Communication', 'Fall ', '2012', '760', '560', '1320', '3.5', '106', 'D J Sanghvi', 'Electronics', '60.7', '100', '0'), (10553, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '700', '400', '1100', 'None', '95', 'JMIT Radaur', 'CS', '71', '100', '0'), (10554, 'New York University', '20', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '157', '319', '3', '112', 'Nirma Institute of Technology', 'Instrumentation and Control', '7.8', '10', '12'), (10555, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '161', '326', '4', '118', 'University of Mumbai', 'Information Technology', '69.63', '100', '0'), (10556, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '164', '152', '316', '3.5', '114', 'VIT', 'B.Tech - IT', '8.2', '10', '0'), (10557, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '149', '311', '3.5', '91', 'SSN College of Engineering', 'Computer Science', '7.2', '10', '0'), (10558, 'New York University', '20', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', 'None', 'None', '0', 'None', '106', 'GITAM', 'Electronics and Communication', '7.15', '10', '0'), (10559, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '800', '600', '1400', '3', 'None', 'VTU', 'Computer Science', '79', '100', '0'), (10560, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '169', '160', '329', '5', '114', 'Sardar Patel College of Engineering', 'Information Technology', '62', '100', '0'), (10561, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '510', '1310', '4', '105', 'IIT Delhi', 'Chemical Engg', '6.7', '10', '0'), (10562, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '168', '157', '325', '4', '109', 'Anna University', 'Information Technology', '7.99', '10', '51'), (10563, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2015', 'None', 'None', '0', 'None', '100', 'VIT', 'E.C.E', '8.64', '10', '0'), (10564, 'New York University', '20', 'Admit', 'MS', 'Technology Management', 'Fall ', '2015', '158', '154', '312', 'None', '102', 'Osmania University', 'Mechanical Engineering', '76', '100', '0'), (10565, 'New York University', '20', 'Admit', 'MS', 'MIS/CS', 'Spring ', '2015', '162', '162', '324', '5', 'None', 'Guru Gobind Singh Indraprashta University', 'Computer Science Engineering', '78', '100', '52'), (10566, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '660', '1460', '4.5', '108', 'Techno. Inst. of Tech. Bhopal', 'Computer Science', '76', '100', '0'), (10567, 'New York University', '20', 'Admit', 'MS', 'MIS-management related courses', 'Fall ', '2012', '800', '710', '1510', '5.5', '116', 'NSIT', 'Information Technology', '71.2', '100', '0'), (10568, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Spring ', '2012', '800', '540', '1340', '3', '101', 'Ajay Kumar Garg Engineering College', 'CS', '78.6', '100', '0'), (10569, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '600', '800', '1400', '3.5', '110', 'MU', 'Comp Engg', '68.67', '100', '0'), (10570, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '167', '151', '318', '3', '7', 'Manipal Institue of Technology', 'ICT', '8', '10', '0'), (10571, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '640', '1410', '3', '101', 'University of Mumbai', 'Computer Science', '66.2', '100', '0'), (10572, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '800', '700', '1500', 'None', '101', 'CEG', 'MSc Computeer Science', '9.02', '10', '32'), (10573, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '800', '600', '1400', '4', '110', 'Manipal Institue of Technology', 'Electronics and Communication', '8.49', '10', '0'), (10574, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '50', '35', '85', '5', '112', 'MU', 'Electronics', '61', '100', '0'), (10575, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '170', '162', '332', 'None', '116', 'Dhirubhai Ambani Institute of Information & Communication Technology', 'ICT', '7.32', '10', '0'), (10576, 'New York University', '20', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Spring ', '2011', '760', '660', '1420', '3.5', '109', 'Devi Ahilya University', 'Computer Science', '7.76', '10', '0'), (10577, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '170', '154', '324', '3', '100', 'Anna University', 'CS', '75', '100', '36'), (10578, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Spring ', '2015', '165', '145', '310', '3', 'None', 'Pune University', 'ECE', '66', '100', '62'), (10579, 'New York University', '20', 'Admit', 'MS', 'Management Information System', 'Fall ', '2015', '158', '167', '325', '3', '105', 'Cochin University of Science and Technology', 'Electrical and Electronics Engineering', '67.5', '100', '57'), (10580, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '166', '161', '327', '3', '111', 'VTU', 'Computer Science', '65', '100', '0'), (10581, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '161', '329', '3.5', '113', 'Jaypee Institute of Information Technology', 'Computer Science & IT', '8.3', '10', '0'), (10582, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '800', '470', '1270', 'None', '94', 'VTU', 'INFORMATION SCIENCE', '80', '100', '0'), (10583, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '157', '322', '3.5', '105', 'University of Mumbai', 'Computer Engineering', '69', '100', '0'), (10584, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '161', '153', '314', 'None', 'None', 'UPTU', 'Computer Science', '75', '100', '0'), (10585, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '730', '650', '1380', '4', '108', 'MU', 'Computer Engineering', '58', '100', '0'), (10586, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '660', '1460', '3', '104', 'NSIT', 'IT', '69', '100', '0'), (10587, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '167', '156', '323', '4', '107', 'SRM', 'CSE', '7.8', '10', '10'), (10588, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '630', '1420', '3', '98', 'VESIT', 'Information Technology', '73', '100', '0'), (10589, 'New York University', '20', 'Admit', 'MS', 'CS / MIS', 'Fall ', '2013', '162', '158', '320', '4', '105', 'GGSIPU', 'IT', '70.25', '100', '0'), (10590, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '165', '152', '317', '3', '111', 'Netaji Subhas Institute of Technology', 'Computer Engineering', '73.5', '100', '0'), (10591, 'New York University', '20', 'Admit', 'MS', 'Management Information System', 'Fall ', '2014', '162', '162', '324', '4', '108', 'JNTU', 'EIE', '67', '100', '0'), (10592, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '162', '150', '312', '3.5', '105', 'PESIT', 'Computer Science', '79.3', '100', '0'), (10593, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '166', '160', '326', '3.5', '113', 'Manipal Institue of Technology', 'Computer Science & Engineering', '7.14', '10', '0'), (10594, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '600', '1370', '4', '110', 'None', '0', '7.46', '10', '0'), (10595, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '155', '319', '3.5', '105', 'NMIMS', 'Computer Science', '3.26', '4', '0'), (10596, 'New York University', '20', 'Admit', 'MS', 'Microbiology', 'Fall ', '2011', '770', '580', '1350', '3.5', '111', 'Allahabad Agriculture University', 'Molecular and Cellular Engg', '9.74', '10', '0'), (10597, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '800', '640', '1440', '5.5', '287', 'MU', 'IT', '62', '100', '0'), (10598, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '158', '147', '305', '3', '98', 'PESIT', 'CS', '8.16', '10', '0'), (10599, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '750', '500', '1250', '4', '101', 'University of Mumbai', 'Computers', '66.2', '100', '0'), (10600, 'New York University', '20', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '169', '154', '323', '4', '117', 'Netaji Subhas Institute of Technology', 'Electronics and Communication', '8.2', '10', '0'), (10601, 'New York University', '20', 'Admit', 'MS', 'Management of Technology', 'Fall ', '2015', '158', '146', '304', '4', '100', 'VESIT', 'Electronics', '61.6', '100', '0'), (10602, 'New York University', '20', 'Admit', 'MS', 'Management of Technology', 'Fall ', '2012', '780', '380', '1160', '3', '103', 'CEG', 'Comp Science dept', '7', '10', '0'), (10603, 'New York University', '20', 'Admit', 'MS', 'Information Systems', 'Spring ', '2012', '800', '340', '1140', '3.5', '105', 'PICT', 'Information Technology', '61', '100', '0'), (10604, 'New York University', '20', 'Admit', 'MS', 'Human Resources', 'Fall ', '2011', '650', '570', '1220', '3.5', '113', 'University of Mumbai', 'Management', '67', '100', '0'), (10605, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '740', '630', '1370', '3.5', '112', 'VTU', 'Information Science', '64', '100', '0'), (10606, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '630', '1390', '4.5', '114', 'NMIMS', 'Computer Science', '3.24', '4', '0'), (10607, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '760', '620', '1380', '3', '96', 'Panjab University', 'Computer Science', '80.67', '100', '0'), (10608, 'New York University', '20', 'Admit', 'MS', 'CS / MIS', 'Fall ', '2013', '790', '480', '1270', '3', '100', 'Sir MVIT', 'CS', '75', '100', '0'), (10609, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '650', '1400', '4', '114', 'Anna University', 'CS', '75.3', '100', '0'), (10610, 'New York University', '20', 'Admit', 'MS', 'Business Analytics', 'Fall ', '2015', '154', '156', '310', '3', '110', 'Bangalore Institute of Technology', 'electronics', '66', '100', '0'), (10611, 'New York University', '20', 'Admit', 'MS', 'Management Information System', 'Fall ', '2014', '163', '153', '316', '4.5', '108', 'H B T I Kanpur India', 'Food Tech', '7.3', '100', '0'), (10612, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Spring ', '2011', '770', '600', '1370', '4.5', '116', 'Nirma Institute of Technology', 'EC', '7.96', '10', '0'), (10613, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '680', '1470', '3', '107', 'University of Mumbai', 'i.t.', '65.94', '100', '0'), (10614, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '780', '650', '1430', '4', '111', 'VESIT', 'EXTC', '0', '0', '0'), (10615, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '164', '163', '327', 'None', '117', 'NIT Calicut', 'Computer Science', '7.85', '10', '16'), (10616, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '800', '590', '1390', '2.5', '107', 'TSEC', 'Computer Engineering', '61', '100', '0'), (10617, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '164', '156', '320', '4.5', '109', 'Bharati Vidyapeeth', 'Electronics', '63.6', '100', '0'), (10618, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '161', '152', '313', '3.5', '105', 'None', 'CSE', '7.9', '10', '0'), (10619, 'New York University', '20', 'Admit', 'MS', 'advertising', 'Fall ', '2014', 'None', 'None', '0', 'None', 'None', 'Osmania University', 'Mathematics Statisitcs and Computer Science', '3.92', '10', '0'), (10620, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '520', '1320', '3.5', '94', 'Sona College', 'Information Technology', '80', '100', '0'), (10621, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '590', '1390', '4', '114', 'NIT Tirchy', 'ECE', '8.75', '10', '0'), (10622, 'New York University', '20', 'Admit', 'MS', 'None', 'Fall ', '2015', 'None', 'None', '0', 'None', '110', 'VTU', 'Electrical & Electronics', '72', '100', '0'), (10623, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '540', '1290', '3', '93', 'CEG', 'Information Technology', '7.8', '10', '0'), (10624, 'New York University', '20', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '167', '154', '321', '3', '110', 'Amity School of Engineering and Technology', 'Instrumentation & Control Engineering', '66', '100', '0'), (10625, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '136', '139', '275', '1.5', 'None', 'JNTU', 'Computer science', '6.02', '10', '0'), (10626, 'New York University', '20', 'Admit', 'MS', 'Information Systems', 'Fall ', '2014', '161', '158', '319', '4', '110', 'CEG', 'Computer Science and Engineering', '9.35', '10', '0'), (10627, 'New York University', '20', 'Admit', 'MS', 'Electrical/ Art & Technology', 'Fall ', '2012', '166', '155', '321', '4', '113', 'University of Pune', 'E&TC;', '58', '100', '0'), (10628, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Spring ', '2012', '750', '600', '1350', '3', '105', 'None', '0', '8.5', '10', '0'), (10629, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '168', '151', '319', '3.5', '113', 'MU', 'Computer Engineering', '71.3', '100', '0'), (10630, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '155', '316', '4', '113', 'Atharva College', 'Information Technology', '64.13', '100', '0'), (10631, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '800', '430', '1230', '3', '103', 'Sri Venkateswara College of Engineering', 'EEE', '68', '100', '0'), (10632, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Spring ', '2012', 'None', 'None', '0', 'None', 'None', 'Pune University', '0', '73', '100', '0'), (10633, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '164', '155', '319', '4.5', '108', 'NIT Silchar', 'Computer Science', '8.53', '10', '20'), (10634, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '770', '710', '1480', '4', '110', 'MU', 'Electronics', '63', '100', '0'), (10635, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '167', '154', '321', '3', '112', 'Jaypee Institute of Information Technology', 'I.T', '8.2', '10', '0'), (10636, 'New York University', '20', 'Admit', 'MS', 'Robotics', 'Fall ', '2015', '168', '161', '329', '4', '109', 'CoE Trivandrum', 'EE', '8.29', '10', '0'), (10637, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '740', '400', '1140', '3', '97', 'MSRIT', 'IT', '68', '100', '0'), (10638, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '151', '319', '3.5', '108', 'Netaji Subhas Institute of Technology', 'Computers Engineering', '67.2', '100', '21'), (10639, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '161', '151', '312', '3', '103', 'Punjab Technical University', 'Information Technology', '77', '100', '42'), (10640, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '660', '1460', '4.5', '113', 'MU', 'Computer Engg', '63.5', '100', '0'), (10641, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '800', '740', '1540', '5.5', '290', 'MU', 'computers', '60', '100', '0'), (10642, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '166', '159', '325', '4', '106', 'D.K.T.E. (Shivaji University Maharashtra)', 'CS', '66', '100', '0'), (10643, 'New York University', '20', 'Admit', 'MS', 'Human Computer Interaction', 'Fall ', '2014', '161', '156', '317', '4', '113', 'PESIT', 'Computer Science', '79.9', '100', '0'), (10644, 'New York University', '20', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2013', '168', '156', '324', '3.5', '114', 'ITM University', 'Computer Science', '8.3', '10', '0'), (10645, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '780', '550', '1330', '3', '101', 'Nagpur University', 'Computer Science', '73.56', '100', '0'), (10646, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '640', '1400', '4', '109', 'UPTU', 'Computer Science', '78', '100', '0'), (10647, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '163', '148', '311', 'None', '106', 'Mody Institute of Technology and Science', 'Computer Science', '9.76', '10', '58'), (10648, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '167', '150', '317', '4', '104', 'Manipal Institue of Technology', 'Computer Science and Engineering', '8.41', '10', '29'), (10649, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '530', '1330', '3.5', '109', 'MU', 'Computer', '67', '100', '0'), (10650, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '780', '580', '1360', '4', '104', 'Vishwakarma Institute of Technology', 'Computer Science', '64.5', '100', '0'), (10651, 'New York University', '20', 'Admit', 'MS', 'Information Management', 'Fall ', '2015', '163', '153', '316', '3.5', '103', 'None', '0', '0', '0', '0'), (10652, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '620', '1420', '4', '114', 'Anna University', 'CSE', '77', '100', '0'), (10653, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '157', '325', '3', '103', 'Manipal Institue of Technology', 'Information technology', '7.75', '10', '0'), (10654, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '580', '1380', '3', '104', 'Nirma Institute of Technology', 'Computer Science', '8.57', '10', '0'), (10655, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '660', '1460', '4', '113', 'Guru Gobind Singh Indraprashta University', 'B.Tech (CSE)', '80.3', '100', '0'), (10656, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '151', '315', '3.5', '110', 'UPTU', 'CSE', '84.5', '100', '0'), (10657, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '790', '580', '1370', '3.5', '114', 'NIT Warangal', 'EEE', '7.57', '10', '0'), (10658, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '700', '800', '1500', '4.5', '112', 'University of Pune', 'Information Technology', '72', '100', '0'), (10659, 'New York University', '20', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (10660, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '750', '610', '1360', '3', '109', 'VJTI', 'Computer Engineering', '8.6', '10', '0'), (10661, 'New York University', '20', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '790', '450', '1240', '4', '107', 'NMIMS', 'Computer Science', '3.62', '4', '0'), (10662, 'New York University', '20', 'Reject', 'MS', 'analytics', 'Fall ', '2014', '166', '160', '326', '3.5', '109', 'None', 'computer science', '7.94', '10', '0'), (10663, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '160', '152', '312', '3.5', '100', 'CSVTU', 'Computer Science', '73', '100', '0'), (10664, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '164', '155', '319', '3', '111', 'Amity University', 'Computer Science', '7.22', '10', '36'), (10665, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '800', '570', '1370', '3.5', '100', 'MU', 'Computer Engineering', '0', '0', '0'), (10666, 'New York University', '20', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '168', '147', '315', '3.5', '101', 'VIT University', 'CSE', '9.14', '10', '0'), (10667, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '800', '530', '1330', '4', '110', 'IIT BHU', 'CSE', '7.96', '100', '0'), (10668, 'New York University', '20', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '730', '450', '1180', '3', '104', 'VTU', 'Electrical & Electronics', '61', '100', '0'), (10669, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '164', '157', '321', '3', '105', 'VTU', 'Electrical and Electronics', '73.26', '100', '24'), (10670, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '690', '1490', '4.5', '101', 'University of Mumbai', 'Computers', '63', '100', '0'), (10671, 'New York University', '20', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '157', '156', '313', '3.5', '107', 'VNR VJIET', 'ece', '67', '100', '0'), (10672, 'New York University', '20', 'Reject', 'MS', 'MIS', 'Fall ', '2011', '720', '530', '1250', '4', '107', 'Pune University', 'Computer', '0', '0', '0'), (10673, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '147', '150', '297', 'None', '93', 'DEVI AHILYA VISHWAVIDYALAYA INDORE', 'IIPS', '9.39', '10', '0'), (10674, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '168', '151', '319', '3.5', 'None', 'VJTI', 'Computer Engg', '8.3', '10', '0'), (10675, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '740', '640', '1380', '3', '87', 'MU', 'Computer science', '66', '100', '0'), (10676, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '158', '151', '309', '3.5', '110', 'MGU', 'CSE', '71', '100', '0'), (10677, 'New York University', '20', 'Reject', 'MS', 'MIS-management related courses', 'Fall ', '2012', '160', '148', '308', '3', '106', 'Jaypee Institute of Information Technology', 'Information Technology', '6.1', '10', '0'), (10678, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '480', '1280', '3', '98', 'MU', 'computer', '64.3', '100', '0'), (10679, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '167', '143', '310', '3.5', '98', 'St Francis Institute of Technology - Mumbai Unversity', 'Computer Engineering', '70', '100', '0'), (10680, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '148', '309', '4', '107', 'Charotar University of Science and Technology', 'Information Technology', '8.3', '10', '0'), (10681, 'New York University', '20', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '650', '650', '1300', '3', '102', 'MU', 'Information Technology', '63', '100', '0'), (10682, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '168', '153', '321', '3.5', 'None', 'Mahrishi Dayanand University', 'Computer Science and Engineering', '69.42', '100', '0'), (10683, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '760', '630', '1390', '3.5', '111', 'University of Mumbai', 'Computer Engineering', '67', '100', '0'), (10684, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '740', '550', '1290', '3.5', '104', 'MU', 'computer', '67.23', '100', '0'), (10685, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '150', '313', '3.5', '110', 'K.I.E.T.', 'Computer Science', '63', '100', '0'), (10686, 'New York University', '20', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '165', '158', '323', '3.5', '111', 'MU', 'Computer Science', '66.12', '100', '0'), (10687, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2010', '780', '340', '1120', '3', '93', 'ITM Gurgaon', 'CSE', '72', '100', '0'), (10688, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '156', '323', '4', '116', 'University of Mumbai', 'Computer Engineering', '65.55', '100', '16'), (10689, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '152', '311', '4', '110', 'MU', 'Computer engg', '62', '100', '0'), (10690, 'New York University', '20', 'Reject', 'MS', 'CS', 'Fall ', '2013', '160', '152', '312', 'None', '98', 'MU', 'information technology', '65', '100', '0'), (10691, 'New York University', '20', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '170', '148', '318', '3', '100', 'PEC University of Technology', 'Electrical Engg.', '7', '10', '0'), (10692, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '800', '510', '1310', '3.5', '108', 'Bhilai Institute of Technology', 'Electrical Engineering', '66.2', '100', '0'), (10693, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '149', '308', '3', '102', 'MU', 'computer engg', '66', '100', '0'), (10694, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '790', '580', '1370', '4', 'None', 'VTU', 'Computer Science', '8.11', '10', '0'), (10695, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '680', '430', '1110', '3.5', '102', 'VCET', 'Computer Science', '63', '100', '0'), (10696, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '740', '620', '1360', '4', '106', 'Anna University', 'computer science', '81', '100', '0'), (10697, 'New York University', '20', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '750', '490', '1240', '3', '104', 'MU', 'Information Technology', '62', '100', '0'), (10698, 'New York University', '20', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '156', '158', '314', '4', '105', 'KIIT', 'Computer Science', '7.16', '10', '31'), (10699, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '159', '150', '309', '4', '105', 'GITAM', 'ECE', '84', '100', '87'), (10700, 'New York University', '20', 'Reject', 'MS', 'MIS', 'Spring ', '2012', '800', '560', '1360', '4', '107', 'Kakatiya University', 'E.E.E', '67', '100', '0'), (10701, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '740', '620', '1360', '4.5', '117', 'Thadomal Shahani Engineering College', 'Information Technology', '60', '100', '0'), (10702, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '160', '146', '306', '3', '100', 'GGSIPU', 'Computer Sceince & Engg.', '77', '100', '0'), (10703, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '157', '315', '3.5', '101', 'Anna University', 'Information Technology', '8.18', '100', '21'), (10704, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '790', '610', '1400', '3.5', '117', 'MU', 'Information Technology', '66', '100', '0'), (10705, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '730', '500', '1230', '2.5', '87', 'St Francis Institute of Technology - Mumbai Unversity', 'Computers', '60', '100', '0'), (10706, 'New York University', '20', 'Reject', 'MS', 'CS MIS', 'Fall ', '2012', '160', '148', '308', '3.5', '106', 'Fr Agnels Vashi (University of Mumbai)', 'Computer', '65', '100', '0'), (10707, 'New York University', '20', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '160', '153', '313', '4', '111', 'Anna University', '0', '9.2', '10', '0'), (10708, 'New York University', '20', 'Reject', 'MS', 'CS', 'Fall ', '2012', '162', '152', '314', '4', '101', 'VESIT', 'Information Technology', '65.6', '100', '0'), (10709, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '540', '1330', '3', '102', 'University of Pune', 'Computer Engineering', '57.8', '100', '0'), (10710, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Spring ', '2016', '163', '163', '326', '4', '110', 'Goa University', 'Computer Engineering', '73.72', '100', '46'), (10711, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '800', '670', '1470', '3.5', '104', 'Pune University', 'Computer Engineering', '66', '100', '0'), (10712, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '159', '326', '3.5', '105', 'Dayananda Sagar College of Engineering', 'Information Science', '75', '100', '52'), (10713, 'New York University', '20', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '750', '550', '1300', '4', '108', 'YMCA', 'Computer Engineering', '76', '100', '0'), (10714, 'New York University', '20', 'Reject', 'MS', 'Biochemistry and Molecular biology', 'Fall ', '2011', '710', '540', '1250', '4.5', '110', 'Pune University', '0', '78', '100', '0'), (10715, 'New York University', '20', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '159', '150', '309', '3.5', '103', 'MU', 'Computer Science', '65', '100', '0'), (10716, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '610', '1410', '3.5', '112', 'Maharishi Dayanand University', 'Computer Science', '71', '100', '0'), (10717, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '160', '147', '307', '3', '95', 'Jaypee Institute of Information Technology', 'CSE', '72.5', '100', '0'), (10718, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '154', '318', '4', '114', 'VTU', 'CSE', '7.69', '10', '24'), (10719, 'New York University', '20', 'Reject', 'MS', 'Information technology management', 'Fall ', '2012', '770', '530', '1300', '4', '102', 'Nagpur University', 'Electronics Engineering', '65', '100', '0'), (10720, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '153', '317', '3', '103', 'SVITS', 'Computer Science', '73', '100', '0'), (10721, 'New York University', '20', 'Reject', 'MS', 'Electrical Engineering & Information Technology', 'Spring ', '2015', '164', '144', '308', '4', '97', 'INSTITUTE OF ENGINEERING AND TECHNOLOGY', 'ELECTRONICS AND TELECOMMUNICATION', '73.4', '100', '3'), (10722, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '380', '1180', '3', '94', 'MDU', 'Computer Science', '61', '100', '0'), (10723, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '170', '168', '338', '4.5', '116', 'Pune University', 'B.E (Computer Science)', '57', '100', '15'), (10724, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '161', '162', '323', '4', '110', 'VTU', 'Electronics and Communication', '62.95', '100', '0'), (10725, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '163', '156', '319', '3', '111', 'BITS Pilani', 'Information Systems', '6.55', '10', '60'), (10726, 'New York University', '20', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '158', '149', '307', '3.5', '104', 'MPSTME NMIMS University Mumbai', 'Computer Engineering', '2.99', '4', '0'), (10727, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Spring ', '2016', '165', '145', '310', '3.5', '100', 'MU', 'Extc', '66', '100', '0'), (10728, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '550', '1350', '4.5', '108', 'Don Bosco Institute of Technology', 'Computers', '66', '100', '0'), (10729, 'New York University', '20', 'Reject', 'MS', 'Computational Science', 'Fall ', '2013', '155', '158', '313', 'None', '103', 'D.V.R College of Engineering and Technology', 'Information Technology', '67.49', '100', '0'), (10730, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '770', '530', '1300', '3', '101', 'R.V.R&J.C-ANU;', 'CSE', '85.72', '100', '0'), (10731, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '157', '152', '309', '3.5', '100', 'Rajasthan Technical University', 'Computer Science', '75', '100', '0'), (10732, 'New York University', '20', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '159', '160', '319', '3.5', '115', 'None', 'Computers', '7.84', '10', '0'), (10733, 'New York University', '20', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '159', '157', '316', '3', '105', 'MU', 'Information Technology', '61.46', '100', '0'), (10734, 'New York University', '20', 'Reject', 'MS', 'mba', 'Fall', 'None', '1310', '550', '1860', '3.5', 'None', 'SASTRA', 'COMPUTER SCIENCE', '7.8', '10', '0'), (10735, 'New York University', '20', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '770', '690', '1460', '3', '100', 'Punjab Technical University', 'CS', '85.8', '100', '0'), (10736, 'New York University', '20', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '158', '146', '304', '3', '91', 'Kurukshetra University', 'Dept. of Instrumentation', '7.3', '10', '0'), (10737, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '159', '151', '310', '4', '107', 'Bangalore Institute of Technology', 'ISE', '71.76', '100', '28'), (10738, 'New York University', '20', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '155', '147', '302', '3', '95', 'University of Mumbai', 'Computer Engg', '62', '100', '0'), (10739, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '420', '1200', '3', '91', 'K J Somaiya College of Engiineering', 'Computer Science', '0', '0', '0'), (10740, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '161', '155', '316', '4', 'None', 'Indira Gandhi Institute Of Technology', 'Computer Sciences', '81', '100', '0'), (10741, 'New York University', '20', 'Reject', 'MS', 'Business', 'Fall ', '2012', '770', '550', '1320', '4', '105', 'Vidyalankar Institute of Technology', 'Electronics', '58', '100', '0'), (10742, 'New York University', '20', 'Reject', 'MS', 'Computational Biology', 'Fall ', '2012', '159', '165', '324', '4', '118', 'MSRIT', 'Computer Science and Engineering', '74', '100', '0'), (10743, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '170', '150', '320', '3', '104', 'Jaypee Institute of Information Technology', 'Computer Science Engineering', '71', '100', '0'), (10744, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '159', '322', '4.5', '111', 'BITS Hyderabad', 'Electronics and Communication', '7.63', '10', '30'), (10745, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '730', '1530', '4', '120', 'Random Anna University Affiliated College', 'Computer Science', '8.2', '10', '0'), (10746, 'New York University', '20', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2013', '159', '150', '309', '3', '107', 'Vidyalankar Institute of Technology', 'computer science', '65', '100', '0'), (10747, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '790', '710', '1500', '4.5', 'None', 'D J Sanghvi', 'IT', '67', '100', '0'), (10748, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '156', '156', '312', '4', '97', 'Pune University', 'Information Technology', '53.01', '100', '19'), (10749, 'New York University', '20', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '780', '500', '1280', '3', '108', 'VTU', 'Information science', '73', '100', '0'), (10750, 'New York University', '20', 'Reject', 'MS', 'CS MIS', 'Fall ', '2013', '161', '152', '313', '3.5', '97', 'MU', 'Electrical & Electronics', '64', '100', '0'), (10751, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '710', '1510', '3.5', '112', 'MU', 'Computer Engg', '61.5', '100', '0'), (10752, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '700', '570', '1270', '3.5', '107', 'PICT', 'Computer Engineering', '58', '100', '0'), (10753, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '166', '161', '327', '4', '116', 'JNTU', 'Mechanical Engineering', '69.34', '100', '24'), (10754, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '166', '153', '319', '3.5', '95', 'BITS Pilani', 'Computer Science', '6.5', '10', '0'), (10755, 'New York University', '20', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '160', '145', '305', '3', '103', 'Anna University', 'Electronics & Communication', '65', '100', '0'), (10756, 'New York University', '20', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '157', '156', '313', '3', '109', 'MU', 'Computer', '56', '100', '48'), (10757, 'New York University', '20', 'Reject', 'MS', 'MIS', 'Fall', 'None', '720', '580', '1300', '4', '105', 'None', 'Information technology', '71', '100', '0'), (10758, 'New York University', '20', 'Reject', 'MS', 'MIS', 'Fall', 'None', '159', '145', '304', '3.5', '105', 'MITCOE Pune University', 'Information Technology', '65.56', '100', '0'), (10759, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '170', '161', '331', '5', '113', 'Manipal Institue of Technology', 'CSE', '7.73', '10', '31'), (10760, 'New York University', '20', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '159', '154', '313', '4', '111', "St Joseph's College of Engineering", 'Computer Science and Engineering', '86', '100', '0'), (10761, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '770', '480', '1250', '4', '102', 'Fr. Agnel Bandra', 'Computer Engg', '73', '100', '0'), (10762, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '158', '147', '305', 'None', '95', 'VIT University', 'Computer Science', '9.12', '10', '0'), (10763, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '590', '1390', '3', '100', 'Rajiv Gandhi Institute Of Technology', 'Computer Engineering', '62.88', '100', '0'), (10764, 'New York University', '20', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '160', '153', '313', '3.5', '105', 'MRCE - affiliated to MDU', 'electronics and communication', '60', '100', '0'), (10765, 'New York University', '20', 'Reject', 'MS', 'Business Analytics', 'Fall ', '2014', '166', '162', '328', '4', '114', 'Biju Patnaik University of Technology', 'EEE', '8.3', '10', '0'), (10766, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '380', '1180', '3.5', '106', 'Coimbatore Insitute of Technology', 'Comp Sci', '9.24', '10', '0'), (10767, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '330', '1080', '3.5', '93', 'VTU', 'CS', '71.3', '100', '0'), (10768, 'New York University', '20', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '155', '150', '305', '3', '106', 'West Bengal University Of Technology', 'Instrumentation and Control', '8.5', '10', '26'), (10769, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '149', '311', '3', '95', 'MU', 'computer engg', '62', '100', '0'), (10770, 'New York University', '20', 'Reject', 'MS', 'CS', 'Fall ', '2013', '160', '154', '314', '3', '100', 'JNTU', 'Computer science', '75', '100', '0'), (10771, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '740', '620', '1360', '4', 'None', 'Delhi College Of Engineeing', 'Information Technology', '71.32', '100', '0'), (10772, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '152', '315', '4.5', '109', 'Amity School of Engineering and Technology', 'Computer Science', '8', '10', '58'), (10773, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2010', '780', '340', '1120', '3', '93', 'ITM Gurgaon', 'Computer Science Engineering', '72', '100', '0'), (10774, 'New York University', '20', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '800', '530', '1330', '3.5', '104', 'Vidyalankar Institute of Technology', 'Computer Engineering', '58', '100', '0'), (10775, 'New York University', '20', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '163', '153', '316', '4', '103', 'MPSTME NMIMS', 'IT', '3.85', '4', '0'), (10776, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '660', '1460', '4', '112', 'MU', 'Computer Engineering', '67.85', '100', '0'), (10777, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '510', '1300', '3', '98', 'PICT', 'IT', '64', '100', '0'), (10778, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '155', '317', '4', '110', 'Anna University', 'CS', '7.25', '10', '0'), (10779, 'New York University', '20', 'Reject', 'MS', 'Mathematics', 'Fall ', '2014', '169', '156', '325', '4', '108', 'MNNIT', 'Electronics', '8.93', '10', '24'), (10780, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '740', '670', '1410', '3', '110', 'MU', 'IT', '58.9', '100', '0'), (10781, 'New York University', '20', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '156', '154', '310', '3', '105', 'Fr. Conceicao Rodrigues College of Engineering', 'Computer', '62', '100', '0'), (10782, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2007', '690', '370', '1060', '4', '89', 'ACET Nagpur', 'Computer Science', '69.41', '100', '0'), (10783, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '800', '720', '1520', '4', '116', 'NIT Durgapur', 'Computer Science and Engineering', '7.89', '10', '0'), (10784, 'New York University', '20', 'Reject', 'MS', 'CS', 'Fall ', '2014', '161', '155', '316', '3', '115', 'Goa University', 'Computer Engineering', '70', '100', '0'), (10785, 'New York University', '20', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '760', '570', '1330', '4', '111', 'University of Pune', 'Computer Engineering', '59', '100', '0'), (10786, 'New York University', '20', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '158', '149', '307', '3', '92', 'Bangalore University', 'Computer Science', '73', '100', '0'), (10787, 'New York University', '20', 'Reject', 'MS', 'analytics', 'Summer ', '2014', '165', '154', '319', '4', '109', 'Siddaganga Institue of Technology', 'Electronics and Communications Engineering', '8.82', '10', '0'), (10788, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '162', '158', '320', '3.5', '104', 'NIT Jalandhar', 'CSE', '7.73', '10', '0'), (10789, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '700', '440', '1140', '3.5', '99', 'R V College of Engineering', 'ISE', '8.56', '10', '0'), (10790, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '164', '157', '321', '4.5', '109', 'Amrita Vishwa Vidhyapeetham', 'Information Technology', '8.8', '10', '24'), (10791, 'New York University', '20', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '161', '155', '316', 'None', '113', 'MU', 'Computer Engineering', '60', '100', '0'), (10792, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '580', '1380', '4', '117', 'MU', 'Computer Engineering', '73', '100', '0'), (10793, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '160', '150', '310', '3', '100', 'PICT', 'Computer Science', '3.2', '4', '0'), (10794, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2006', '800', '700', '1500', '6', '297', 'SVNIT Surat', 'Computer Engineering', '67', '100', '0'), (10795, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '163', '151', '314', '3.5', 'None', 'PICT', 'computer', '58', '100', '0'), (10796, 'New York University', '20', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '730', '550', '1280', '4', '115', 'PESIT', 'Computer Science', '70', '100', '0'), (10797, 'New York University', '20', 'Reject', 'MS', 'MIS', 'Spring ', '2012', '710', '440', '1150', 'None', '97', 'LNCT', 'Electical and electronics', '74', '100', '0'), (10798, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Spring ', '2011', '700', '320', '1020', '3.5', '91', 'Pune University', 'Computer Engineering', '62', '100', '0'), (10799, 'New York University', '20', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '730', '550', '1280', '3.5', '108', 'VESIT', 'Computer', '69.69', '100', '0'), (10800, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '470', '1270', '3.5', '93', 'SKIT', 'CS', '65', '100', '0'), (10801, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '710', '470', '1180', '3', '92', 'University of Pune', 'Information Technology', '65', '100', '0'), (10802, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '670', '1470', '3.5', '100', 'Jaypee Institute of Information Technology', 'Electronics and Communication', '7.5', '10', '0'), (10803, 'New York University', '20', 'Reject', 'MS', 'Financial Engineering', 'Fall ', '2015', '170', '153', '323', '4', '113', 'Thadomal Shahani Engineering College', 'Information Technology', '66.52', '100', '25'), (10804, 'New York University', '20', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '780', '500', '1280', '3', '108', 'VTU', 'IS', '73', '100', '0'), (10805, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '620', '1390', '4', '98', 'D J Sanghvi', 'IT', '66.58', '100', '0'), (10806, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '510', '1270', '3', '109', 'NIT Raipur', 'CSE', '7.4', '10', '0'), (10807, 'New York University', '20', 'Reject', 'MS', 'Information Systems', 'Fall ', '2012', '730', '640', '1370', '3.5', '115', 'BITS Goa', 'Information Systems', '7.4', '10', '0'), (10808, 'New York University', '20', 'Reject', 'MS', 'Information Systems', 'Fall ', '2012', '780', '630', '1410', '4.5', '99', 'MU', 'computers', '59', '100', '0'), (10809, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '790', '350', '1140', '3', '97', 'Coimbatore Insitute of Technology', 'MSc Software Engineering', '71', '100', '0'), (10810, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '770', '640', '1410', '4', '117', 'Watumull Institute University of Mumbai', 'Computer Science', '53', '100', '0'), (10811, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2007', '750', '350', '1100', '4', '253', 'Pune University', 'Computer Engineering', '54', '100', '0'), (10812, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '690', '610', '1300', '4', '111', 'University of Mumbai', 'Information Technology', '58', '100', '0'), (10813, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '690', '460', '1150', '4.5', '109', 'Datta Meghe College of Engineering', 'Computer Engineering', '57.2', '100', '0'), (10814, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '161', '150', '311', '3', '92', 'CEG', 'Computer science', '7.3', '10', '0'), (10815, 'New York University', '20', 'Reject', 'MS', 'MIS', 'Fall ', '2015', '164', '154', '318', '4', '102', 'University of Mumbai', 'Computers', '60', '100', '18'), (10816, 'New York University', '20', 'Reject', 'MS', 'Data Science', 'Fall', 'None', '166', '155', '321', '4', '109', 'Siddaganga Institue of Technology', 'Electronics & Communication', '71', '100', '0'), (10817, 'New York University', '20', 'Reject', 'MS', 'CS', 'Fall ', '2013', '158', '152', '310', '3', '100', 'MSRIT', 'Information Science', '68', '100', '0'), (10818, 'New York University', '20', 'Reject', 'MS', 'Data Science', 'Fall', '2019', '-1', '-1', '-1', '-1', '97', 'Visvesvaraya Technological University', 'Computer Science', '73', '100', '29'), (10819, 'New York University', '20', 'Reject', 'MS', 'Data Science', 'Fall', '2019', '167', '151', '318', '3.5', '105', 'Vellore Institute of Technology', 'Computer Science', '8.99', '10', '17'), (10820, 'New York University', '20', 'Reject', 'MS', 'Data Science', 'Fall', '2019', '167', '154', '321', '4', '103', 'Acropolis Institute of Technology & Research', 'Information Technology', '7.4', '10', '0'), (10821, 'New York University', '20', 'Reject', 'MS', 'Data Science', 'Fall', '2019', '158', '148', '306', '4', '105', 'KIIT University', 'Computer Science', '8.65', '10', '0'), (10822, 'NYU Tandon School of Engineering', '21', 'Admit', 'MS', 'Computer Science', 'Fall', '2017', '168', '157', '325', '3', '115', 'Gitam University', 'Computer Science', '8.5', '10', '0'), (10823, 'Pennsylvania State University', '22', 'Admit', 'MSc', 'Industrial Engineering', 'Fall', '2017', '170', '155', '325', '3.5', '111', 'Sardar Patel College Of Engineering, (SPCE), Andheri', 'Mechanical Engineering', '8.73', '10', '15'), (10824, 'Rochester Institute of Technology', '23', 'Admit', 'MS', 'Mechanical Engineering', 'Fall', '2016', '170', '156', '326', '3', '104', 'Pdpu', 'Mechanical Engineering', '8.3', '10', '0'))
In [21]:
cursor.execute("Alter table research modify column Research_Name longtext")
Out[21]:
0
In [71]:
cursor.execute("SELECT * from student")

for x in cursor:
    print(x)
(1, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '157', '142', '299', '3.5', '97', 'University of Mumbai', 'Computer Engineering', '6.437', '100', '0')
(2, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(3, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '770', '460', '1230', '3', '105', 'fr.c.r.c.e.(bandra)', 'production engineering', '7.536', '100', '0')
(4, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '152', '311', '3', '94', 'None', 'CS', '3.3', '10', '0')
(5, 'Northeastern University', '1', 'Admit', 'MS', 'Management Information System', 'Fall ', '2014', '158', '144', '302', '3', '100', 'Apeejay College of Engineering', 'ECE', '6.640000000000001', '100', '0')
(6, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '155', '317', '4', 'None', 'RNSIT', 'CS', '7.2', '100', '0')
(7, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '154', '314', '3.5', '108', 'Sri Bhagawan Mahaveer Jain College of Engineering', 'Information Science', '7.3', '100', '0')
(8, 'Northeastern University', '1', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '760', '650', '1410', '3.5', '104', 'Sardar Patel College of Engineering', 'Computer Engineering', '7.590000000000001', '100', '0')
(9, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2015', '164', '152', '316', 'None', '97', 'None', '0', '8.52', '10', '56')
(10, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '760', '680', '1440', '4', '111', 'Fr CRIT Mumbai University', 'Mechanical Engineering', '5.46', '100', '0')
(11, 'Northeastern University', '1', 'Admit', 'MS', 'Information Security', 'Fall ', '2009', '740', '540', '1280', '5', '113', 'VTU', 'CS', '6.7', '100', '0')
(12, 'Northeastern University', '1', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '157', '146', '303', '3', '94', 'IET DAVV', 'Computer Engineering', '7.828', '100', '66')
(13, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '590', '1370', '3.5', '114', 'Manipal Institue of Technology', 'ECE', '8.3', '10', '0')
(14, 'Northeastern University', '1', 'Admit', 'MS', 'computer science / MIS', 'Fall ', '2015', '163', '150', '313', '3.5', 'None', 'K J Somaiya College of Engiineering', 'Information Technology', '6.6', '100', '48')
(15, 'Northeastern University', '1', 'Admit', 'MS', 'Information Security', 'Fall ', '2013', '158', '148', '306', '3', '94', 'Rajasthan Technical University', 'Computer Engineering', '6.7', '100', '0')
(16, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '610', '1410', '3.5', '110', 'UPTU', 'CSE', '7.4', '100', '0')
(17, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '164', '155', '319', '3', '111', 'Amity University', 'Computer Science', '7.22', '10', '36')
(18, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '630', '1390', '3.5', '103', 'Rajiv Gandhi Technical University', 'Electronics and Communication', '7.3', '100', '0')
(19, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '157', '321', '3', '108', 'Guru Gobind Singh Indraprashta University', 'IT', '7', '100', '0')
(20, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '163', '324', '3.5', '109', 'Jaypee Institute of Information Technology', 'Computer Science', '7.3', '10', '0')
(21, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '700', '640', '1340', '3.5', '104', 'MU', 'electronics', '5.9', '100', '0')
(22, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '164', '159', '323', '3.5', '116', 'VIT University', 'Computer Sc & Engg', '8.8', '10', '0')
(23, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '143', '305', '2.5', '96', 'NIT Raipur', 'Electrical', '7.2', '10', '0')
(24, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics and Communication', 'Spring ', '2012', '790', '580', '1370', '4.5', '112', 'Gayatri Vidya Parishad College of Engineering', 'Electronics and Communications Engineering', '6.6', '100', '0')
(25, 'Northeastern University', '1', 'Admit', 'MS', 'Business Analytics', 'Fall ', '2015', '168', '159', '327', '3', '105', 'PESIT', 'Electronics and Communication', '6.72', '10', '30')
(26, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '570', '1370', '3.5', '100', 'MU', 'Computer Engineering', '0', '0', '0')
(27, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '740', '370', '1110', '3.5', '107', 'VTU', 'CSE', '6.6', '100', '0')
(28, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '800', '480', '1280', '4', '104', 'MU', 'Computer Dept.', '6.8', '100', '0')
(29, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '760', '570', '1330', '3', '101', 'MU', 'IT', '5.7', '100', '0')
(30, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '149', '310', '3.5', '89', 'Jaypee Institute of Information Technology', 'Electroincs and Telecommunication', '8.8', '10', '0')
(31, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '165', '153', '318', '3.5', '102', 'Jai Narain Vyas University Jodhpur', 'Electrical Engineering', '6.7', '100', '0')
(32, 'Northeastern University', '1', 'Admit', 'MS', 'CS', 'Fall ', '2012', '800', '700', '1500', '4', 'None', 'University of Mumbai', 'Computer', '6.4', '100', '0')
(33, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '156', '151', '307', '3.5', '106', 'Anna University', 'Information Technology', '7.12', '100', '58')
(34, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '159', '150', '309', '3.5', '106', 'JNTU', 'ece', '7.1', '100', '0')
(35, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2014', '161', '149', '310', '4', '101', 'BITS Pilani', 'Mechanical Eng', '3.4', '4', '36')
(36, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '730', '380', '1110', '4', '95', 'MIT Pune', 'Mechanical Engineering', '7.292', '100', '0')
(37, 'Northeastern University', '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2012', '740', '660', '1400', '3', '90', 'RGTU', 'ECE', '3.6', '4', '0')
(38, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '152', '315', '3', '100', 'SVCE', 'CSE', '7.32', '10', '0')
(39, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '790', '430', '1220', '3.5', 'None', 'COEP', 'Information Technology', '7.94', '10', '0')
(40, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2011', 'None', 'None', '0', 'None', 'None', 'MU', 'electronics and telecom engineering', '0', '0', '0')
(41, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '530', '1320', '3.5', '102', 'Sinhgad College of Engineering', 'Computer', '5.3', '100', '0')
(42, 'Northeastern University', '1', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(43, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '153', '312', '4', '109', 'Amrita School of Engineering', 'Computer Science', '7.69', '10', '0')
(44, 'Northeastern University', '1', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '800', '590', '1390', '3.5', '107', 'UPTU', 'Computer Science', '6.5', '100', '0')
(45, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '165', '161', '326', '5', '112', 'Rajiv Gandhi Prodyogiki Vishwavidyalaya', '0', '7.4', '10', '0')
(46, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '600', '1400', '4', '103', 'University of Mumbai', 'Information Technology', '6.8', '100', '0')
(47, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2008', '800', '520', '1320', '5', '287', 'D J Sanghvi', 'Computer Engineering', '6.2', '100', '0')
(48, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '157', '153', '310', '4', '109', 'VTU', 'Computer Science', '6.83', '100', '0')
(49, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2015', '159', '157', '316', '3.5', '104', 'SIES Graduate School of Technology', 'EXTC', '6.5', '100', '0')
(50, 'Northeastern University', '1', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '800', '640', '1440', '4.5', '117', 'MU', 'Electronics', '6.7', '100', '30')
(51, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '760', '500', '1260', '4', '90', 'VTU', 'ISE', '7.8', '100', '0')
(52, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2013', '155', '153', '308', '4', '109', 'University of Mumbai', 'Production Engineering', '7.019', '100', '0')
(53, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '750', '590', '1340', '3', '107', 'JNTU', 'Electronics and Communication', '7.4', '100', '18')
(54, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '770', '410', '1180', '3.5', '111', 'Pune University', 'Computer Engineering', '6.4', '100', '0')
(55, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '152', '310', '3.5', '107', 'MU', 'COMP ENGG', '6', '100', '0')
(56, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '730', '570', '1300', '3.5', '97', 'Thadomal Shahani Engineering College', 'Computer Engg.', '6.8', '100', '0')
(57, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '680', '640', '1320', '4.5', '114', 'University of Pune', 'Computer Engineering', '6.544', '100', '0')
(58, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '157', '151', '308', '4', '109', 'SFIT', 'IT', '5.456', '100', '0')
(59, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '156', '150', '306', '4', 'None', 'Anna University', 'Computer Science', '7.3', '100', '0')
(60, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '780', '420', '1200', '3.5', '95', 'Nagpur University', 'Electronics', '6.3', '100', '0')
(61, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '680', '570', '1250', '4.5', '116', 'Anna University', 'CS', '7.7', '100', '0')
(62, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '163', '158', '321', '4', '109', 'MU', 'Computer Engineering', '6.7', '100', '0')
(63, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '750', '590', '1340', '3', '100', 'Gujarat Technological University', 'EC', '7.7', '10', '0')
(64, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2015', '160', '146', '306', '3.5', '100', 'VTU', 'E&C;', '8.02', '10', '0')
(65, 'Northeastern University', '1', 'Admit', 'MS', 'Biomedical Engineering', 'Fall', 'None', '157', '148', '305', '3.5', '93', 'Vidyalankar Institute of Technology', 'biomedical', '7.15', '100', '0')
(66, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '146', '308', '3', '102', 'University of Pune', 'Information Tech.', '7.223000000000001', '100', '36')
(67, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '152', '320', '4', '108', 'MU', 'Computer Engineering', '6.947', '100', '12')
(68, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall', 'None', '158', '152', '310', '3.5', '94', 'Sreenidhi Institute of Science & Technology', 'avionics', '3.12', '4', '0')
(69, 'Northeastern University', '1', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2011', '720', '560', '1280', '3.5', '100', 'Jaypee Institute of Information Technology', 'Dept of Bioinformatics and Biotechnology', '7.4', '100', '0')
(70, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '149', '308', '3.5', '97', 'JUET Guna', 'CSE', '7.2', '10', '0')
(71, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '160', '150', '310', '3', '108', 'University of Pune', 'Information Tech', '6.5', '100', '0')
(72, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '720', '500', '1220', '3.5', '117', 'VIT Pune', 'Electronics', '7', '10', '0')
(73, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '550', '1350', '5', '106', 'Jadavpur University', 'Power engg', '7.8', '10', '0')
(74, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '156', '318', '3.5', '110', 'UPTU', 'Electronics', '6.473999999999999', '100', '42')
(75, 'Northeastern University', '1', 'Admit', 'MS', 'MIS-management related courses', 'Fall ', '2012', '790', '610', '1400', '3', '99', 'PICT', 'IT', '3', '4', '0')
(76, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '162', '151', '313', '3', '104', 'PICT', 'CS', '3.5', '4', '0')
(77, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '148', '307', '3', '100', 'VTU', 'Computer Science', '7.01', '100', '70')
(78, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '550', '1350', '3.5', '91', 'VTU', 'Information Science', '7.3', '100', '0')
(79, 'Northeastern University', '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '720', '520', '1240', '2', '21', 'MU', 'Computer Engineering', '0', '100', '0')
(80, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '170', '152', '322', '3.5', '98', 'Guru Gobind Singh Indraprashta University', 'TOOL ENGINEERING', '7.947', '100', '18')
(81, 'Northeastern University', '1', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '156', '148', '304', '3.5', '100', 'MU', 'Electronics', '0', '0', '0')
(82, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '160', '152', '312', '3.5', '108', 'JNTU', 'ECE', '7.6', '10', '0')
(83, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '590', '1390', '4', '109', 'Manipal Institue of Technology', 'Computer Science and Engineering', '7.71', '10', '0')
(84, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '156', '152', '308', '3.5', '112', 'Jai Narain Vyas University Jodhpur', 'Computer Science and Engineering', '7.340000000000001', '100', '0')
(85, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '162', '155', '317', '3.5', '113', 'GGSIPU', 'Mechanical', '7', '100', '0')
(86, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '740', '490', '1230', '3', '101', 'MU', 'I.T', '6.4', '100', '0')
(87, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '154', '317', '3', '103', 'ITM Gurgaon', 'CSE', '6.43', '100', '0')
(88, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '550', '1330', '4.5', '107', 'K J Somaiya College of Engiineering', 'Information Technology', '7.140000000000001', '100', '0')
(89, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '153', '314', '3', '109', 'Shivaji University', 'Electronics Engineering', '7.029999999999999', '100', '0')
(90, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Spring ', '2011', '700', '530', '1230', '4', '110', 'Sinhgad College of Engineering', 'Chemical Engineering', '6', '100', '0')
(91, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '650', '1450', '4', '110', 'Vidyalankar Institute of Technology', 'Information Technology', '7.145999999999999', '100', '0')
(92, 'Northeastern University', '1', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '155', '149', '304', '3', '101', 'BBDIT Ghaziabad', 'Mechanical Engineering', '7.2', '100', '0')
(93, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '151', '310', '3', '93', 'VTU', 'IS', '8', '100', '0')
(94, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2012', '720', '320', '1040', '3', '96', 'JNTU', 'ECE', '6.2', '100', '0')
(95, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '154', '317', '3', '107', 'University of Mumbai', 'Computer Engineering', '6.968000000000001', '100', '0')
(96, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '440', '1230', '4', '96', 'MU', 'Computer Engg', '6.5200000000000005', '100', '0')
(97, 'Northeastern University', '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2012', '167', '156', '323', '3.5', '104', 'Saboo Siddik Mumbai university', 'Computer Science', '5.7', '100', '0')
(98, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '154', '167', '321', '3', '108', 'Veermata Jijabai Technological Institute', 'Information Technology', '8.6', '10', '0')
(99, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '370', '1170', '3', '102', 'PICT', 'IT', '6.5', '100', '0')
(100, 'Northeastern University', '1', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall', 'None', '154', '146', '300', 'None', '94', 'None', '0', '0', '0', '0')
(101, 'Northeastern University', '1', 'Admit', 'MS', 'Operations Research', 'Fall ', '2014', '160', '145', '305', '2.5', '93', 'SJCE', 'Mech', '7.3', '10', '0')
(102, 'Northeastern University', '1', 'Admit', 'MS', 'software engineering', 'Fall ', '2013', '160', '151', '311', '4', '109', 'R.D. National College', 'IT', '7', '100', '0')
(103, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '149', '313', '3', '111', 'Sardar Patel College of Engineering', 'Computer Engineering', '6.428', '100', '0')
(104, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '720', '500', '1220', '3', '103', 'MU', 'EXTC', '0', '0', '0')
(105, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '162', '158', '320', '3', '111', 'NIT Warangal', 'Electronics and Communication Engineering', '8.19', '10', '30')
(106, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '154', '148', '302', '3.5', '103', 'Anna University', 'IT', '7.2', '100', '0')
(107, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '163', '150', '313', '4', 'None', 'JSS Noida', 'IT', '7.753', '100', '0')
(108, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '162', '158', '320', '4', '112', 'SSN College of Engineering', 'EEE', '8.1', '100', '0')
(109, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '780', '620', '1400', '4', '110', 'NIT Durgapur', 'Computer Science and Engineering', '8.29', '10', '0')
(110, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Spring ', '2012', '800', '490', '1290', '3', 'None', 'Lovely institute of Technology', 'ECE', '7.5200000000000005', '100', '0')
(111, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '170', '154', '324', '4', '110', 'GGSIPU', 'Computer Science', '7.8', '100', '0')
(112, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Fall', 'None', '155', '145', '300', 'None', '100', 'MU', 'EXTC', '7.1', '100', '0')
(113, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2013', '161', '144', '305', '3', '106', 'K. K. Engineering College', 'Mechanical Engineering', '6.659999999999999', '100', '0')
(114, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '150', '311', '4', '105', 'VTU', 'Computer Sciece', '7.13', '100', '42')
(115, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '161', '151', '312', '4', '105', 'CSVTU', 'Electronics and Telecommunications', '7.109999999999999', '100', '18')
(116, 'Northeastern University', '1', 'Admit', 'MS', 'CS', 'Spring ', '2015', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(117, 'Northeastern University', '1', 'Admit', 'MS', 'Sustainable enrgy and environment', 'Fall ', '2012', '161', '152', '313', '3.5', '97', 'NIT Nagpur', 'Mechanical', '6.9', '10', '0')
(118, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2012', '620', '560', '1180', '3.5', '99', 'MU', 'Electronics and Telecomm', '6.5', '100', '0')
(119, 'Northeastern University', '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2015', '159', '148', '307', '3.5', '99', 'UPTU', 'EI', '6.6', '100', '0')
(120, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '150', '311', '3', '101', 'Pune University', 'Computer Engineering', '6.5', '100', '0')
(121, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Spring ', '2013', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(122, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '151', '315', '4.5', '109', 'BITS Dubai', 'Electronics and Communication', '8.75', '10', '0')
(123, 'Northeastern University', '1', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '147', '145', '292', '2.5', '90', 'Bharati Vidyapeeth', 'Mechanical', '6.765000000000001', '100', '0')
(124, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '160', '144', '304', '4', '96', 'Siddaganga Institue of Technology', 'Computer Science', '9.38', '10', '29')
(125, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '530', '1280', '3.5', '109', 'RGTU', 'CS', '8', '100', '0')
(126, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '740', '550', '1290', '3.5', '104', 'MU', 'computer', '6.723000000000001', '100', '0')
(127, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2013', '156', '150', '306', '2.5', '98', 'Manipal Institue of Technology', 'Electrical and Electronics', '8.76', '10', '0')
(128, 'Northeastern University', '1', 'Admit', 'MS', 'Biotechnology', 'Fall ', '2011', 'None', 'None', '0', 'None', 'None', 'Padmashree Dr D Y Patil University', 'Biotechnology & Bioinformatics', '6.6', '100', '0')
(129, 'Northeastern University', '1', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(130, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall', 'None', '800', '440', '1240', '3', '97', 'MU', 'mech', '7.1', '100', '0')
(131, 'Northeastern University', '1', 'Admit', 'MS', 'Biotechnology/bio-engineering', 'Fall ', '2011', '800', '470', '1270', '4', '96', 'VTU', 'B.E Biotechnology', '7.5', '100', '0')
(132, 'Northeastern University', '1', 'Admit', 'MS', 'Information Assurance', 'Spring ', '2014', '158', '146', '304', '3', '98', 'Jaypee Institute of Information Technology', 'Computer Science', '6.3', '100', '0')
(133, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '168', '155', '323', '4', '108', 'VJTI', 'Electronics', '8', '10', '0')
(134, 'Northeastern University', '1', 'Admit', 'MS', 'computer science / MIS', 'Fall ', '2015', '160', '141', '301', 'None', '86', 'K J Somaiya College of Engiineering', 'Computer Science', '6.56', '100', '37')
(135, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '620', '1420', 'None', '108', 'KIIT', 'Electrical', '7.31', '10', '0')
(136, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '163', '157', '320', '4.5', '109', 'MU', 'Computer', '7.3', '100', '0')
(137, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '740', '310', '1050', '2.2', '92', 'MU', 'IT', '0', '0', '0')
(138, 'Northeastern University', '1', 'Admit', 'MS', 'Bioinformatics', 'Spring ', '2015', '156', '139', '295', '3', '93', 'VTU', 'Information Science', '7.4', '100', '10')
(139, 'Northeastern University', '1', 'Admit', 'MS', 'computer science / MIS', 'Fall ', '2015', '164', '146', '310', '4', '110', 'Rajasthan Technical University', 'Computer Science', '7.9', '100', '29')
(140, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '530', '1300', '3', '111', 'VIT', 'Information Technology', '6.4239999999999995', '100', '0')
(141, 'Northeastern University', '1', 'Admit', 'MS', 'MIS-management related courses', 'Fall ', '2011', 'None', 'None', '0', '3', '95', 'VESIT', 'Electronics and Telecom', '0', '0', '0')
(142, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', 'None', 'None', '0', 'None', 'None', 'Cummins College of Engineering Pune', 'IT', '6.2299999999999995', '100', '0')
(143, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '490', '1270', '3.5', '99', 'RAIT', 'Electronics', '6.5', '100', '0')
(144, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall', 'None', '161', '148', '309', '3.5', '105', 'Jaypee Institute of Information Technology', 'Information technology', '7.7', '10', '5')
(145, 'Northeastern University', '1', 'Admit', 'MS', 'Pharmacology', 'Fall ', '2012', '770', '580', '1350', '3', '100', 'Osmania University', 'Pharmacy', '7.42', '100', '0')
(146, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '780', '340', '1120', '3', '93', 'ITM Gurgaon', 'CSE', '7.2', '100', '0')
(147, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2016', '161', '146', '307', '3', '91', 'University of Pune', 'Computer', '5.484', '100', '0')
(148, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '155', '320', '3.5', '103', 'Panjab University', 'ECE', '6.85', '100', '0')
(149, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '166', '159', '325', '3', '108', 'Guru Gobind Singh Indraprashta University', 'Computer Science', '6.595000000000001', '100', '0')
(150, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '162', '154', '316', '3', '113', 'Heritage University of Technology', 'Computer Science', '7.63', '10', '0')
(151, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '158', '150', '308', '3.5', '110', 'Jaypee Institute of Information Technology', 'Biotechnology', '6.8', '10', '0')
(152, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '154', '154', '308', '3', '108', 'Prathyusha Institute of Technology and Management', 'ECE', '7.2', '100', '45')
(153, 'Northeastern University', '1', 'Admit', 'MS', 'Information Assurance', 'Fall ', '2014', '163', '152', '315', '3.5', '101', 'SRKNEC Nagpur', 'Information Technology', '6.1', '100', '17')
(154, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '660', '600', '1260', '4', '102', 'Nagpur University', 'Information Technology', '6.752', '100', '0')
(155, 'Northeastern University', '1', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '159', '149', '308', '3', '101', 'AITR RGPV', 'CS', '7.65', '100', '39')
(156, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '153', '315', '3.5', '105', 'Vivekananda College of Engineering an Technology (VTU)', 'Computer Science and Engineering', '6.8', '100', '0')
(157, 'Northeastern University', '1', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2014', '167', '148', '315', '4', '102', 'VTU', 'Electronics and Communication', '7.1', '100', '45')
(158, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '147', '307', '3', '88', 'VJTI', 'CS', '5.7', '10', '0')
(159, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '151', '311', '3.5', '10', 'None', '0', '0', '0', '0')
(160, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '740', '500', '1240', '3.5', '112', 'Pune University', 'Computer', '6.3', '100', '0')
(161, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '161', '141', '302', '2.5', 'None', 'Anna University', 'Electronics and Communication engineering', '8.3', '10', '0')
(162, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '150', '150', '300', '3.5', '110', 'VTU', 'Computer Science', '3.5', '4', '0')
(163, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '640', '1440', '4.5', '114', 'MU', 'IT', '7.65', '100', '0')
(164, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '161', '145', '306', '3.5', '102', 'West Bengal University Of Technology', 'Information Technology', '7.82', '10', '0')
(165, 'Northeastern University', '1', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '161', '148', '309', 'None', '105', 'IES IPS Academy', 'Electronics and Communications', '7.35', '100', '53')
(166, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '800', '590', '1390', '4.5', '270', 'SPCE', 'IT', '6.3', '100', '0')
(167, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '161', '151', '312', '3', '107', 'MU', 'Computer Science', '6.4', '100', '0')
(168, 'Northeastern University', '1', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '161', '145', '306', '3', '98', 'PSG College of Technology', 'mechanical', '7.78', '10', '3')
(169, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '350', '1120', '3', 'None', 'CSVTU', 'Information Technology', '8.65', '10', '0')
(170, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '790', '580', '1370', '3', '105', 'MU', 'Computer Engineering', '6.859999999999999', '100', '0')
(171, 'Northeastern University', '1', 'Admit', 'MS', 'CS', 'Fall ', '2013', '160', '152', '312', 'None', '98', 'MU', 'information technology', '6.5', '100', '0')
(172, 'Northeastern University', '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2013', '166', '156', '322', '4.5', '104', 'Medicaps Institute of Science & Technology Indore', 'Mechanical Engineering', '6.4', '100', '0')
(173, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '770', '530', '1300', '3.5', '99', 'PESIT', 'Telecommunication', '7.456999999999999', '100', '0')
(174, 'Northeastern University', '1', 'Admit', 'MS', 'Chemical/Environmental Engg.', 'Fall ', '2012', '800', '560', '1360', '3.5', '105', 'Osmania University', 'chemical engineering', '8.89', '10', '0')
(175, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '690', '490', '1180', '4', 'None', 'SSN College of Engineering', 'Information Technology', '8', '100', '0')
(176, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '166', '156', '322', '4', '114', 'RMK Engineering College', 'BE CSE', '7.85', '10', '15')
(177, 'Northeastern University', '1', 'Admit', 'MS', 'pharmacy', 'Fall ', '2011', '600', '300', '900', '1.5', '101', 'None', '0', '0', '0', '0')
(178, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '800', '510', '1310', '3.5', '108', 'Bhilai Institute of Technology', 'Electrical Engineering', '6.62', '100', '0')
(179, 'Northeastern University', '1', 'Admit', 'MS', 'Technology Leadership', 'Fall ', '2014', 'None', 'None', '0', 'None', 'None', 'BVUCOE', 'Electronics Engineering', '6.2', '100', '8')
(180, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Spring ', '2013', '730', '480', '1210', '3', '108', 'JNTU', 'Biotechnology', '7.4', '100', '0')
(181, 'Northeastern University', '1', 'Admit', 'MS', 'Digital Media', 'Fall ', '2011', '790', '520', '1310', '3.5', '109', 'MU', 'computer engg', '0', '0', '0')
(182, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '164', '156', '320', '3.5', '110', 'Graphic Era University', 'Computer Science', '8.3', '100', '24')
(183, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '158', '149', '307', '3', '96', 'CUSAT', 'ECE', '7.4', '10', '0')
(184, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '480', '1270', '4.5', '113', 'MU', 'Computer Engineering', '6.7', '100', '0')
(185, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '760', '630', '1390', '3', 'None', 'VJTI', 'IT', '7.7', '10', '0')
(186, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '154', '314', '3', '107', 'SIES Graduate School of Technology', 'CE', '6.7', '100', '0')
(187, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '152', '315', '3.5', '109', 'Pune University', 'Computer Engineering', '7.7', '100', '24')
(188, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '168', '153', '321', '5', '106', 'UPTU', 'CS', '7', '100', '0')
(189, 'Northeastern University', '1', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2014', '163', '152', '315', '4', 'None', 'PESIT', 'CSE', '8.08', '10', '0')
(190, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '151', '311', '3.5', '103', 'GNDU', 'CS', '7.1', '100', '0')
(191, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '159', '148', '307', '3.5', '107', 'MU', 'Information Technology(I.T)', '5.9799999999999995', '100', '0')
(192, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '165', '154', '319', '4', '115', 'DA-IICT', 'ICT ( Information and Communication Technology)', '7.75', '10', '0')
(193, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '159', '152', '311', '3', 'None', 'SASTRA', 'Computer Science', '8.7', '10', '24')
(194, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '670', '360', '1030', '3.5', '97', 'Ambedkar Institute of technology', 'Computer Science', '7.4', '100', '0')
(195, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '158', '319', '4', '112', 'MDU', 'Computer Science', '7.5', '100', '41')
(196, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science/ Electronics and Communication', 'Fall ', '2012', '162', '149', '311', '3', '106', 'None', 'ECE', '6.909999999999999', '100', '0')
(197, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '168', '160', '328', '4', '112', 'Delhi College Of Engineeing', 'Computer Engineering', '7.8', '100', '0')
(198, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2011', '640', '420', '1060', '4', '97', 'Anna University', 'Electronics and Comm', '7.1', '100', '0')
(199, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '162', '148', '310', '3.5', 'None', 'CEG', 'Electronics and Communication', '7.62', '10', '33')
(200, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '168', '158', '326', 'None', '115', 'Cochin University of Science and Technology', 'Computer Science and Engineering', '7.5', '100', '0')
(201, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '156', '153', '309', '4', '115', 'Anna University', 'Biotechnology', '7.75', '10', '0')
(202, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '680', '570', '1250', '3.5', '103', 'Anna University', 'Mechanical', '7.4', '100', '0')
(203, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '163', '150', '313', '3.5', '103', 'UPTU', 'Electronics and Communications', '6.9', '100', '0')
(204, 'Northeastern University', '1', 'Admit', 'MS', 'Biotechnology', 'Fall ', '2011', '770', '660', '1430', '3', '111', 'UPTU', 'Biotechnology', '6.5', '100', '0')
(205, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '155', '318', '4', '108', 'VTU', 'CSE', '7.8', '100', '0')
(206, 'Northeastern University', '1', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(207, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '160', '143', '303', '2.5', '84', 'MU', 'Information Technology', '6', '100', '0')
(208, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '166', '150', '316', 'None', 'None', 'HBTI', 'Computer Science and Engineering', '7.56', '100', '0')
(209, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2008', '720', '440', '1160', '3.5', '94', 'West Bengal University Of Technology', 'Computer Science & Engineering', '8', '10', '0')
(210, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '160', '163', '323', '4', '116', 'Amrita School of Engineering', 'B.Tech CSE', '7.66', '10', '0')
(211, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '710', '490', '1200', '3', '105', 'VTU', 'Computer science', '6.65', '100', '0')
(212, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2009', '800', '580', '1380', '4', '111', 'PICT', 'Information Technology', '3.273', '4', '0')
(213, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '139', '300', '3', '95', 'GGSIPU', 'IT', '7.5280000000000005', '100', '0')
(214, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '160', '155', '315', '4.5', '113', 'Amrita Vishwa Vidhyapeetham', 'Computer Science and Engineering', '7.71', '10', '43')
(215, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '169', '144', '313', '3', '98', 'Amrita School of Engineering', 'ECE', '8.01', '10', '0')
(216, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '152', '318', '4', '105', 'mgit jntu-hyd', 'information technology', '6.2', '100', '0')
(217, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '154', '157', '311', '4', '114', 'Anna University', 'Computer Science', '6.7', '10', '0')
(218, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '740', '230', '970', '2.5', '96', 'None', '0', '0', '0', '0')
(219, 'Northeastern University', '1', 'Admit', 'MS', 'MIS-management related courses', 'Fall ', '2011', '700', '540', '1240', '3.5', '91', 'Sri Venkateswara College of Engineering', 'IT', '6.5', '100', '0')
(220, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '730', '490', '1220', '3', '93', 'Meenakshi Sundararajan Engineering College', 'cse', '8', '100', '0')
(221, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '770', '610', '1380', '4.5', '287', 'RAIT', 'CE', '6.2', '100', '0')
(222, 'Northeastern University', '1', 'Admit', 'MS', 'Information Security', 'Fall ', '2012', '161', '151', '312', '3.5', '104', 'Pune University', 'Computer Engineering', '5.75', '100', '0')
(223, 'Northeastern University', '1', 'Admit', 'MS', 'pharmacy', 'Fall ', '2011', 'None', 'None', '0', 'None', 'None', 'MU', '0', '0', '0', '0')
(224, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '162', '142', '304', '3', '94', 'Nirma Institute of Technology', 'CSE', '7.66', '10', '0')
(225, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '730', '550', '1280', 'None', '233', 'Vidyalankar Institute of Technology', 'computers', '6.4', '100', '0')
(226, 'Northeastern University', '1', 'Admit', 'MS', 'MIS/MS CS', 'Fall ', '2013', '800', '450', '1250', '4.5', '101', 'Sri Sairam Engineering College', 'Computer Science', '7.3', '100', '0')
(227, 'Northeastern University', '1', 'Admit', 'MS', 'MIS/CS', 'Fall ', '2013', '158', '144', '302', '3', '104', 'MJCET', 'CSE', '0.389', '100', '0')
(228, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '790', '510', '1300', 'None', '105', 'Thadomal Shahani Engineering College', 'Information Technology', '3.9', '4', '0')
(229, 'Northeastern University', '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2014', '157', '146', '303', '3', '95', 'University of Mumbai', 'Electronics', '5', '100', '0')
(230, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '710', '680', '1390', '3.5', '106', 'VTU', 'Information Science', '7', '100', '0')
(231, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '159', '151', '310', '3.5', '112', 'Anna University', 'Electronics & Communication', '7.9', '10', '54')
(232, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '155', '323', '3', '105', 'L D College Of Engineering', 'Information Technology', '7.67', '10', '3')
(233, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '161', '153', '314', '3.5', 'None', 'Sinhgad College of Engineering', 'Computer Engineering', '6.3', '100', '0')
(234, 'Northeastern University', '1', 'Admit', 'MS', 'Information Security', 'Fall ', '2012', '158', '143', '301', '4', '97', 'University of Pune', 'Computer', '5.9', '100', '0')
(235, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '165', '154', '319', '3', '113', 'BIT', 'telecom', '6', '100', '36')
(236, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '690', '470', '1160', 'None', '92', 'VTU', 'Information Science', '0', '0', '0')
(237, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '157', '145', '302', '3.5', '84', 'Bangalore Institute of Technology', 'Computer Science', '72.45', '5', '0')
(238, 'Northeastern University', '1', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2014', '166', '144', '310', '3', '90', 'Manipal Institue of Technology', 'CIVIL', '6.6', '10', '6')
(239, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Networking', 'Fall ', '2013', '162', '157', '319', '4', 'None', 'BIT Mesra', 'ECE', '6.9', '100', '0')
(240, 'Northeastern University', '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '710', '350', '1060', '3.5', '83', 'SIT', 'Information Technology', '5.7', '100', '0')
(241, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '750', '500', '1250', '3', '97', 'D J Sanghvi', 'Electronics', '6.3', '100', '0')
(242, 'Northeastern University', '1', 'Admit', 'MS', 'CS MIS', 'Fall ', '2015', '164', '154', '318', '4', 'None', 'Guru Nanak Dev University Amritsar', 'Computer Science', '6.14', '100', '36')
(243, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '750', '490', '1240', '3', '104', 'MU', 'Information Technology', '6.2', '100', '0')
(244, 'Northeastern University', '1', 'Admit', 'MS', 'Information Management', 'Fall ', '2014', '155', '152', '307', '4', 'None', 'Madras Institute of Technology', 'IT', '8.2', '10', '24')
(245, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2013', '164', '153', '317', '3', '104', 'NIT Jalandhar', '0', '0', '0', '0')
(246, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '160', '324', '3', '108', 'RGPV', 'Computer Science', '7.412999999999999', '100', '0')
(247, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '163', '155', '318', '3.5', '115', "MGM's Jawaharlal Nehru Engineering College", 'Computer Science', '6.7', '100', '0')
(248, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '163', '156', '319', '3', '102', 'MU', 'Computer Engineering', '6.5', '100', '0')
(249, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '169', '157', '326', '4', '108', 'NIT Silchar', 'Computer Science and Engineering', '6.94', '10', '0')
(250, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall', 'None', '760', '450', '1210', '3.5', '104', 'D J Sanghvi', 'IT', '0', '0', '0')
(251, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2014', '168', '147', '315', '3', '98', 'IIT Indore', 'Electrical Engineering', '6.55', '10', '0')
(252, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '380', '1160', '3.5', '101', 'SSN College of Engineering', 'Electronics and communication engineering', '7.8', '100', '0')
(253, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '158', '321', '4', '110', 'University of Pune', 'IT', '6.840999999999999', '100', '0')
(254, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '155', '315', '3', '99', 'Anna University', 'Information Technology', '9.15', '10', '0')
(255, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Spring ', '2016', '156', '150', '306', '3', '100', 'Maharishi Dayanand University', 'Electronics & Communication', '7.07', '100', '43')
(256, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '159', '150', '309', '4', '105', 'GITAM', 'ECE', '8.4', '100', '87')
(257, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '159', '152', '311', '3', '105', 'SSN College of Engineering', 'IT', '7.4', '100', '0')
(258, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '164', '150', '314', '3', '100', 'Dharamsinh Desai University', 'Computer Engineering', '7.87', '10', '0')
(259, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '570', '1340', '4', '107', 'D J Sanghvi', 'Information Technology', '5.957', '100', '0')
(260, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Spring ', '2013', '165', '155', '320', '3.5', '107', 'NIT Karnataka', 'EC', '7.42', '10', '0')
(261, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Networking', 'Fall ', '2013', '152', '144', '296', '3.5', '106', 'NMAMIT Nitte', 'Electronics and Communication', '7.2', '100', '0')
(262, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '159', '318', '4', '107', 'GECA', 'Information Technology', '7.3', '10', '0')
(263, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '730', '470', '1200', '3', '81', 'S.R.K.N.E.C', 'Information Technology', '6.5', '100', '0')
(264, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '730', '440', '1170', '4', '105', 'University of Rajasthan', 'Computer Science', '7.57', '100', '0')
(265, 'Northeastern University', '1', 'Admit', 'MS', 'Management Information System', 'Spring ', '2014', '156', '145', '301', 'None', 'None', 'Amrita School of Engineering', 'Computer Science', '8.8', '10', '0')
(266, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '165', '149', '314', '3.5', '107', 'CEG', 'Electronics and communication', '8.67', '10', '0')
(267, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2013', '164', '149', '313', '3', '103', 'CBIT', 'Bio Tech', '7.9', '100', '0')
(268, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '165', '149', '314', '3', '104', 'NITJ', 'ICE', '7.75', '10', '58')
(269, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '147', '311', '3', 'None', 'NIE', 'CSE', '8.87', '10', '0')
(270, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '740', '640', '1380', '4', '114', 'None', '0', '0', '0', '0')
(271, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '161', '148', '309', '4', '105', 'SVCE', 'B.E CSE', '7.19', '10', '17')
(272, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Spring ', '2012', '800', '560', '1360', '4', '107', 'Kakatiya University', 'E.E.E', '6.7', '100', '0')
(273, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '154', '160', '314', '3', '116', 'None', 'ECE', '8', '10', '0')
(274, 'Northeastern University', '1', 'Admit', 'MS', 'Management Information System', 'Fall', 'None', '307', '150', '457', '4.5', '93', 'None', '0', '6.2', '100', '0')
(275, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '160', '152', '312', '3.5', '108', 'University of Mumbai', 'Computer Engineering', '6.1', '100', '10')
(276, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '164', '150', '314', '3.5', '105', 'SCOET', 'Computer Science', '6.8', '100', '0')
(277, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '780', '560', '1340', '3.5', '104', 'MU', 'Electronics & Telecommunication', '6.2', '100', '0')
(278, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Spring ', '2013', '158', '141', '299', '3', '82', 'None', '0', '0', '0', '0')
(279, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '158', '322', '4', '109', 'Osmania University', 'Information Technology', '8.214', '100', '0')
(280, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '149', '314', '3', '100', 'Model Engineering College', 'Computer Science', '7.5', '100', '0')
(281, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics and Communication', 'Spring ', '2013', '690', '300', '990', '3', '84', 'LDCE', 'EC', '6.6', '100', '0')
(282, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '160', '145', '305', '3', '100', 'VJTI', 'Electronics', '6', '10', '0')
(283, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '165', '146', '311', '4', '103', 'Veermata Jijabai Technological Institute', 'Information Technology', '8.3', '10', '20')
(284, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Spring ', '2011', '800', '570', '1370', '4', '116', 'BITS Pilani', 'Electronics and Instrumentation', '9.1', '10', '0')
(285, 'Northeastern University', '1', 'Admit', 'MS', 'Management Information System', 'Fall ', '2015', '157', '157', '314', '3', '106', 'Panimalar Engineering College', 'Computer Science', '8.1', '100', '51')
(286, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '580', '1360', '4', '110', 'JNTU', 'Computer Science', '7.1819999999999995', '100', '0')
(287, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '430', '1220', '3', '106', 'NIT Warangal', 'Computer Science & Engg', '7.7', '10', '0')
(288, 'Northeastern University', '1', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2013', '161', '160', '321', '3.5', '107', 'Saveetha Engineering College', 'Electronics & communication', '7.6', '100', '0')
(289, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '158', '144', '302', '3.5', '102', 'University of Pune', 'IT', '3.6', '4', '0')
(290, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2011', '770', '670', '1440', '3.5', '116', 'SSCET Bhilai', 'ETC', '7.62', '10', '0')
(291, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '163', '145', '308', '3', '101', 'Nagarjuna University', 'Electronics and Computers', '8.66', '10', '0')
(292, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '780', '630', '1410', '3', '112', 'University of Mumbai', 'Computer Engg', '7', '100', '0')
(293, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(294, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '157', '317', '4', 'None', 'Acharya Institute of technology', 'Computer Science', '7.1', '100', '0')
(295, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '157', '146', '303', '3.5', '98', 'PICT', 'Computer', '6.34', '100', '0')
(296, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '640', '1440', '3.5', '116', 'Silicon Institute Of Technology', 'Computer Science', '8.64', '10', '0')
(297, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '780', '510', '1290', '3', '95', 'MU', 'IT', '6.2', '100', '0')
(298, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '152', '315', '4', '111', 'Amrita Vishwa Vidhyapeetham', 'Computer Science and Engineering', '8.35', '10', '0')
(299, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '145', '308', '3', '102', 'GITAM', 'INFORMATION TECHNOLOGY', '8.55', '10', '0')
(300, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '156', '151', '307', '3.5', '106', 'Pune University', 'Computer Engg.', '5.7', '100', '0')
(301, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '158', '151', '309', '3.5', '100', 'SRM', 'Computer science and engineering', '6.8', '10', '0')
(302, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '151', '147', '298', '3', '91', 'MU', 'Electronics Engg', '6.859999999999999', '100', '24')
(303, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '157', '144', '301', '2.5', '98', 'Jaypee Institute of Information Technology', 'Electronics and Communication', '7.2', '10', '0')
(304, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '610', '1400', '3.5', '117', 'MU', 'Information Technology', '6.6', '100', '0')
(305, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '790', '550', '1340', '4', '105', 'Thakur College of Engineering and Technology', 'Computer Engineering', '6.869', '100', '0')
(306, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '153', '315', '3.5', '110', 'University of Mumbai', 'Computer Engineering', '7', '100', '0')
(307, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '150', '310', '3.5', '103', 'R V College of Engineering', 'Computer Science', '7.1', '100', '41')
(308, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '690', '1490', '4.5', '107', 'Indraprastha University', 'Electronics and Communication', '7.1', '100', '0')
(309, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2013', '750', '450', '1200', '4.5', '110', 'Institute of Technology Nirma University', 'Instrumentation & Control Electrical Department', '6.56', '10', '0')
(310, 'Northeastern University', '1', 'Admit', 'MS', 'pharmaceutics', 'Fall ', '2011', '750', '500', '1250', '3', '84', 'Gujarat Technological University', 'pharmacy', '6.5', '100', '0')
(311, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '570', '1340', '4', '108', 'MU', 'Comp Engg', '6.2', '100', '0')
(312, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '146', '304', '3', '103', 'BMSCE', 'information science and engineering', '8.81', '10', '24')
(313, 'Northeastern University', '1', 'Admit', 'MS', 'Biotechnology', 'Fall ', '2008', '760', '500', '1260', '4', '107', 'SASTRA', 'biotechnology', '8.6', '10', '0')
(314, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '154', '149', '303', '3.5', '95', 'RAIT', 'Electronics', '7', '100', '0')
(315, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '157', '321', '4', '110', 'Model Engineering College', 'Computer Science', '8.02', '100', '0')
(316, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '740', '400', '1140', '3.5', '100', 'VTU', 'CS', '6.5', '100', '0')
(317, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '168', '147', '315', '3', '94', 'Rajiv Gandhi Technical University', 'Mechanical', '0', '0', '0')
(318, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '168', '157', '325', '4', '114', 'Sardar Patel College of Engineering', 'Electronics', '7.529999999999999', '100', '22')
(319, 'Northeastern University', '1', 'Admit', 'MS', 'CS / MSIS / ITM', 'Fall ', '2011', '790', '300', '1090', '3.5', '93', 'V.G. Vaze college Mumbai University', 'Department Of Information Technology', '8', '100', '0')
(320, 'Northeastern University', '1', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2014', '156', '149', '305', '3', '102', 'JNTU', 'Computer Science', '7.8', '100', '0')
(321, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '690', '540', '1230', '4', '115', 'VTU', 'Electronics and Communications Engineering', '6.876', '100', '0')
(322, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '710', '590', '1300', '3.5', '101', 'Nirma Institute of Technology', 'Computer Engg', '7.02', '10', '0')
(323, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '153', '315', '3.5', '111', 'VIT', 'Computer Science and Engineering', '7.88', '10', '0')
(324, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '154', '149', '303', '4', '108', 'Anna University', 'ECE', '7.4', '100', '38')
(325, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '162', '147', '309', '3.5', '100', 'K J Somaiya College of Engiineering', 'I.T.', '6.4', '100', '0')
(326, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '157', '147', '304', '3', '92', 'Rajasthan Technical University', 'Computer Science', '6.88', '100', '0')
(327, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '170', '155', '325', '4', '110', 'Pune University', 'Information Technology', '7.0200000000000005', '100', '30')
(328, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '660', '1460', '4', '114', 'SASTRA', 'Computer Science', '9.29', '10', '0')
(329, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '164', '154', '318', '4.5', '103', 'Sinhgad College of Engineering', 'Information Technology', '6.9', '100', '0')
(330, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '159', '150', '309', '3.5', '100', 'K J Somaiya College of Engiineering', 'IT', '5.8', '100', '0')
(331, 'Northeastern University', '1', 'Admit', 'MS', 'MIS-management related courses', 'Fall ', '2014', '156', '143', '299', '4', 'None', 'MU', 'Computer Engineering', '7.234', '100', '0')
(332, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall', 'None', '157', '142', '299', 'None', 'None', 'Manav Rachna College of Engineering', 'electronics and communication', '6.5', '100', '0')
(333, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Spring ', '2014', '164', '146', '310', '3', 'None', 'None', 'EC', '6.9159999999999995', '100', '0')
(334, 'Northeastern University', '1', 'Admit', 'MS', 'Information Security', 'Fall ', '2014', '162', '162', '324', '3', 'None', 'NIT Arunachal Pradesh', 'Computer Science and Engineering', '7.85', '10', '0')
(335, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '167', '155', '322', '4', '116', 'MU', 'computer', '8.083', '100', '0')
(336, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '165', '151', '316', '4', '109', 'Rajiv Gandhi Institute Of Technology', 'Computers', '6.5', '100', '0')
(337, 'Northeastern University', '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2014', '148', '146', '294', '3', '94', 'Vidyalankar Institute of Technology', 'information technology', '0', '0', '0')
(338, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '152', '314', '4', '111', 'MU', 'Computer Engineering', '6.7', '100', '0')
(339, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '160', '150', '310', '3', '7', 'Anna University', 'Mechanical Engineering', '7.5', '10', '0')
(340, 'Northeastern University', '1', 'Admit', 'MS', 'Telecom management', 'Spring ', '2013', '730', '320', '1050', '3', '79', 'Syed Hashim College-Affl to JNTU', 'ECE', '6.85', '100', '0')
(341, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '161', '145', '306', '3', '104', 'Anna University', 'Mechanical Engineering', '8.41', '10', '0')
(342, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '770', '530', '1300', '3.5', '112', 'University of Mumbai', 'Electronics Engineering', '6.9159999999999995', '100', '0')
(343, 'Northeastern University', '1', 'Admit', 'MS', 'computer science / MIS', 'Spring ', '2015', '161', '147', '308', '3', '99', 'Dharamsinh Desai University', 'Electronics and Communications', '7.35', '100', '36')
(344, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '162', '160', '322', '4', '114', 'MU', 'Information Technology', '5.4', '100', '12')
(345, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '149', '315', '3.5', '100', 'Nirma Institute of Technology', 'Information Technology', '7.63', '10', '30')
(346, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '151', '313', '4', 'None', 'Amrita Vishwa Vidhyapeetham', 'Computer Science', '7.32', '10', '22')
(347, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '390', '1190', '2.5', '96', 'Osmania University', 'ECE', '6.9', '100', '0')
(348, 'Northeastern University', '1', 'Admit', 'MS', 'CS MIS', 'Fall ', '2012', '160', '148', '308', '3.5', '106', 'Fr Agnels Vashi (University of Mumbai)', 'Computer', '6.5', '100', '0')
(349, 'Northeastern University', '1', 'Admit', 'MS', 'CS', 'Fall ', '2014', '160', '154', '314', '4', '109', 'MU', 'Information Technology', '5.970000000000001', '100', '0')
(350, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '151', '144', '295', '3', '90', 'Maharashtra Institute of Technology', 'Computer Science', '7.4', '100', '0')
(351, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '164', '149', '313', '3', '101', 'NIT Durgapur', 'Computer Science', '7.8', '10', '59')
(352, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', 'None', 'None', '0', 'None', 'None', 'None', 'Electrical and Electronics Engineering', '6.7', '100', '42')
(353, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall', 'None', '157', '152', '309', '3.5', '109', 'MU', 'I.T.', '5.4', '100', '0')
(354, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '145', '308', '3', '100', 'VTU', 'CS', '8.35', '10', '0')
(355, 'Northeastern University', '1', 'Admit', 'MS', 'Telecom management', 'Fall ', '2014', '156', '148', '304', '4', '94', 'Vidyalankar Institute of Technology', 'Electronics and Telecommunication', '3.83', '4', '0')
(356, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', 'None', 'None', '0', 'None', 'None', 'Guru Gobind Singh Indraprashta University', 'INDUSTRIAL AND PRODUCTION', '7.45', '100', '0')
(357, 'Northeastern University', '1', 'Admit', 'MS', 'MIS-management related courses', 'Fall ', '2013', '159', '146', '305', '3.5', '96', 'VTU', 'EEE', '6.5', '100', '0')
(358, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '159', '152', '311', '4', '107', 'D j Sanghvi', 'Computer Engineering', '7', '100', '0')
(359, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '156', '149', '305', '3.5', '108', 'CSVTU', 'CSE', '6.6450000000000005', '100', '0')
(360, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '142', '303', '4.5', '97', 'BIT Mesra', 'Electronics & Communication Engineering', '6.99', '100', '0')
(361, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '161', '149', '310', '4', '108', 'R.N.S.I.T (VTU)', 'Computer science', '6.5', '100', '0')
(362, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '160', '148', '308', '3.5', '107', 'University of Mumbai', 'Information Technology', '5.3', '100', '0')
(363, 'Northeastern University', '1', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '170', '150', '320', '3.5', '106', 'IIT Bombay', 'Mechanical', '8.1', '10', '0')
(364, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '164', '155', '319', 'None', '108', 'VTU', 'Computer Science', '7.2', '100', '0')
(365, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall', 'None', '159', '157', '316', '4', '102', 'University of Pune', 'Computer', '5.9', '100', '0')
(366, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2012', '770', '480', '1250', '3.5', '109', 'Don Bosco Institute of Technology', 'EXTC', '5.6', '100', '0')
(367, 'Northeastern University', '1', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '157', '153', '310', '3', 'None', 'JNTU', 'Mechanical', '7.5', '100', '12')
(368, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '152', '319', '3.5', '95', 'KIIT', 'ELECTRICAL ENGINEERING', '7.74', '10', '0')
(369, 'Northeastern University', '1', 'Admit', 'MS', 'pharmaceutics', 'Fall ', '2015', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(370, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '710', '490', '1200', '3', '106', 'University', 'CSE', '7.89', '10', '0')
(371, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '159', '153', '312', '3.5', '107', 'Pune University', 'IT', '6.2', '100', '0')
(372, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2006', '790', '630', '1420', '4.5', '293', 'Punjab Technical University', 'Electronics & Communication Engg', '6.7', '100', '0')
(373, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '440', '1210', '3', '111', 'MSRIT', 'Computer Science', '7.5', '100', '0')
(374, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '165', '151', '316', '4', '109', 'VTU', 'Computer Science', '7.3', '100', '57')
(375, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '146', '308', '3', '93', 'Maharaja Agrasen Institute Of Technology', 'Computer Science Engineering', '7.340000000000001', '100', '0')
(376, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2012', '780', '420', '1200', '2.5', '98', 'University of Pune', 'Electronics and telecommunication', '6.01', '100', '0')
(377, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2016', '162', '159', '321', '4.5', '111', 'Sathyabama University', 'Mechanical Engineering', '7.59', '10', '0')
(378, 'Northeastern University', '1', 'Admit', 'MS', 'None', 'Fall ', '2013', '157', '155', '312', '4', '113', 'MU', 'Computer Engineering', '6.5', '100', '0')
(379, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Spring ', '2015', '161', '143', '304', '3.5', '107', 'Vignan Institute of Technology and Science', 'Information Technology', '7.9', '100', '24')
(380, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '600', '1380', '4', '102', 'VJCET (MG University)', 'CSE', '8.034', '100', '0')
(381, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '157', '154', '311', '3', '104', 'VTU', 'ISE', '7.04', '10', '45')
(382, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '740', '400', '1140', '3', '95', 'MU', 'Computer Engg.', '7.1', '100', '0')
(383, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2013', '163', '154', '317', '3.5', '109', 'Manipal Institue of Technology', 'Mechanical Engineering', '7.66', '10', '0')
(384, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '156', '150', '306', '3.5', '113', 'VTU', 'Computer Science and Engineering', '7.420999999999999', '100', '0')
(385, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '157', '149', '306', '3.5', '104', 'GGSIPU', 'EEE', '7.51', '100', '0')
(386, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '165', '155', '320', '3', 'None', 'PTU-Dav Institue of Engineering and Technology', 'Information Technology', '6.9', '100', '0')
(387, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '166', '156', '322', '3.5', '111', 'JNTU', 'CS', '6.3', '100', '0')
(388, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '158', '320', '4.5', '110', 'MAIT GGSIPU', 'CSE', '7.31', '100', '22')
(389, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Networks', 'Fall ', '2013', '770', '580', '1350', '4', '115', 'Sir MVIT', 'CS', '7.45', '100', '0')
(390, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '760', '530', '1290', '3.5', '107', 'Himachal Pradesh University / IITT College of Engineering', 'B.Tech (Electronics and Communication)', '6.859999999999999', '100', '0')
(391, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '153', '311', '3.5', '106', 'Anna University', 'Electrical and Electronics', '7.53', '10', '0')
(392, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '158', '323', '4.5', '112', 'VTU', 'CSE', '9.27', '10', '0')
(393, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Spring ', '2013', '162', '154', '316', '4.5', '109', 'Lahore University of Management Sciences', 'School of Science and Engg.', '2.85', '4', '0')
(394, 'Northeastern University', '1', 'Admit', 'MS', 'MEM', 'Fall ', '2013', '158', '147', '305', '3', '87', 'JNTU', 'ece', '6.75', '100', '0')
(395, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '162', '150', '312', '3.5', '104', 'SRM', 'Computer Science', '8.73', '10', '0')
(396, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '158', '143', '301', '3', '98', 'MVSR', 'Mechanical', '7', '100', '1')
(397, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '800', '610', '1410', '3.5', '108', 'JNTU', 'CS', '7.9', '100', '0')
(398, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '450', '1220', '4', '103', 'VTU', 'Computer Sciece', '7.35', '100', '0')
(399, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '150', '142', '292', '3.5', '101', "St Joseph's College of Engineering", 'CSE', '8.1', '100', '0')
(400, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2007', '730', '340', '1070', '3.5', '103', 'K J Somaiya College of Engiineering', 'Mechanical Engineering', '6.9', '100', '0')
(401, 'Northeastern University', '1', 'Admit', 'MS', 'CS / SE / IT / MIS', 'Fall ', '2015', '158', '157', '315', '4', '112', 'Rajasthan Technical University', 'Computer Engineering', '6.711', '100', '30')
(402, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '156', '149', '305', '3', '94', 'Rajasthan Technical University', 'Computer science', '8.15', '100', '0')
(403, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '530', '1300', '4', '108', 'VTU', 'Computer Science & Engineering', '6.7', '100', '0')
(404, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '165', '153', '318', '3.5', '108', 'GGSIPU', 'CSE', '7.3', '100', '44')
(405, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '167', '154', '321', '3.5', '101', 'G H Patel College of Engg & Tech', 'Information Technology', '7.76', '10', '34')
(406, 'Northeastern University', '1', 'Admit', 'MS', 'Human Computer Interaction', 'Fall ', '2012', '160', '148', '308', '3.5', '83', 'University of Pune', 'Computer Engg.', '6.55', '100', '0')
(407, 'Northeastern University', '1', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '164', '143', '307', '3', '91', 'VIT', 'Computer Engineering', '8.74', '10', '0')
(408, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2013', '161', '157', '318', '4', '111', 'MU', 'Electronics and Telecommunication', '7.6', '100', '0')
(409, 'Northeastern University', '1', 'Admit', 'MS', 'Management Information System', 'Fall ', '2015', '159', '150', '309', '2.5', '93', 'Chitkara University', 'B.E. CSE', '7.2', '10', '33')
(410, 'Northeastern University', '1', 'Admit', 'MS', 'CS / MIS', 'Fall ', '2014', '160', '156', '316', '3.5', '106', 'Amrita School of Engineering', 'CSE', '6.38', '10', '22')
(411, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '157', '153', '310', '4', '108', 'VTU', 'Computer Science', '6.6', '100', '0')
(412, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '159', '144', '303', '3.5', '95', 'JNTU', 'IT', '7.441', '100', '0')
(413, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '170', '160', '330', '4', '112', 'Jaypee Institute of Information Technology', 'Electronics and Communication', '8.6', '10', '0')
(414, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '680', '360', '1040', '4', '106', 'MITCOE; Pune University', 'I T', '7', '100', '0')
(415, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '149', '311', '4', '107', 'Padre Conceicao College Of Engineering', 'Electronics And Telecommunication', '7.812', '100', '6')
(416, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '790', '460', '1250', '4', '109', 'MU', 'Computer Science', '7.325', '100', '0')
(417, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '161', '153', '314', '3', 'None', 'SASTRA', 'info and comm technology (ICT)', '7.3', '10', '24')
(418, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '167', '155', '322', '3.5', '106', 'NIT Patna', 'Computer Science', '8.24', '10', '36')
(419, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '730', '540', '1270', '3.5', '103', 'VTU', 'CS', '6.7', '100', '0')
(420, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '760', '420', '1180', '4', '109', 'G.H. Raisoni College of Engineering Nagpur', 'Information Technology', '6.5', '100', '0')
(421, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '161', '150', '311', '3.5', '101', "St Joseph's College of Engineering", 'EEE', '7.4', '100', '0')
(422, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '760', '510', '1270', '5', '98', 'Rajiv Gandhi Institute Of Technology', 'Instrumentation', '6.056', '100', '0')
(423, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '151', '309', '3.5', '103', 'SBMJain Coll', 'Dept of CS', '7.8', '100', '0')
(424, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '710', '520', '1230', '3.5', '90', 'RMK Engineering College', 'Computer Science', '8.3', '100', '0')
(425, 'Northeastern University', '1', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '161', '146', '307', '3.5', '99', 'University of Pune', 'EC', '6.753', '100', '36')
(426, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '157', '148', '305', '4', '105', 'Goa University', 'Computer Engineering', '7.8', '100', '32')
(427, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '750', '610', '1360', '3', '106', 'JNTU', 'ECE', '7.2', '100', '44')
(428, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '166', '152', '318', '3', '103', 'VTU', 'Information Science', '6.3', '100', '45')
(429, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '166', '156', '322', '3', '104', 'Gautam Buddh Technical University', 'Information Technology', '7.1', '100', '0')
(430, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '159', '150', '309', '3', '106', 'Amity University', 'Computer Science and Engineering', '8.36', '10', '39')
(431, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '760', '610', '1370', '4', '115', 'MG University', 'Computer Science', '7.9', '100', '0')
(432, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '166', '150', '316', '4', '108', 'RKNEC', 'IT', '7.5', '100', '0')
(433, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '156', '314', '4', 'None', 'Anna University', 'Information Technology', '8.01', '10', '0')
(434, 'Northeastern University', '1', 'Admit', 'MS', 'Biotechnology', 'Fall ', '2014', '164', '155', '319', '5', '112', 'VIT', 'Biotechnology', '8.62', '10', '0')
(435, 'Northeastern University', '1', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(436, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '149', '311', '3', '88', 'Sri Sairam Engineering College', 'Computer Science and Engineering', '0', '0', '0')
(437, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '158', '148', '306', '3', '7', 'Chhattisgarh Swami Vivekanand Technical Unveirsity', 'Computer Science and Engineering', '8.91', '10', '0')
(438, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '154', '147', '301', '3', '110', 'University of Mumbai', 'computer engineering', '3.7', '4', '0')
(439, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '500', '1270', '3', '97', 'Anna University', 'Information Technology', '7.5', '100', '0')
(440, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '144', '303', '3', '101', 'Bangalore Institute of Technology', 'Computer Science and Engineering', '7.811', '100', '0')
(441, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '146', '305', '3', '8', 'Bapatla Engineering College', 'CSE', '9.02', '100', '0')
(442, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '800', '330', '1130', '4', '253', 'Hacettepe University', 'Electrical & Electronics Engineering', '3.87', '4', '0')
(443, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '164', '157', '321', '4.5', '107', 'MSRIT', 'Mechanical Engineering', '9.16', '10', '0')
(444, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2014', '162', '149', '311', '3.5', '113', 'SRM', 'ECE', '8.57', '10', '0')
(445, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(446, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2016', '160', '155', '315', '3.5', '98', 'UPTU', 'IT', '6.308', '100', '18')
(447, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '750', '290', '1040', '3.5', '95', 'D J Sanghvi', 'IT', '6.7', '100', '0')
(448, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '162', '158', '320', '3', '114', 'NIT Durgapur', 'Computer Science and Engineering', '7.36', '10', '24')
(449, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '780', '390', '1170', '3.5', '88', 'CHHATTISGARH SWAMI VIVEKANANDA TECHNICAL UNIVERSITY', 'COMPUTER SCIENCE', '8.55', '10', '0')
(450, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '164', '145', '309', '3', '103', 'Amrita School of Engineering', 'Mechanical', '6.1', '10', '36')
(451, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2013', '158', '150', '308', '3.5', 'None', 'RMK Engineering College', 'EEE', '7.2', '100', '0')
(452, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '155', '316', '3.5', '108', 'University of Calicut', 'Computer Science', '6.3', '100', '0')
(453, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '165', '150', '315', 'None', '95', 'None', '0', '0', '0', '0')
(454, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management / Industrial Engineering / IMSE', 'Fall ', '2015', '154', '145', '299', '3.5', '87', 'Velammal Engineering College', 'ECE', '8', '100', '0')
(455, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '660', '1430', '4', '112', 'VIT University', 'Computer science engineering', '9.1', '10', '0')
(456, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '153', '314', '4.5', '105', 'K J Somaiya College of Engiineering', 'IT', '6.1', '100', '0')
(457, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '660', '1450', '4.5', '109', 'VIT', 'Computer Science Engineering', '9.33', '10', '0')
(458, 'Northeastern University', '1', 'Admit', 'MS', 'CS', 'Fall ', '2013', '800', '510', '1310', '4.5', '115', 'MU', 'IT', '6.8', '100', '0')
(459, 'Northeastern University', '1', 'Admit', 'MS', 'CS / MSIS / ITM', 'Fall ', '2011', '780', '520', '1300', '3', '96', 'University of Pune', 'Information Technology', '5.3', '100', '0')
(460, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '161', '149', '310', '3.5', '105', 'BIT Mesra', 'ECE', '7.04', '10', '0')
(461, 'Northeastern University', '1', 'Admit', 'MS', 'Entertainment technology-Animations and graphics', 'Fall', 'None', '790', '560', '1350', '4', '106', 'NIT Calicut', 'Computer Science', '0.834', '100', '0')
(462, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '156', '320', '3.5', '114', 'VTU', 'Computer Science', '7.5', '100', '0')
(463, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '158', '153', '311', '3.5', '103', 'VTU', 'Computer Science Engg', '7', '100', '0')
(464, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '790', '610', '1400', '3', '105', 'Jaypee Institute of Information Technology', 'InformationTechnology', '6.6', '10', '0')
(465, 'Northeastern University', '1', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2014', '163', '153', '316', '4', '113', 'MU', 'Civil Engineering', '5.1', '100', '22')
(466, 'Northeastern University', '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '760', '480', '1240', '4', '110', 'Rajiv Gandhi Institute Of Technology', 'Information Technology', '5.5', '100', '0')
(467, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '156', '321', '3', '111', "St.Xavier's College", 'Information Technology', '7.56', '100', '0')
(468, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2008', '800', '580', '1380', '5', '111', 'MU', 'Information Technology', '6', '100', '0')
(469, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '147', '307', '3', '95', 'Jaypee Institute of Information Technology', 'CSE', '7.25', '100', '0')
(470, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '158', '154', '312', 'None', '105', 'PCE Nagpur', 'Computer Tech.', '7.1', '100', '0')
(471, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '690', '540', '1230', '3', '106', 'VTU', 'CS', '7.4', '100', '0')
(472, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '760', '490', '1250', '3', '101', 'Madras Institute of Technology', 'ECE', '6.4', '10', '0')
(473, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics & Communication', 'Fall ', '2012', '730', '610', '1340', '3.5', '93', 'VTU', 'Electronics and Communication', '7.720000000000001', '100', '0')
(474, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical and computer engineering electrical engineering telecommunications engineering', 'Fall ', '2014', '165', '148', '313', '3.5', '96', 'D J Sanghvi', 'EXTC', '6.76', '100', '0')
(475, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '159', '152', '311', '3', '106', 'VTU', 'Computer Science', '6.779999999999999', '100', '33')
(476, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '164', '154', '318', '3', '107', 'Amity University', 'CS&E;', '7.5', '10', '0')
(477, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '148', '309', '3', '100', 'Anna University', 'Computer Science', '8.5', '10', '0')
(478, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '780', '660', '1440', '4.5', '283', 'Sri Venkateswara College of Engineering', 'Computer Science', '7.2', '100', '0')
(479, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '161', '163', '324', '4', '111', 'SAKEC University of Mumbai', 'Electronics', '6', '100', '60')
(480, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '152', '312', '4', '115', 'MU', 'Computers', '6.6450000000000005', '100', '24')
(481, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '170', '153', '323', '3.5', '90', 'Osmania University', 'ECE', '7.7', '100', '0')
(482, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '153', '317', '3', '103', 'SVITS', 'Computer Science', '7.3', '100', '0')
(483, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '153', '149', '302', '3', 'None', 'University of Mumbai', 'Management', '6.1', '100', '36')
(484, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '650', '1420', '3.5', '111', 'Vishwakarma Institute of Technology', 'Electronics', '6.537999999999999', '100', '0')
(485, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2014', '163', '163', '326', '4', '115', 'NIT Calicut', 'Computer Science and Engineering', '6.88', '10', '0')
(486, 'Northeastern University', '1', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '750', '610', '1360', '3.5', '110', 'VTU', 'Electronics and Communications', '7.066', '100', '0')
(487, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2010', '790', '560', '1350', '3.5', '107', 'None', '0', '0', '0', '0')
(488, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '570', '1340', '3', '103', 'IET DAVV', 'CSE', '7.4', '100', '0')
(489, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Spring ', '2013', '780', '560', '1340', '4', 'None', 'MJCET', 'Electronics and Instrumentation', '6.4', '100', '0')
(490, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '720', '1520', '5.5', '118', 'None', '0', '0', '0', '0')
(491, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '162', '142', '304', 'None', '97', 'IES IPS Academy', 'Electronics and communication', '7.6', '100', '42')
(492, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '154', '317', '3.5', '99', 'BESU Shibpur', 'Computer Science and Technology', '7.470000000000001', '100', '22')
(493, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2007', '800', '550', '1350', '4.5', '283', 'MU', 'Electronics', '5.5', '100', '0')
(494, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '161', '149', '310', '3.5', '101', 'JNTU', 'Computer Science', '6.544', '100', '0')
(495, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '170', '164', '334', '3.5', '113', 'Amrita School of Engineering', 'CSE', '7.73', '10', '0')
(496, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '500', '1280', '3', '95', 'MU', 'Computer', '7.4', '100', '0')
(497, 'Northeastern University', '1', 'Admit', 'MS', 'CS', 'Spring ', '2015', '163', '155', '318', '4.5', '111', 'Bharati Vidyapeeth', 'Instrumentation and Control', '7.566', '100', '33')
(498, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2013', '159', '143', '302', '3', '94', 'Jaypee Institute of Information Technology', 'Electronics and Communication', '7', '10', '0')
(499, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '164', '152', '316', '3', '98', 'None', '0', '0', '0', '0')
(500, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '490', '1280', '4.5', '108', 'SSN College of Engineering', 'Electronics And Communication Engineering', '8.2', '100', '0')
(501, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '146', '308', '4', '105', 'SSN College of Engineering', 'Information Technology', '8.2', '100', '0')
(502, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '530', '1300', '3.5', '100', 'None', 'Computer engineering', '6.9', '100', '0')
(503, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '148', '307', '3.5', '109', 'Valliammai Engineering College', 'ECE- Electronics and Communications Engineering', '7.8', '100', '0')
(504, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '390', '1190', '3', '103', 'Pune University', 'Information Technology', '6.892', '100', '0')
(505, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '161', '323', '4', '112', 'Thadomal Shahani Engineering College', 'Computer Science', '7.5', '100', '12')
(506, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '410', '1210', '3', '99', 'Sarvajanik College of Engineering & Technology', 'Computer Engineering', '7.5', '100', '0')
(507, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '158', '322', '3.5', '113', 'D J Sanghvi', 'computer engineering', '7.35', '100', '0')
(508, 'Northeastern University', '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2013', '730', '550', '1280', '4', '105', 'L D College Of Engineering', 'Computer Engineering', '6.890000000000001', '100', '0')
(509, 'Northeastern University', '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '740', '520', '1260', '4', '96', 'SSN College of Engineering', 'Electrical and Electronics Engineering', '7.2', '100', '0')
(510, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Summer ', '2013', '159', '152', '311', '4', '102', 'K J Somaiya College of Engiineering', 'Mechanical Engg.', '5.5', '100', '0')
(511, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2013', '162', '151', '313', '3', '100', 'MDU', 'ECE', '6.2', '100', '0')
(512, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Spring ', '2013', '165', '146', '311', '3', '97', 'D J Sanghvi', 'Chemical', '5.4', '100', '0')
(513, 'Northeastern University', '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2014', '158', '148', '306', 'None', 'None', 'VTU', 'Electronics and Communication', '7.4', '100', '29')
(514, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2014', '162', '153', '315', '3.5', 'None', 'JNTU', 'electrical engineering', '7', '100', '0')
(515, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '550', '1340', '3', '103', 'U P Tech University', 'Computer Science', '7.184', '100', '0')
(516, 'Northeastern University', '1', 'Admit', 'MS', 'Information Security', 'Fall ', '2008', '700', '530', '1230', '3.5', '111', 'None', '0', '0', '0', '0')
(517, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '700', '490', '1190', '3', '92', 'GTU', 'Mechanical Engg.', '6.5', '10', '0')
(518, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '730', '520', '1250', '3', '89', 'VTU', 'Electronics & Communication', '6.62', '100', '0')
(519, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '720', '370', '1090', '3', 'None', 'SVCE', 'Electrical Engineering', '8.1', '10', '0')
(520, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management / Industrial Engineering / IMSE', 'Fall ', '2015', '165', '160', '325', '4.5', 'None', 'Columbia University', '0', '0', '0', '0')
(521, 'Northeastern University', '1', 'Admit', 'MS', 'Electronic and Telecommunication Engineering', 'Fall ', '2012', '165', '146', '311', '3', '104', 'NIT Calicut', 'Electronics and Communications', '8.3', '10', '0')
(522, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '153', '315', '3', '109', 'PSG College of Technology', 'IT', '9.09', '10', '19')
(523, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '159', '144', '303', '3', '100', 'B.S ABDUR RAHMAN UNIVERSITY', 'Electronics and communication', '0.851', '100', '0')
(524, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '760', '530', '1290', '4.5', '110', 'VTU', 'Electronics and Communication', '7.43', '100', '0')
(525, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '148', '306', '2.5', 'None', 'JNTU', 'Computer Science and Engineering', '7', '100', '17')
(526, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '158', '149', '307', '4', '96', 'MU', 'EXTC', '6.484999999999999', '100', '20')
(527, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '158', '144', '302', '3', '90', 'Thadomal Shahani Engineering College', 'CS', '7', '10', '0')
(528, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '750', '600', '1350', '3.5', '100', 'SSN College of Engineering', 'EEE', '8.61', '10', '0')
(529, 'Northeastern University', '1', 'Admit', 'MS', 'Information Security', 'Fall ', '2011', '720', '570', '1290', '3', '111', 'University of Pune', 'Computer Science', '5.66', '100', '0')
(530, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2009', '780', '520', '1300', '3', '110', 'GITAM', 'ECE', '9.55', '10', '0')
(531, 'Northeastern University', '1', 'Admit', 'MS', 'Biotechnology', 'Fall ', '2011', '610', '540', '1150', '3.5', 'None', 'None', '0', '3', '4', '0')
(532, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2013', '154', '145', '299', '2.5', '82', 'West Bengal University Of Technology', 'Electronic & Communication', '7.23', '10', '0')
(533, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '640', '1440', '3', '115', 'MAIT GGSIPU', 'CSE', '7.9', '100', '0')
(534, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '149', '308', '3.5', '104', 'SSN College of Engineering', 'Computer Science', '8.281', '100', '0')
(535, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '158', '142', '300', '3', '83', 'Pune University', 'computer engineering', '6.415000000000001', '100', '0')
(536, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '150', '313', '4', '108', 'NMIMS', 'IT', '3.2', '4', '0')
(537, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '760', '500', '1260', '3', '86', 'TSEC', 'Computer Science', '7.4', '100', '0')
(538, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '158', '148', '306', '3', '104', 'SASTRA', 'CSE', '8.1', '10', '0')
(539, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '160', '161', '321', '4', '106', 'PSG College of Technology', 'Electronics and Communication', '8.82', '10', '24')
(540, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '690', '500', '1190', '3.5', '101', 'MU', 'Computer', '6.6', '100', '0')
(541, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '152', '313', '3', '101', 'UPTU', 'CS', '7.1', '100', '0')
(542, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '147', '310', '3', '99', 'K J Somaiya College of Engiineering', 'Computers', '6.2', '100', '0')
(543, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '150', '314', 'None', '104', 'None', '0', '0.806', '100', '0')
(544, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '155', '317', '4.5', '114', 'Manipal Institue of Technology', 'Computer Science', '9.46', '10', '12')
(545, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '770', '490', '1260', '3.5', '101', 'PTU Jallandhar', 'Computer Science', '6.92', '100', '0')
(546, 'Northeastern University', '1', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '161', '156', '317', '3', '112', 'Jaypee Institute of Information Technology', 'ECE', '5.5', '10', '0')
(547, 'Northeastern University', '1', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2015', '160', '150', '310', '3.5', '100', 'MSRIT', 'Civil Engineering', '9.17', '10', '0')
(548, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2013', '770', '580', '1350', '3', '98', 'D j Sanghvi', 'Chemical Engineering', '5.9', '100', '0')
(549, 'Northeastern University', '1', 'Admit', 'MS', 'Electronic and Telecommunication Engineering', 'Fall ', '2012', '780', '320', '1100', '3', 'None', 'MU', 'Electronics and Telecommunication', '6.3', '100', '0')
(550, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '159', '150', '309', '3', '98', 'NIT Kurukshetra', 'Mechanical Engineering', '8', '10', '0')
(551, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '148', '307', '3', '104', 'Anna University', 'Computer Science', '7.8', '100', '0')
(552, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '740', '390', '1130', '3.5', '98', 'Dharamsinh Desai University', 'Information Technology', '7.25', '100', '0')
(553, 'Northeastern University', '1', 'Admit', 'MS', 'Information Security', 'Fall ', '2012', '800', '390', '1190', '3.5', '97', 'MU', 'Computer Engineering', '6.3', '100', '0')
(554, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '152', '315', '4', '103', 'Amrita School of Engineering', 'Computer Science and Engineering', '7.32', '10', '30')
(555, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '590', '1360', '5', '98', 'COEP', 'Information Technology', '8.42', '10', '0')
(556, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '158', '138', '296', '3.5', '90', 'MU', 'Information Technology', '7.2', '100', '0')
(557, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '158', '148', '306', '3', '96', 'University of Mumbai', 'Computer Engineering', '7.040000000000001', '100', '0')
(558, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '750', '550', '1300', '4', '107', 'VTU', 'EE', '7.1', '100', '0')
(559, 'Northeastern University', '1', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2015', '157', '149', '306', '4', '108', 'JBIET', 'Civil Engineering', '7.95', '100', '17')
(560, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '151', '312', '4.5', '115', 'Amity University', 'Computer Science', '7.36', '10', '0')
(561, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '760', '470', '1230', '4.5', '97', 'Pune University', '0', '7', '100', '0')
(562, 'Northeastern University', '1', 'Admit', 'MS', 'pharmaceutics', 'Fall ', '2012', '157', '152', '309', '3.5', '111', 'Manipal Institue of Technology', 'Pharmacy', '8.25', '10', '0')
(563, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '700', '480', '1180', '3.5', '100', 'Sri Venkateswara College of Engineering', 'CSE', '7.1', '100', '0')
(564, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '550', '1350', '4.5', '108', 'Don Bosco Institute of Technology', 'Computers', '6.6', '100', '0')
(565, 'Northeastern University', '1', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2015', '161', '151', '312', '4', '107', 'MSRIT', 'Civil Engineering', '9.35', '10', '0')
(566, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '166', '151', '317', '3', '103', 'Amrita School of Engineering', 'CS', '7.64', '10', '0')
(567, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '170', '153', '323', '3.5', '103', 'Pune University', 'ECE', '7.2', '100', '0')
(568, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2014', '162', '162', '324', '4', '116', 'PESIT', '0', '0', '0', '0')
(569, 'Northeastern University', '1', 'Admit', 'MS', 'Health Informatics', 'Fall ', '2014', '149', '153', '302', '3.5', '110', 'Padmashree Dr D Y Patil University', 'Btech Bioinformatics', '6.3', '100', '0')
(570, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '530', '1330', '4', 'None', 'MU', 'Information Technology', '7.4', '100', '0')
(571, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '700', '460', '1160', '3', '92', 'Pune University', 'Computer', '6.2', '100', '0')
(572, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2013', '760', '270', '1030', '2.5', '76', 'University of Mumbai', 'Electronics & telecom', '6.689', '100', '0')
(573, 'Northeastern University', '1', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '170', '156', '326', '4', '110', 'MU', 'Electronics & Telecommunication', '0', '100', '57')
(574, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '520', '1300', '3.5', '101', 'Model Engineering College', 'Computer Science', '6.7', '100', '0')
(575, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '168', '149', '317', '3', '102', 'BVM Engineering College', 'Electronics and Telecommunication', '7.7', '10', '0')
(576, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '780', '400', '1180', '4', '260', 'MU', 'Computers', '6.2', '100', '0')
(577, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2012', '770', '430', '1200', '3.5', '100', 'Vidyalankar Institute of Technology', 'Electronics and Telecommunication', '0', '0', '0')
(578, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(579, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '162', '145', '307', '3', '96', 'University of Pune', 'Mechanical', '5.7', '100', '0')
(580, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2009', '790', '640', '1430', 'None', '115', 'VTU', 'Electronics and Communication', '7.6', '100', '0')
(581, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '780', '490', '1270', '3', 'None', 'Pune University', 'IT', '6.579000000000001', '100', '0')
(582, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2011', '730', '560', '1290', '3', '110', 'NIT Jalandhar', 'ECE', '7.28', '10', '0')
(583, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '156', '154', '310', '4', '112', 'None', '0', '0', '0', '0')
(584, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '164', '141', '305', '3.5', '98', 'MU', 'Information Technology', '6.795999999999999', '100', '0')
(585, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Spring ', '2016', '163', '156', '319', '4', '108', 'Siddaganga Institue of Technology', 'Mechanical', '8.32', '10', '2')
(586, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '150', '309', '3', '103', 'MU', 'IT', '6.884', '100', '0')
(587, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '152', '315', '3.5', '101', 'Osmania University', 'C.S.E', '7.7', '100', '0')
(588, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '660', '600', '1260', '4', '111', 'University of Pune', 'Computer Engineering', '6.581', '100', '0')
(589, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '750', '650', '1400', '4', '113', 'IIIT Hyderabad', 'Computer Science and Engineering', '7.77', '10', '0')
(590, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '154', '152', '306', '3.5', '105', 'D J Sanghvi', 'IT', '7.2', '100', '36')
(591, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '160', '154', '314', '3', '94', 'University of Texas Dallas', 'EEE', '0', '0', '0')
(592, 'Northeastern University', '1', 'Admit', 'MS', 'EE / CS', 'Fall ', '2013', '800', '410', '1210', '3', '115', 'RKNEC', 'EC', '7.455', '100', '0')
(593, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '800', '550', '1350', '3.5', '102', 'None', 'CS', '7.2', '100', '0')
(594, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2012', '790', '470', '1260', '3', '7', 'SASTRA', 'Electronics and Communications engineering', '6.62', '10', '0')
(595, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '640', '1440', '3', '108', 'Amrita School of Engineering', 'Information Technology', '7.1', '10', '0')
(596, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '148', '307', '3', '104', 'SSN College of Engineering', 'EEE', '7', '100', '0')
(597, 'Northeastern University', '1', 'Admit', 'MS', 'CS', 'Fall ', '2013', '700', '560', '1260', '3', '108', 'MU', 'I.T', '6.9', '100', '0')
(598, 'Northeastern University', '1', 'Admit', 'MS', 'Management Information System', 'Fall ', '2014', '159', '148', '307', '3', '89', 'BITS Pilani', 'MBA', '7.77', '10', '45')
(599, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2011', 'None', 'None', '0', 'None', 'None', 'Institut Teknologi Bandung', 'Industrial Engineering', '3.4', '4', '0')
(600, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '160', '150', '310', 'None', '110', 'Anna University', 'ECE', '8.46', '10', '16')
(601, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '730', '1500', '4', '113', 'CoE Trivandrum', 'Computer science', '7.1', '100', '0')
(602, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '730', '490', '1220', '3', '94', 'MU', 'Comp. Engg', '7.7', '100', '0')
(603, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '157', '152', '309', '3.5', '100', 'Rajasthan Technical University', 'Computer Science', '7.5', '100', '0')
(604, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '160', '145', '305', '3.5', '96', 'Thadomal Shahani Engineering College', 'EXTC', '6.5', '100', '0')
(605, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '620', '1380', '5', '119', 'MU', 'Electronics and Telecommunications', '6.2', '100', '0')
(606, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '76', '590', '666', '3.5', '94', 'NIT Raipur', 'IT', '7.93', '10', '0')
(607, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '158', '322', '4', '105', 'BITS Pilani', 'Computer Science', '7.64', '10', '35')
(608, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '580', '1380', '4', '107', 'MS University Baroda', 'Electronics', '7.814', '100', '0')
(609, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '159', '160', '319', '3.5', '115', 'None', 'Computers', '7.84', '10', '0')
(610, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '167', '145', '312', '2.5', '89', 'SRM', 'COMPUTER SCIENCE AND ENGINEERING', '8.06', '10', '27')
(611, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Networks', 'Spring ', '2014', '167', '150', '317', '3.5', '97', 'CEG', 'Electronics and communication engineering', '7.84', '10', '0')
(612, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', 'None', 'None', '0', 'None', 'None', 'Madras Institute of Technology', 'Computer Science and Engineering', '8.2', '10', '6')
(613, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Spring ', '2013', '162', '152', '314', 'None', '112', 'SRKNEC Nagpur', 'Electronics', '6.3', '100', '0')
(614, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '156', '319', '3', 'None', 'Coimbatore Insitute of Technology', 'CSE', '8.1', '10', '0')
(615, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Spring ', '2013', '780', '460', '1240', '3.5', '101', 'Osmania University', 'Computer Science', '7.7', '100', '0')
(616, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2015', '165', '155', '320', '3.5', '107', 'MGM JNEC Aurangabad', 'Mechanical Engineering', '6.35', '100', '72')
(617, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2011', '800', '410', '1210', '3.5', '105', 'CEG', 'Electronics and Communication', '7.7', '10', '0')
(618, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '760', '520', '1280', '3.5', '86', 'University of Mumbai', 'Instrumentation', '0', '0', '0')
(619, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2015', '163', '155', '318', '4', '114', 'NIT Kurukshetra', 'Electrical Engineering', '9.4', '10', '0')
(620, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '151', '155', '306', '4', '111', 'None', '0', '0', '0', '0')
(621, 'Northeastern University', '1', 'Admit', 'MS', 'CS/SE', 'Fall ', '2012', '160', '149', '309', '4', '105', 'Sona College', 'Information Technology', '7.6', '100', '0')
(622, 'Northeastern University', '1', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(623, 'Northeastern University', '1', 'Admit', 'MS', 'CS', 'Fall ', '2014', '159', '149', '308', '3.5', '95', 'MU', 'IT', '6.4', '100', '33')
(624, 'Northeastern University', '1', 'Admit', 'MS', 'Information Security', 'Fall ', '2012', '158', '145', '303', '3', 'None', 'VTU', 'Electronics and communication', '5.6', '100', '0')
(625, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2015', '163', '152', '315', '3.5', '113', 'Maharishi Dayanand University', 'Electronics and Communication Engineering', '3.65', '4', '0')
(626, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2012', '750', '650', '1400', '4', '114', 'MU', 'Electronics and Telecommunication', '6.9', '100', '0')
(627, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '157', '150', '307', '3', 'None', 'Panimalar Engineering College', 'I.T', '7', '100', '34')
(628, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '780', '500', '1280', '3', '99', 'Sardar Patel College of Engineering', 'CS', '7.178', '100', '0')
(629, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '149', '308', '3.5', '98', 'Bannari Amman Institute of Technology', 'EEE', '9.01', '10', '0')
(630, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '165', '150', '315', '3.5', '7', 'Jaypee Institute of Information Technology', 'IT', '7.9', '10', '12')
(631, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '690', '590', '1280', '3', '104', 'SASTRA', 'IT', '0.8119999999999999', '100', '0')
(632, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '156', '148', '304', '3', '109', 'Sri Sairam Engineering College', 'Information Technology', '8.45', '100', '0')
(633, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '152', '311', '3.5', '107', 'VTU', 'Computer Science', '8.2', '100', '0')
(634, 'Northeastern University', '1', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '161', '151', '312', '3.5', '97', 'BMSIT', 'Computer Science', '7', '100', '0')
(635, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '158', '320', '4', 'None', 'NIT Raipur', 'Computer Science & Engg.', '7.76', '10', '8')
(636, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '700', '640', '1340', '3', '91', 'MU', 'Information Technology', '6.3', '100', '0')
(637, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '157', '144', '301', '3.5', '97', 'MU', 'Computer Engineering', '7.5', '100', '0')
(638, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '168', '153', '321', '3', '108', 'NIT Surathkal', '0', '7.65', '10', '0')
(639, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '155', '147', '302', '3.5', '96', 'Anna University', 'CSE', '7.32', '10', '6')
(640, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '148', '310', '5', '108', 'Amrita School of Engineering', 'CSE', '7.68', '10', '0')
(641, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '154', '318', 'None', 'None', 'Sardar Patel University', 'Information Technology', '8.94', '10', '0')
(642, 'Northeastern University', '1', 'Admit', 'MS', 'MEM', 'Fall', 'None', '158', '147', '305', '3', '96', 'JNTU', 'ece', '6.8', '100', '0')
(643, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '155', '315', '3.5', '107', 'MU', 'Computer Engineering', '3.8', '4', '0')
(644, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '740', '530', '1270', '3', '108', 'PICT', 'Information Technology', '7.236', '100', '0')
(645, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '690', '670', '1360', '4', '105', 'Nagpur University', 'BCA Post Grad Diploma in CS', '5.8', '100', '0')
(646, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '162', '153', '315', '3.5', '106', 'Pune University', 'Information Technology', '6.9', '100', '0')
(647, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '156', '145', '301', 'None', '89', 'MIT PUNE', 'Mechanical Engg.', '6.8', '100', '0')
(648, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2014', '163', '155', '318', '4', 'None', 'AISSMS College of Engineering Pune', 'Mechanical ENGG', '6.12', '100', '0')
(649, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '151', '314', '3', '103', 'PSG College of Technology', 'Computer science and Engineering', '8.3', '10', '41')
(650, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '163', '160', '323', '3', '106', 'Guru Gobind Singh Indraprashta University', 'Computer Science', '8.579', '100', '0')
(651, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2007', '760', '370', '1130', '4', '263', 'Pune University', 'Electronics & Telecommunications', '6.55', '100', '0')
(652, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '159', '150', '309', '3.5', '106', 'WBUT', 'IT', '7.7', '10', '0')
(653, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '168', '163', '331', '5', '112', 'GITAM', 'Cse', '6.88', '10', '0')
(654, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '161', '153', '314', '3', '110', 'VTU', 'CSE', '8.333', '100', '38')
(655, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '159', '157', '316', '3', '101', "Vidyavardhini\\'s College of Engg and Technology", 'Computer Engineering', '7.322', '100', '0')
(656, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '170', '156', '326', '3.5', '108', 'COEP', 'Mechanical', '7.18', '10', '15')
(657, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '157', '165', '322', '3.5', 'None', 'VTU', 'Information Science', '7.6', '100', '0')
(658, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '750', '550', '1300', '4', '273', 'MGMCET Mumbai University', 'EXTC', '6.7', '100', '0')
(659, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '164', '149', '313', '3', '91', 'Punjab Technical University', 'ECE', '7.74', '100', '0')
(660, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '670', '1470', '4', '111', 'MU', 'Computer Engineering', '6.68', '100', '0')
(661, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '158', '318', 'None', '109', 'VTU', 'Computer Science', '8.107', '100', '0')
(662, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '540', '1340', '4', '112', 'VJTI', 'ECE', '6.7', '10', '0')
(663, 'Northeastern University', '1', 'Admit', 'MS', 'MIS-management related courses', 'Fall ', '2015', '158', '145', '303', '3', 'None', 'JNTU', 'Mechanical', '8.317', '100', '0')
(664, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '790', '570', '1360', '3.5', '107', 'ANU', 'Computer Science', '8.5', '100', '0')
(665, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '153', '315', '3.5', '104', 'The National Institute of Engineering', 'Computer Science & Engineering', '9.61', '10', '27')
(666, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '163', '152', '315', 'None', '105', 'MU', 'Mechanical', '7.0120000000000005', '100', '0')
(667, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '159', '151', '310', '4', '107', 'Bangalore Institute of Technology', 'ISE', '7.176', '100', '28')
(668, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '155', '150', '305', '3', 'None', 'Anna University', 'EIE', '7.8', '100', '0')
(669, 'Northeastern University', '1', 'Admit', 'MS', 'pharmacy', 'Fall ', '2011', '580', '470', '1050', '2.5', '103', 'Dr.Bhanuben Nanavati college of Pharmacy', 'Pharmacy', '0', '0', '0')
(670, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2012', '157', '151', '308', '3.5', '112', 'Siddaganga Institue of Technology', 'Electrical and Electronics Engg', '5.766', '100', '0')
(671, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '157', '145', '302', '3', '102', 'None', '0', '0', '0', '19')
(672, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2011', '800', '550', '1350', '4', '106', 'VTU', 'Electronics and Communication', '7.220000000000001', '100', '0')
(673, 'Northeastern University', '1', 'Admit', 'MS', 'Biotechnology', 'Fall ', '2006', '620', '730', '1350', '5.5', '287', 'MU', 'Microbiology / Biotechnology', '7.3', '100', '0')
(674, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2011', '730', '340', '1070', '3', '80', 'University of Mumbai', 'Electronics & Telecommunication', '6.9719999999999995', '100', '0')
(675, 'Northeastern University', '1', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(676, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '800', '590', '1390', '3.5', '107', 'University of Mumbai', 'IT', '6.34', '100', '0')
(677, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '152', '314', '3.5', '102', 'Sri Jayachamarajendra College of Engineering', 'Computer Science and Engineering', '8.5', '10', '0')
(678, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '780', '440', '1220', '3', '97', 'MU', 'Instrumentation Engineering', '6.5', '100', '0')
(679, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '480', '1230', '3.5', '99', 'JNTU', 'IT', '7.8', '100', '0')
(680, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2010', '790', '560', '1350', 'None', '94', 'MU', 'Mechanical', '6.1', '100', '0')
(681, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '161', '143', '304', '3.5', '108', 'Vidyalankar Institute of Technology', 'Information Technology', '6.3', '100', '0')
(682, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '550', '1350', '4', '107', 'TSEC', 'Computer Engineering', '7.4', '100', '0')
(683, 'Northeastern University', '1', 'Admit', 'MS', 'pharmacy', 'Fall ', '2011', '900', '270', '1170', '2.5', '100', 'JNTU', 'pharmacy', '6.5', '100', '0')
(684, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '160', '152', '312', '3', '107', 'Sikkim Manipal Institute of Technology', 'Computer Sciences', '8.34', '10', '28')
(685, 'Northeastern University', '1', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '160', '149', '309', '3', '101', 'GGSIPU', 'CSE', '7.9', '100', '0')
(686, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '164', '149', '313', '3', '104', 'Nirma Institute of Technology', 'Electronics and Communication Engineering', '8.1', '10', '0')
(687, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '760', '620', '1380', '2.5', 'None', 'Kerala University', 'Information technology', '6.8', '10', '0')
(688, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '158', '149', '307', '3', '101', 'Shri Shankaracharya College of Engi & Tech Bhilai', 'Computer Science', '7.223999999999999', '100', '20')
(689, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2013', '157', '144', '301', '3', '93', 'Pondicherry University', 'Mechanical Engineering', '6.970000000000001', '100', '0')
(690, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '163', '141', '304', '4', '103', 'R V College of Engineering', 'Computer Science', '7.2', '100', '0')
(691, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '157', '151', '308', '4', '101', 'VTU', 'CSE', '7.5200000000000005', '100', '25')
(692, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '156', '144', '300', 'None', 'None', 'Vidyalankar Institute of Technology', 'Computer Engg', '6.5', '100', '0')
(693, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '151', '313', '4.5', '108', 'Shivaji University', 'Computer Science', '6.7', '100', '0')
(694, 'Northeastern University', '1', 'Admit', 'MS', 'Information Technology', 'Fall ', '2008', '750', '520', '1270', '5.5', '110', 'Thakur College of Engineering and Technology', 'Information Technology', '6.1', '100', '0')
(695, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '720', '610', '1330', '4.5', '112', 'Sri Sairam Engineering College', 'Computer Science', '8.2', '100', '0')
(696, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '158', '146', '304', '3.5', '102', 'Bhilai Institute of Technology', 'Computer Science', '7.8', '10', '65')
(697, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '151', '309', '4', '107', 'Chattisgarh Swami Vivekanand Technical University', 'Computer Science and Engineering', '8.52', '10', '0')
(698, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '170', '153', '323', '3.5', '90', 'Osmania University', 'ECE', '7.7', '100', '0')
(699, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '720', '450', '1170', 'None', '87', 'RAIT', 'Electronics', '0', '0', '0')
(700, 'Northeastern University', '1', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '161', '141', '302', '3', '85', 'GITAM', 'EEE', '8.559999999999999', '100', '33')
(701, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '165', '151', '316', '3.5', '113', 'nitk', 'ee', '7.59', '10', '24')
(702, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '168', '160', '328', '4', '113', 'Pune University', 'Computer Science', '7', '100', '0')
(703, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2012', '780', '500', '1280', '3.5', '92', 'BIT Mesra', 'Electical and Electronics Engineering', '6.28', '10', '0')
(704, 'Northeastern University', '1', 'Admit', 'MS', 'Information Security', 'Fall ', '2011', '770', '520', '1290', '3', '105', 'NIT Patna', 'IT', '9.18', '10', '0')
(705, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '610', '1410', '3', '108', 'MU', 'Electronics and Telecom', '6.6', '100', '0')
(706, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2011', '690', '570', '1260', '3.5', '103', 'Gujarat Technological University', 'Electronics and Communication', '7.15', '100', '0')
(707, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '800', '360', '1160', '3.5', '108', 'Dr. B.A.M.U.', 'MECHANICAL', '6.5', '100', '0')
(708, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2015', '160', '150', '310', '3.5', '88', 'KL University', 'Mechanical', '7.3', '10', '9')
(709, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '540', '1310', '4', '102', 'Rajiv Gandhi Technical University', 'Computer Science', '7.3', '100', '0')
(710, 'Northeastern University', '1', 'Admit', 'MS', 'Information Systems', 'Spring ', '2013', '147', '158', '305', '4', '92', 'H.B.T.I. Kanpur', 'Computer Science and Engineering', '6.9', '100', '0')
(711, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '152', '313', '4.5', '106', 'VTU', 'CSE', '7.6', '100', '0')
(712, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2015', '165', '149', '314', '4', '98', 'VIT', 'School of Electrical Engineering', '8.1', '10', '0')
(713, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2012', '162', '158', '320', '3', '108', 'RTM Nagpur University', 'ETC', '7.345000000000001', '100', '0')
(714, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '161', '152', '313', '4', '110', 'JUIT', 'CSE', '8', '10', '0')
(715, 'Northeastern University', '1', 'Admit', 'MS', 'Entrepreneurship', 'Fall ', '2014', '151', '149', '300', '3', '97', 'VIT', 'ECE', '6.45', '10', '0')
(716, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall', 'None', '151', '159', '310', '3', '107', 'NIT Tirchy', 'Production Engg', '7.37', '10', '0')
(717, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '740', '620', '1360', '3', '109', 'Anna University', 'CSE', '8.5', '10', '0')
(718, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '730', '530', '1260', '3', '105', 'K J Somaiya College of Engiineering', 'Information Technology', '7', '100', '0')
(719, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '720', '1520', '3.5', '106', 'DU', 'EE', '7.1', '100', '0')
(720, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '155', '152', '307', '3', '92', "St Joseph's College of Engineering", 'Computer Science', '8.51', '10', '0')
(721, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '800', '720', '1520', '4.5', '120', 'R V College of Engineering', 'ECE', '7.720000000000001', '100', '0')
(722, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '155', '152', '307', '3', '105', 'Reva Institute of Technology', 'Computer Science', '7.340000000000001', '100', '0')
(723, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '500', '1290', '2.5', '106', 'Amrita School of Engineering', 'ECE', '6.68', '10', '0')
(724, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Spring ', '2016', '156', '154', '310', '3.5', '106', 'SRM', 'MBA', '8.9', '10', '0')
(725, 'Northeastern University', '1', 'Admit', 'MS', 'MIS-management related courses', 'Fall ', '2013', '164', '155', '319', '3', '110', 'Panjab University', 'CSE', '7.609999999999999', '100', '0')
(726, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '660', '1430', '4', '106', 'VTU', 'Information Science', '7.1', '100', '0')
(727, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '154', '316', '3', '105', 'Model Engineering College', 'Computer Science', '6.8', '100', '0')
(728, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '161', '155', '316', '3', '103', 'RGTU', 'IT', '7.3', '100', '0')
(729, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '800', '510', '1310', '3', '103', 'BVBCET', 'Information Science', '7.18', '100', '0')
(730, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '780', '310', '1090', '3', '99', 'K.S.I.T', 'Computer Science', '7.5', '100', '0')
(731, 'Northeastern University', '1', 'Admit', 'MS', 'Information Security', 'Fall ', '2015', '167', '146', '313', '3', 'None', 'Institute of Technical Education and Research', 'Computer Science & Engineering', '7.98', '10', '36')
(732, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '680', '1450', '4.5', '116', 'MU', 'Computers', '6.4', '100', '0')
(733, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall', 'None', '165', '153', '318', '4', '106', 'Jadavpur University', 'Electrical Engg', '7.98', '10', '24')
(734, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '600', '1370', '4', '105', 'Pune University', 'Computer', '6.4239999999999995', '100', '0')
(735, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'Bangalore Institute of Technology', 'Information Science', '7.88', '100', '0')
(736, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '149', '312', '3', '100', 'None', '0', '7.39', '10', '32')
(737, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '720', '450', '1170', '3', '100', 'MU', 'Information Technology', '6.9', '100', '0')
(738, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Spring ', '2012', '740', '450', '1190', 'None', '103', 'Mody University', 'Computer Science', '6.93', '10', '0')
(739, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '170', '150', '320', '3', '104', 'Jaypee Institute of Information Technology', 'Computer Science Engineering', '7.1', '100', '0')
(740, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '158', '143', '301', '3', '101', 'JSS Noida', 'Information Science', '7.6', '100', '0')
(741, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring', 'None', '730', '510', '1240', '3.5', 'None', 'University of Pune', '0', '7', '100', '0')
(742, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '750', '310', '1060', '3', '98', 'Govt. college of Engineering Aurangabad', 'IT', '6.8', '100', '0')
(743, 'Northeastern University', '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2014', '155', '153', '308', '3', '106', 'University of Pune', 'Information Technology', '5.93', '100', '7')
(744, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2014', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(745, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '520', '1290', '3', '118', 'SSN College of Engineering', 'Information Technology', '7.2', '100', '0')
(746, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2013', '159', '144', '303', '3', '96', 'SSN College of Engineering', 'ECE', '7.6', '100', '0')
(747, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '740', '300', '1040', '3', '88', 'M.H.S.S', 'Electronics and Telecommunications', '0', '0', '0')
(748, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Spring ', '2013', '156', '150', '306', '3', '91', 'JSS Noida', 'EC', '6', '100', '0')
(749, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '770', '540', '1310', '3', 'None', 'None', '0', '0', '0', '0')
(750, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '166', '152', '318', '4', '111', 'NITK Surathkal', 'Electrical & Electronics', '8.3', '10', '24')
(751, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '360', '1160', '4', '106', 'MU', 'Computers', '6.74', '100', '0')
(752, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '780', '660', '1440', '4', '287', 'MU', 'Computer engg', '6.1', '100', '0')
(753, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '156', '146', '302', '3.5', '82', 'BNMIT', 'CSE', '6', '100', '0')
(754, 'Northeastern University', '1', 'Admit', 'MS', 'pharmacy', 'Fall ', '2011', '740', '440', '1180', '2.5', '88', 'Sree Vidyanikethan Engineering College', 'pharmacy', '7', '10', '0')
(755, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '149', '308', '3', '105', 'MPSTME NMIMS', 'CS', '3', '4', '0')
(756, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall', 'None', '165', '159', '324', '4', '118', 'Rajiv Gandhi Institute Of Technology', 'Information Technology', '0', '0', '0')
(757, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '680', '600', '1280', '3.5', '97', 'MU', 'I.T', '6.6', '100', '0')
(758, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '161', '146', '307', '3', '99', 'COEP', 'Instrumentation & Control', '7.57', '10', '20')
(759, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2007', '800', '390', '1190', '3.5', '107', 'MU', 'instrumentation', '0', '0', '0')
(760, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics & Communication', 'Fall ', '2012', '800', '570', '1370', '3.5', '108', 'Gujarat Technological University', 'Electronics and Communication', '7.7', '10', '0')
(761, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '156', '151', '307', '3', '97', 'Osmania University', 'CSE', '7.75', '100', '0')
(762, 'Northeastern University', '1', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '170', '152', '322', '4', '110', 'VIT University', 'Energy Division', '8.62', '10', '0')
(763, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '168', '153', '321', '3', '101', 'DA-IICT', 'ICT', '6.57', '10', '0')
(764, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '162', '150', '312', '4', '102', 'SRM', 'IT', '7.95', '10', '0')
(765, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '430', '1210', '4', '105', 'VTU', 'CS', '7.5200000000000005', '100', '0')
(766, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '167', '157', '324', '3.5', '102', 'None', 'Mechanical', '8', '100', '29')
(767, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '159', '148', '307', '3', '101', 'University of Pune', 'Mechanical', '6.8', '100', '0')
(768, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall', 'None', '162', '150', '312', 'None', '100', 'Nirma Institute of Technology', 'ECE', '7.74', '10', '0')
(769, 'Northeastern University', '1', 'Admit', 'MS', 'Manufacturing Engineering', 'Spring ', '2013', '159', '151', '310', '3', '111', 'Vignan Institute of Technology and Science', 'Mechanical', '7.688', '100', '0')
(770, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2013', '157', '149', '306', '2.5', '94', 'CEG', 'Mechanical Engineering', '6.08', '10', '0')
(771, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'R V College of Engineering', 'Computer Science', '0', '0', '0')
(772, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '159', '144', '303', '3.5', '100', 'MU', 'Information Technology', '6.94', '100', '0')
(773, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '149', '313', '3.5', '100', 'University of Dhaka', 'Computer Science & Engineering', '3.44', '4', '40')
(774, 'Northeastern University', '1', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '790', '470', '1260', '3.5', '95', 'Pune University', 'Information Technology', '6.393', '100', '0')
(775, 'Northeastern University', '1', 'Admit', 'MS', 'Information', 'Fall ', '2014', '159', '156', '315', 'None', '109', 'Manipal Institue of Technology', 'Printing Technology', '7.95', '10', '0')
(776, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '156', '154', '310', '3', '105', 'MU', 'Information Technology', '5.5', '100', '0')
(777, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '162', '143', '305', '3.5', '105', 'MU', 'Computer', '7.2', '100', '0')
(778, 'Northeastern University', '1', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2013', '159', '150', '309', '3', '107', 'Vidyalankar Institute of Technology', 'computer science', '6.5', '100', '0')
(779, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '710', '1500', '4.5', 'None', 'D J Sanghvi', 'IT', '6.7', '100', '0')
(780, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Spring ', '2012', '680', '430', '1110', '3', '100', 'Anna University', 'Information Technology', '7', '10', '0')
(781, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '470', '1220', '3', '94', 'Pune University', 'E & Tc', '5.8', '100', '0')
(782, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '158', '155', '313', '4', '109', 'MU', 'I.T', '6.3', '100', '0')
(783, 'Northeastern University', '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '780', '420', '1200', '3', '96', 'RGPV', 'Electrical', '6.7', '100', '0')
(784, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '750', '450', '1200', '3', '104', 'nrec', 'ece', '8.3', '100', '0')
(785, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '163', '152', '315', '3', '93', 'None', '0', '0', '0', '18')
(786, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '155', '313', '3.5', '111', 'SIES Graduate School of Technology', 'Information Technology', '7.442', '100', '36')
(787, 'Northeastern University', '1', 'Admit', 'MS', 'Information Assurance', 'Fall ', '2013', '159', '150', '309', '3', '92', 'RTU', 'IT', '6.2', '100', '0')
(788, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '154', '148', '302', '4', '95', 'Bharati Vidyapeeth', 'Computer Engg.', '6.65', '100', '0')
(789, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '149', '312', '4', '106', 'YMCA', 'Information Technology', '8.27', '10', '0')
(790, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '161', '148', '309', '3', '102', 'R V College of Engineering', 'Information Science', '9.05', '10', '40')
(791, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '146', '309', '3', '107', 'PESIT', 'Information Science', '7.6209999999999996', '100', '0')
(792, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Spring ', '2013', '159', '149', '308', '3', '108', 'Mody Institute of Technology and Science', 'Electronics and Communications', '6.9', '10', '0')
(793, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2011', '710', '310', '1020', '2.5', '87', 'None', '0', '0', '0', '0')
(794, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '151', '313', '4', '102', 'SNIST', 'Information Technology', '6.945', '100', '0')
(795, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '12', '750', '580', '1330', '3', '90', 'University of Pune', 'ExTC', '5.9', '100', '0')
(796, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '154', '148', '302', '3', '107', 'Jain University', 'EC', '6.9', '100', '0')
(797, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2013', '158', '151', '309', '3.5', '108', 'University of Mumbai', 'Electronics and Telecommuniations', '6.893000000000001', '100', '0')
(798, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2013', '158', '151', '309', '3.5', '108', 'University of Mumbai', 'Electronics and Telecommuniations', '6.893000000000001', '100', '0')
(799, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '152', '152', '304', '3', '83', 'VTU', 'Mechanical', '7', '100', '0')
(800, 'Northeastern University', '1', 'Admit', 'MS', 'Telecom management', 'Spring ', '2012', '760', '410', '1170', '4', '110', 'MU', '0', '0', '0', '0')
(801, 'Northeastern University', '1', 'Admit', 'MS', 'Human Computer Interaction', 'Fall ', '2011', '790', '470', '1260', '4', '109', 'University of Mumbai', 'computer engineering', '7.2', '100', '0')
(802, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '161', '141', '302', '3', '85', 'Pune University', 'electronics and telecommunication', '60', '5', '0')
(803, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '740', '460', '1200', '4', '110', 'VTU', 'CSE', '6.65', '100', '0')
(804, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '730', '540', '1270', '4', '98', 'MU', 'Computer', '6.32', '100', '0')
(805, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2013', '158', '146', '304', '4', '109', 'Pune University', 'Printing engineering', '6.7', '100', '0')
(806, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '580', '1370', '3', '83', 'Sinhgad College of Engineering', 'CS', '7.4', '100', '0')
(807, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '156', '152', '308', '3', '100', 'MU', 'Computer Engineering', '0', '100', '0')
(808, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '460', '1260', '3.5', 'None', 'MU', 'Computer Engineering', '7.212000000000001', '100', '0')
(809, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '710', '1510', '3.5', '112', 'MU', 'Computer Engg', '6.15', '100', '0')
(810, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '790', '420', '1210', '4.5', '108', 'Maharashtra Institute of Technology', 'Mechanical', '6.5329999999999995', '100', '0')
(811, 'Northeastern University', '1', 'Admit', 'MS', 'Information Technology', 'Fall ', '2011', '740', '540', '1280', '3', '99', 'Rishiraj Institute of Technology Indore', 'Electronics and Communication', '6.772', '100', '0')
(812, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '162', '151', '313', '4.5', '108', 'Bangalore Institute of Technology', 'Computer Science', '7.26', '100', '0')
(813, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2012', '740', '570', '1310', '3', '101', 'Siddaganga Institue of Technology', 'Information Science and Engineering', '7.4799999999999995', '100', '0')
(814, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '750', '600', '1350', '3.5', '110', 'MU', 'IT', '6.9', '100', '0')
(815, 'Northeastern University', '1', 'Admit', 'MS', 'Information Security', 'Fall ', '2013', '157', '150', '307', '3', '104', 'SSN College of Engineering', 'EEE', '6.9', '100', '0')
(816, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '147', '160', '307', 'None', '100', 'None', '0', '6.7', '100', '0')
(817, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2012', '157', '144', '301', '3', '91', 'VIT Pune', 'Instrumentation', '6.1', '100', '0')
(818, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Networking', 'Fall ', '2013', '166', '163', '329', '4', '109', 'D J Sanghvi', 'Electronics', '7.415000000000001', '100', '0')
(819, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '450', '1250', '4', '105', 'Fr. Conceicao Rodrigues College of Engineering', 'Computer Science', '6.404000000000001', '100', '0')
(820, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '157', '154', '311', '4.5', '115', 'Anna University', 'CSE', '8', '100', '0')
(821, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '159', '150', '309', '3.5', '108', 'None', '0', '6.736', '100', '0')
(822, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '166', '150', '316', '3', '100', 'MU', 'Electronics and Telecommunication', '6.8', '100', '0')
(823, 'Northeastern University', '1', 'Admit', 'MS', 'pharmacy', 'Fall ', '2011', '710', '410', '1120', '3', '7', 'Nirma Institute of Technology', 'Pharmacy', '8.1', '10', '0')
(824, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '158', '146', '304', '3.5', '90', 'SVNIT Surat', 'Electrical Engineering', '7.93', '10', '0')
(825, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'Pune University', '0', '0', '0', '0')
(826, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '157', '151', '308', '4', '102', 'MSRIT', 'Information Science', '8.52', '10', '0')
(827, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engg/Robotics', 'Fall ', '2013', '160', '147', '307', '3', '98', 'Pune University', 'Mechanical Engineering', '6.5', '100', '0')
(828, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '150', '313', '3', '97', 'None', '0', '0', '0', '0')
(829, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '800', '570', '1370', '4', '117', 'Osmania University', 'I.T.', '8.23', '100', '0')
(830, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '170', '155', '325', '3.5', '109', 'Maharaja Surajmal Institute of Technology', 'Information Technology', '7.9', '100', '0')
(831, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '167', '151', '318', '4', '117', 'Amrita Vishwa Vidhyapeetham', 'Computer Science', '7.2', '10', '36')
(832, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '161', '157', '318', '3', '101', 'VNR VJIET', 'Computer Science', '6.821', '100', '0')
(833, 'Northeastern University', '1', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(834, 'Northeastern University', '1', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '160', '157', '317', '3', '103', 'University of Pune', 'Mechanical Engineering', '6', '100', '0')
(835, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '152', '312', '3.5', '109', 'Gujarat Technological University', 'Computer Science', '7.8', '10', '0')
(836, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '740', '550', '1290', '4', '101', 'Gujarat Technological University', 'Computer Engineering', '3.97', '4', '0')
(837, 'Northeastern University', '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2015', '166', '145', '311', '3.5', '92', 'RGPV', 'IT', '7.4', '100', '44')
(838, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '156', '320', '3', '109', 'University of Pune', 'Computer Engineering', '5.99', '100', '0')
(839, 'Northeastern University', '1', 'Admit', 'MS', 'CS / MSIS / ITM', 'Fall ', '2012', '158', '153', '311', '3', '7', 'RGPV', 'IT', '6.44', '100', '0')
(840, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '350', '1150', '3', '91', 'UPTU', 'IT', '7.06', '100', '0')
(841, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '161', '329', '4', '114', 'Institute of Technical Education and Research', 'Computer Science', '9.1', '10', '0')
(842, 'Northeastern University', '1', 'Admit', 'MS', 'Management Information System', 'Fall ', '2013', '157', '150', '307', '4.5', '93', 'University of Mumbai', 'IT', '6', '100', '0')
(843, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '730', '550', '1280', '4', '104', 'MU', 'Computer Science', '6.7', '100', '0')
(844, 'Northeastern University', '1', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2013', '159', '152', '311', '3', '101', 'University of Mumbai', 'Computer', '6.65', '100', '0')
(845, 'Northeastern University', '1', 'Admit', 'MS', 'Information Security', 'Fall ', '2011', '670', '560', '1230', '3.5', '105', 'Pune University', 'computer engineering', '0', '100', '0')
(846, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '149', '311', '3.5', 'None', 'Manipal Institue of Technology', 'Computer Science', '7.97', '10', '24')
(847, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '163', '155', '318', '3', '105', 'University of Pune', 'Computer Science', '8', '10', '43')
(848, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '460', '1220', '3.5', '102', 'PSG College of Technology', 'Computer Science', '8.61', '10', '0')
(849, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '149', '312', '3', '105', 'University of Mumbai', 'Computer Engineering', '6.768000000000001', '100', '6')
(850, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '158', '147', '305', '3', '100', 'RNSIT', 'Electronics', '7.6', '100', '17')
(851, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '510', '1270', '3', '103', 'AISSMS College of Engineering Pune', 'Electronics', '6.491', '100', '0')
(852, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '161', '154', '315', '3.5', '101', 'Sardar Patel College of Engineering', 'Computers', '6.05', '100', '0')
(853, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2015', '159', '150', '309', '4', '110', 'VIT University', 'School of Mechanical and Building Sciences', '7.64', '10', '13')
(854, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2014', '159', '141', '300', '3', '90', 'Acharya Nagarjuna University', 'Electronics and communication', '7.1', '100', '0')
(855, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '147', '310', '3.5', '106', 'Sinhgad College of Engineering', 'Computer', '6.714', '100', '0')
(856, 'Northeastern University', '1', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2014', '166', '149', '315', '3.5', '108', 'SNIST', 'IT', '8.042', '100', '30')
(857, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '650', '1430', '4.5', '116', 'Pt. Ravishankar Shukla University', 'Computer Science & Engineering', '7.92', '10', '0')
(858, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '157', '154', '311', '3.5', '110', 'R V College of Engineering', 'Computer Science', '8', '100', '0')
(859, 'Northeastern University', '1', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(860, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '630', '1430', '3.5', '106', 'Bangalore Institute of Technology', 'Information Science', '7', '100', '0')
(861, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2014', '168', '152', '320', '3', '107', 'NIT Tirchy', 'EEE', '7.61', '10', '36')
(862, 'Northeastern University', '1', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '800', '540', '1340', '3.5', '105', 'PSG College of Technology', 'Electronics and Communications Engg.', '8.3', '10', '0')
(863, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '159', '148', '307', '2.5', '95', 'Osmania University', 'ece', '7.2', '100', '0')
(864, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2012', '710', '680', '1390', '3', '101', 'M M M Engineering College Gorakhpur', 'Electronics & Communication Engineering', '7.6', '100', '0')
(865, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '600', '1380', '3', '105', 'MU', 'Electronics and Telecommunication', '7', '100', '0')
(866, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '159', '321', '3', '104', 'U.P.Technical University', 'Information Technology', '6.8', '100', '0')
(867, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '150', '312', '3', '107', 'VTU', 'Computer Science', '7.3', '100', '0')
(868, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '710', '340', '1050', '3', '88', 'Gujarat Technological University', 'Information Technology', '7.1', '100', '0')
(869, 'Northeastern University', '1', 'Admit', 'MS', 'Management Information System', 'Fall', 'None', '156', '151', '307', '3.5', '94', 'Pune University', 'Computer', '0', '0', '0')
(870, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '420', '1220', '4', '108', 'MU', 'Computer Engineering', '7.459999999999999', '100', '0')
(871, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '700', '350', '1050', '3.5', '103', 'Pune University', 'IT', '0', '0', '0')
(872, 'Northeastern University', '1', 'Admit', 'MS', 'Management Information System', 'Fall ', '2013', '156', '151', '307', 'None', '94', 'Pune University', 'Computer', '0', '0', '0')
(873, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '750', '430', '1180', '3', '97', 'Thadomal Shahani Engineering College', 'Computer', '6.5', '100', '0')
(874, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '740', '420', '1160', '2.5', '89', 'MU', 'Electronics & Telecommunications', '5.806', '100', '0')
(875, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Spring ', '2013', '157', '143', '300', '3', '8', 'Anna University', 'CSE', '7.6', '100', '0')
(876, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall', 'None', '720', '580', '1300', '4', '105', 'None', 'Information technology', '7.1', '100', '0')
(877, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '164', '149', '313', '4', '90', 'M. N. M Jain Engineering College - Affiliated to Anna University', 'Mechanical', '8.28', '10', '0')
(878, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '158', '150', '308', '2.5', 'None', 'Panimalar Engineering College', 'Computer science', '7.4', '100', '0')
(879, 'Northeastern University', '1', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '800', '610', '1410', '3', '104', 'MU', 'Information Technology', '7.7', '100', '0')
(880, 'Northeastern University', '1', 'Admit', 'MS', 'MIS/CS', 'Spring ', '2013', '164', '146', '310', '3', '97', 'Amrita School of Engineering', 'EIE', '7.22', '10', '0')
(881, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '760', '620', '1380', '4', '116', 'MU', 'Information Technology', '6.670999999999999', '100', '0')
(882, 'Northeastern University', '1', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(883, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '680', '460', '1140', '3.5', '98', 'Pune University', 'Electronics', '5.7', '100', '0')
(884, 'Northeastern University', '1', 'Admit', 'MS', 'software engineering', 'Fall ', '2012', '690', '330', '1020', '3', '95', 'Pune University', 'Instrumentation & Contrl', '7.540000000000001', '100', '0')
(885, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '350', '1130', '3.5', '90', 'RGPV', 'CS', '7.7', '100', '0')
(886, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '162', '152', '314', '3', '83', 'VIT', 'ECE', '8.21', '10', '0')
(887, 'Northeastern University', '1', 'Admit', 'MS', 'Regulatory Affairs', 'Spring ', '2012', '620', '330', '950', '3', '91', 'JNTU', 'pharmacy', '0', '100', '0')
(888, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2014', '157', '155', '312', '3.5', '116', 'SRM', 'EEE', '7.9', '10', '0')
(889, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '700', '330', '1030', '3.5', '103', 'JNTU', 'Computer Science', '6', '100', '0')
(890, 'Northeastern University', '1', 'Admit', 'MS', 'Marketing Communication', 'Fall ', '2012', '760', '560', '1320', '3.5', '106', 'D J Sanghvi', 'Electronics', '6.07', '100', '0')
(891, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '165', '152', '317', '3', '107', 'DA-IICT', 'Information and Communication Technology', '7.15', '10', '12')
(892, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '800', '540', '1340', '3', '105', 'K J Somaiya College of Engiineering', 'Information Technology', '7.3', '100', '0')
(893, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2014', '169', '142', '311', '3.5', '97', 'VIT University', 'ECE', '8.65', '10', '0')
(894, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '139', '300', '3', '95', 'Guru Gobind Singh Indraprashta University', 'Information Technology', '7.5280000000000005', '100', '0')
(895, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '160', '150', '310', '3.5', '98', 'MU', 'Instrumentation', '6.7', '100', '0')
(896, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(897, 'Northeastern University', '1', 'Admit', 'MS', 'Biotechnology', 'Fall ', '2011', '790', '590', '1380', '3', '102', 'Amity University', 'AIB', '8.2', '10', '0')
(898, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '156', '150', '306', '3.5', '116', 'CEG', 'Information Technology', '8.15', '10', '0')
(899, 'Northeastern University', '1', 'Admit', 'MS', 'pharmaceutics', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(900, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '165', '158', '323', '3.5', 'None', 'VJTI', 'IT', '7', '10', '0')
(901, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '158', '142', '300', '3', '89', 'K J Somaiya College of Engiineering', 'IT', '5.8', '100', '0')
(902, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '780', '520', '1300', '4.5', '102', 'Amrita School of Engineering', 'Electronics and Communication Engineering', '7.57', '10', '0')
(903, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '144', '168', '312', '3.5', '86', 'Tsinghua University', 'Automation', '3', '4', '0')
(904, 'Northeastern University', '1', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2011', '740', '530', '1270', '3', 'None', 'Military Institute of Science and TEchnology', 'Computer Science', '3.41', '4', '0')
(905, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2014', '161', '151', '312', '3.5', '109', 'Dharamsinh Desai University', 'Information Technology', '6.08', '100', '16')
(906, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '157', '161', '318', '3.5', '115', 'Punjabi University', 'Electronics and Communication', '7.06', '100', '0')
(907, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '740', '560', '1300', '4.5', '113', 'Pune University', 'Computer Engineering', '7.015000000000001', '100', '0')
(908, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '540', '1330', '3.5', '93', 'Pune University', 'Computer Engineering', '6.3', '100', '0')
(909, 'Northeastern University', '1', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '166', '161', '327', '3.5', '114', 'K J Somaiya College of Engiineering', 'Mechanical Engineering', '6.7', '100', '0')
(910, 'Northeastern University', '1', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '158', '145', '303', '3.5', '92', 'SASTRA', 'Mechatronics', '7.66', '10', '24')
(911, 'Northeastern University', '1', 'Admit', 'MS', 'CS', 'Spring ', '2014', '168', '156', '324', '3.5', 'None', 'ANITS', 'CSE', '7.6', '10', '0')
(912, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '147', '309', '3', '97', 'SASTRA', 'CS', '7.67', '10', '0')
(913, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '470', '1270', '3.5', '100', 'MU', 'I.T.', '6.1', '100', '0')
(914, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '490', '1260', '4', '105', 'Shri U. V. Patel College of Engineering Ganpat University', 'Computer Engineering', '7.3', '100', '0')
(915, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '160', '321', '4', 'None', 'MU', 'Computer Science', '6.13', '100', '0')
(916, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '730', '350', '1080', '3', '105', 'National Institute of Engineering Mysore', 'ECE', '8.14', '100', '0')
(917, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '550', '1340', '4', '103', 'Pune University', 'Computer Science', '7', '100', '0')
(918, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Spring ', '2014', '156', '149', '305', '4', '107', 'Osmania University', 'Mechanical', '6.1', '100', '0')
(919, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2013', '154', '142', '296', '3.5', '90', 'Gogte Institute of Technology', 'Mechanical Engineering', '6.779000000000001', '100', '0')
(920, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical and computer science', 'Fall ', '2011', '660', '420', '1080', '3', '91', 'Anna University', 'ECE', '7.7', '100', '0')
(921, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '160', '158', '318', '3.5', '94', 'MIT', '0', '6.4', '10', '60')
(922, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '157', '318', '3.5', '104', 'GGSIPU', 'CSE', '7.328', '100', '0')
(923, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '153', '313', '4.5', '111', 'University of Mumbai', 'Computer Engineering', '7.05', '100', '28')
(924, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '150', '308', 'None', 'None', 'PSG College of Technology', 'Computer Science', '7.97', '10', '0')
(925, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '154', '314', '3', '107', 'Gujarat Technological University', 'Computer Engineering', '8.161', '100', '0')
(926, 'Northeastern University', '1', 'Admit', 'MS', 'pharmacy', 'Fall ', '2011', 'None', 'None', '0', 'None', '99', 'None', '0', '0', '0', '0')
(927, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Spring ', '2013', '160', '144', '304', '3', '94', 'VTU', 'Electronics and Communication', '3.11', '4', '0')
(928, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '159', '151', '310', '3.5', '102', 'Uttarakhand Technical University', 'Computer Science', '6.49', '100', '48')
(929, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2014', '160', '144', '304', '2.5', '86', 'Anna University', 'ECE', '0', '0', '0')
(930, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '163', '146', '309', '3.5', '109', 'Sri Sairam Engineering College', 'Computer Science', '8', '10', '0')
(931, 'Northeastern University', '1', 'Admit', 'MS', 'CS / MSIS / ITM', 'Fall ', '2012', '750', '500', '1250', '4', '97', 'HKBKCE(VTU)', 'Computer Science', '6.5', '100', '0')
(932, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '740', '520', '1260', '3', '95', 'R V College of Engineering', 'CSE', '7.6', '100', '0')
(933, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '150', '310', '3', '103', 'MU', 'Computer Science', '6.2', '100', '0')
(934, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '760', '440', '1200', '3.5', '99', 'MU', 'Computers', '6.5', '100', '0')
(935, 'Northeastern University', '1', 'Admit', 'MS', 'Project Management', 'Fall ', '2014', '158', '148', '306', '3', '93', 'I.T.S. Engineering College- Gautam Buddha Tech University', 'Mechanical Engineering', '6.659999999999999', '100', '0')
(936, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '520', '1310', '4', '107', 'PESIT', 'Electronics and communication', '7.726999999999999', '100', '0')
(937, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2016', '164', '159', '323', '4', 'None', 'Pune University', 'Computer Engineering', '6.2', '100', '36')
(938, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '750', '520', '1270', '4', '109', 'West Bengal University Of Technology', 'Electrical Engineering', '8.6', '10', '0')
(939, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '750', '430', '1180', 'None', '106', 'MU', 'Electronics and TeleCommuincation', '7.2', '100', '0')
(940, 'Northeastern University', '1', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '157', '154', '311', '3', '100', 'VTU', 'Computer Science', '7.561', '100', '0')
(941, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '710', '600', '1310', '3', '97', 'VIT Pune', 'Computer Science', '6.5', '100', '0')
(942, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '750', '600', '1350', '4', '109', 'D J Sanghvi', 'IT', '6.890000000000001', '100', '0')
(943, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '410', '1160', '3.5', '102', 'Sri Ram Engineering College', 'Electronics and Communications', '6.25', '100', '0')
(944, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2010', '750', '510', '1260', '4.5', '109', 'COEP', 'Production', '7.53', '10', '0')
(945, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '800', '470', '1270', '4', '109', 'BITS Pilani', 'B.Pharm (Hons.)', '8.71', '10', '0')
(946, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '157', '150', '307', '3', '108', 'Madras Institute of Technology', 'ECE', '7.8', '10', '43')
(947, 'Northeastern University', '1', 'Admit', 'MS', 'pharmacy', 'Fall ', '2012', '760', '390', '1150', '3', '99', 'BITS Pilani', 'Pharmacy', '7.82', '10', '0')
(948, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '145', '305', '3', '95', 'CBIT', 'CSE', '7.840000000000001', '100', '12')
(949, 'Northeastern University', '1', 'Admit', 'MS', 'Aerospace Engineering', 'Fall', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(950, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '630', '1380', '4', '111', 'PICT', 'Computer Science', '3.25', '4', '0')
(951, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '550', '1350', '3', '97', 'Rajiv Gandhi Institute Of Technology', 'Computer Engineering', '6.5920000000000005', '100', '0')
(952, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '151', '315', '3.5', '109', 'West Bengal University Of Technology', 'Computer Science and Engineering', '7.86', '10', '31')
(953, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '153', '315', '3', '109', 'Anna University', 'CSE', '9.09', '10', '0')
(954, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '162', '152', '314', '4.5', '112', 'PESIT', 'CSE', '7.85', '100', '15')
(955, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '157', '149', '306', '4', '106', 'VTU', 'ECE', '6.85', '100', '0')
(956, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '610', '1410', '4', '111', 'MU', 'EXTC', '7', '100', '0')
(957, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '150', '315', '3', '101', 'IPS Academy Indore [RGPV University Bhopal]', 'CSE', '7.5', '100', '0')
(958, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '158', '159', '317', '4', '114', 'VTU', 'ECE', '6.3', '100', '0')
(959, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '156', '141', '297', '2.5', '80', 'Amrita School of Engineering', 'Electrical And Electronics', '7.6', '10', '18')
(960, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '730', '1530', '4', '115', 'NIT Calicut', 'CSE', '7.88', '10', '0')
(961, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '730', '1530', 'None', 'None', 'NIT Calicut', 'CSE', '7.88', '10', '0')
(962, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2011', '700', '510', '1210', '4', '103', 'Goa University', 'Mechanical', '6.3', '100', '0')
(963, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '770', '380', '1150', '3.5', '100', 'Osmania University', 'CSE', '7.9', '100', '0')
(964, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '168', '153', '321', '4', '110', 'NIT Silchar', 'CSE', '8.35', '10', '0')
(965, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '159', '150', '309', '3', '104', 'MU', 'Computer', '7.12', '100', '0')
(966, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '740', '620', '1360', '4', 'None', 'Delhi College Of Engineeing', 'Information Technology', '7.132', '100', '0')
(967, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2012', '730', '570', '1300', '4', '106', 'D J Sanghvi', 'Biomedical', '0', '0', '0')
(968, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '167', '156', '323', '4', '110', 'MU', 'Electronics and Telecommunication', '6.7', '100', '0')
(969, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '360', '1130', '3.5', '101', 'BIT Mesra', 'Computer Science', '7.7700000000000005', '100', '0')
(970, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '170', '162', '332', 'None', '116', 'Dhirubhai Ambani Institute of Information & Communication Technology', 'ICT', '7.32', '10', '0')
(971, 'Northeastern University', '1', 'Admit', 'MS', 'Biotechnology', 'Fall ', '2015', '154', '145', '299', '3.5', '106', 'University of Mumbai', 'Biotechnology', '6.65', '100', '0')
(972, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2012', '154', '143', '297', '4', '0', 'S.I.E.S GST (Mumbai University)', 'Electronics and Telecommunications', '5.75', '100', '0')
(973, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '780', '340', '1120', '3', '93', 'ITM Gurgaon', 'Computer Science Engineering', '7.2', '100', '0')
(974, 'Northeastern University', '1', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(975, 'Northeastern University', '1', 'Admit', 'MS', 'Information Security', 'Fall ', '2013', '167', '146', '313', '3.5', '104', 'RGTU', 'CS', '7.9', '100', '0')
(976, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '161', '329', '3.5', '113', 'Jaypee Institute of Information Technology', 'Computer Science & IT', '8.3', '10', '0')
(977, 'Northeastern University', '1', 'Admit', 'MS', 'Information Systems', 'Spring ', '2013', '159', '145', '304', '3.5', '95', 'University of Mumbai', 'Information Technology', '5.7', '100', '0')
(978, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '800', '530', '1330', '3.5', '104', 'Vidyalankar Institute of Technology', 'Computer Engineering', '5.8', '100', '0')
(979, 'Northeastern University', '1', 'Admit', 'MS', 'Project Management', 'Fall ', '2014', '145', '149', '294', '4', '102', 'MMCOE', 'Computer Engineering', '6.7', '100', '36')
(980, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '160', '159', '319', '4', 'None', 'MSIT', 'IT', '7.4', '100', '0')
(981, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '740', '600', '1340', '3.5', '103', 'JNTU', 'Computer science', '6.9', '100', '0')
(982, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '170', '151', '321', '4', '103', 'NITK Surathkal', 'EEE', '6.72', '10', '0')
(983, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '163', '150', '313', '4', '96', 'Institute of Technical Education and Research', 'Computer Science', '8.54', '10', '0')
(984, 'Northeastern University', '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(985, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '660', '1460', '4', '112', 'MU', 'Computer Engineering', '6.784999999999999', '100', '0')
(986, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '450', '1230', '5', '113', 'Amrita School of Engineering', 'Computer Science', '8.08', '10', '0')
(987, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2012', '800', '580', '1380', '3.5', '95', 'Manipal Institue of Technology', 'ECE', '6.93', '10', '0')
(988, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '161', '153', '314', 'None', 'None', 'UPTU', 'Computer Science', '7.5', '100', '0')
(989, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '163', '152', '315', '3.5', '100', 'SASTRA', 'Information Technology', '7.97', '10', '0')
(990, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '530', '1300', '3', 'None', 'CoE Trivandrum', 'Computer Science', '7.43', '10', '0')
(991, 'Northeastern University', '1', 'Admit', 'MS', 'CS/MIS', 'Fall ', '2014', '161', '145', '306', '3', '101', 'Pune University', 'Coputer Science', '5.8', '100', '36')
(992, 'Northeastern University', '1', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '156', '152', '308', 'None', '104', 'MU', 'Mechanical Engineering', '6.4', '100', '0')
(993, 'Northeastern University', '1', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Spring ', '2016', '156', '148', '304', '3.5', '100', 'Pune University', 'E&TC;', '6.3', '100', '24')
(994, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '156', '144', '300', '2.5', '99', 'COEP', 'Computer Engineering', '6', '10', '30')
(995, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '540', '1340', '3.5', '100', 'D J Sanghvi', 'Computer', '6.7', '100', '0')
(996, 'Northeastern University', '1', 'Admit', 'MS', 'Electronic and Telecommunication Engineering', 'Fall ', '2013', '156', '145', '301', '3.5', 'None', 'MU', 'electronics', '6.2170000000000005', '100', '0')
(997, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '152', '315', '3.5', 'None', 'Pune University', 'Computer Engineering', '6.763', '100', '0')
(998, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2012', '780', '470', '1250', '4', '107', 'VIT Pune', 'EnTc', '8.55', '10', '0')
(999, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '1390', '620', '2010', '770', '104', 'MU', 'Computer Engineering', '6.8', '100', '0')
(1000, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Systems Engineering', 'Fall ', '2011', '690', '610', '1300', '4', '97', 'None', '0', '0', '0', '0')
(1001, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '770', '600', '1370', '4', '111', 'COEP', 'Information Techology', '7.74', '10', '0')
(1002, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Spring ', '2013', '161', '142', '303', '2.5', '102', 'Coimbatore Insitute of Technology', 'Information Technology', '8.39', '10', '0')
(1003, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '166', '164', '330', '3', '105', 'COEP', 'I.T.', '7.98', '10', '0')
(1004, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '157', '144', '301', '3', '85', 'MU', 'Information Technology', '6.5', '100', '44')
(1005, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2011', '750', '550', '1300', '3', '98', 'Kurukshetra University', 'Electronics & Instrumentation', '7.1', '100', '0')
(1006, 'Northeastern University', '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2012', '159', '149', '308', '4', '108', 'VNR VJIET', 'INFORMATION TECHNOLOGY', '7.584999999999999', '100', '0')
(1007, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2015', '157', '152', '309', '4', '106', 'MSRIT', 'Mechanical Engineering', '8.92', '10', '33')
(1008, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2012', '790', '640', '1430', '4', '113', 'MU', 'Computers', '7.6', '100', '0')
(1009, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '730', '370', '1100', '3', '95', 'VIT', 'Btech Biotechnology', '7.89', '10', '0')
(1010, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '158', '150', '308', '3', '100', 'Nirma Institute of Technology', 'Computer Engineering', '8.34', '10', '0')
(1011, 'Northeastern University', '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '710', '400', '1110', '3', '86', 'Nagpur/G.H Raisoni', 'Information Tech.', '0', '0', '0')
(1012, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '760', '600', '1360', '3.5', 'None', 'Shri Vaishnav Institute of Science and Technology Indore', 'Electronics and communication', '6.634', '100', '0')
(1013, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '167', '165', '332', '4', '118', 'MU', 'Computer Engineering', '6.76', '100', '0')
(1014, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '450', '1250', '3.5', '108', 'S.P.I.T.', 'Electronics', '7.44', '100', '0')
(1015, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '159', '325', '3', '108', 'KIIT', 'Electrical Engineering', '8.28', '10', '44')
(1016, 'Northeastern University', '1', 'Admit', 'MS', 'Information Security', 'Fall ', '2015', '150', '153', '303', 'None', '92', 'Sri Venkateswara College of Engineering', 'ECE', '6.8', '100', '29')
(1017, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2014', '153', '148', '301', '3.5', '106', 'Anna University', 'ECE', '0.7769999999999999', '100', '0')
(1018, 'Northeastern University', '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '680', '480', '1160', '3.5', '99', 'MU', 'computer science', '6.9', '100', '0')
(1019, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2011', '750', '700', '1450', '4', '101', 'MSRIT', 'MECHANICAL', '8.25', '10', '0')
(1020, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '155', '319', '3.5', '105', 'NMIMS', 'Computer Science', '3.26', '4', '0')
(1021, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '156', '154', '310', '3', '105', 'Fr. Conceicao Rodrigues College of Engineering', 'Computer', '6.2', '100', '0')
(1022, 'Northeastern University', '1', 'Admit', 'MS', 'Mechanical Engineering', 'Spring ', '2014', '163', '149', '312', '4.5', '105', 'Kurukshetra University', 'Mechanical Engineering', '7.12', '100', '0')
(1023, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '161', '148', '309', '3.5', '102', 'St. vincent pallotti college iof engineering and technology', 'Computer Engineering', '7.023000000000001', '100', '0')
(1024, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '790', '560', '1350', '3', '94', 'BIT Durg', 'CSE', '7.75', '10', '0')
(1025, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Spring ', '2011', '680', '340', '1020', '3.5', '105', 'MU', 'Computer Engg', '6.2', '100', '0')
(1026, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '700', '420', '1120', '3', '96', 'VTU', 'Information Science', '7.15', '100', '0')
(1027, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '158', '153', '311', '3.5', '107', 'Anna University', 'ECE', '7.3', '100', '0')
(1028, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '162', '144', '306', '3', '85', 'BITS Goa', 'M.SC Economics+B.E.Computerscience', '0', '0', '48')
(1029, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '530', '1300', '3', '102', 'GITAM', 'IT', '8.09', '10', '0')
(1030, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '165', '149', '314', '3.5', '108', 'IPEC', 'IT', '6.74', '100', '0')
(1031, 'Northeastern University', '1', 'Admit', 'MS', 'pharmacy', 'Fall ', '2011', '640', '320', '960', '3.5', '102', 'Gujarat Technological University', 'pharmacy', '0', '0', '0')
(1032, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '151', '309', '3.5', '110', 'Rajagiri School of Engineering and Technology', 'IT', '8', '100', '48')
(1033, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '790', '560', '1350', '3', '94', 'BIT Durg', 'CSE', '7.75', '10', '0')
(1034, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '154', '149', '303', '3', '98', 'Nagpur University', '0', '5.7', '100', '0')
(1035, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '146', '305', '3.5', '98', 'VTU', 'Computer Science', '7.4', '100', '0')
(1036, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '750', '500', '1250', '4', '101', 'University of Mumbai', 'Computers', '6.62', '100', '0')
(1037, 'Northeastern University', '1', 'Admit', 'MS', 'CS MIS', 'Fall ', '2012', '168', '147', '315', '3.5', '91', 'VTU', 'Electronics & Communication', '6.7', '100', '0')
(1038, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '160', '153', '313', '4.5', '110', 'School of Engineering and Technology - Jain University Bangalore', 'Electronics and Communications', '7.614', '100', '6')
(1039, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '148', '310', '3', '94', 'JNTU', 'Computer Science', '6.36', '100', '0')
(1040, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '160', '324', '4', '103', 'Atharva College', 'Information Technology', '5.86', '100', '0')
(1041, 'Northeastern University', '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2015', '158', '147', '305', '3.5', '103', 'Kumaun University', 'IT', '7.93', '100', '0')
(1042, 'Northeastern University', '1', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '780', '420', '1200', '3.5', '94', 'Pune University', 'mechanical engineering', '6.1', '100', '0')
(1043, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '730', '580', '1310', '3.5', '101', 'P.V.P.P.C.O.E. (Mumbai University)', 'Information Technology (I.T.)', '7.0200000000000005', '100', '0')
(1044, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '780', '520', '1300', '3.5', '107', 'MU', 'Production Engineering', '5.8', '100', '0')
(1045, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '156', '322', '3.5', '112', 'NIT Raipur', 'Information Technology', '8.34', '10', '0')
(1046, 'Northeastern University', '1', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(1047, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '160', '141', '301', '3.5', '95', 'SSN College of Engineering', 'ECE', '8.16', '10', '0')
(1048, 'Northeastern University', '1', 'Admit', 'MS', 'CS / MSIS / ITM', 'Fall ', '2015', '157', '154', '311', '3', '108', 'VIT Mumbai University', 'Computer Engineering', '5.833', '100', '36')
(1049, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Spring ', '2013', '160', '140', '300', '3', '91', 'University of Mumbai', 'EXTC', '6.4', '100', '36')
(1050, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '158', '153', '311', '3', '96', 'Pune University', 'Computer Science', '7.45', '100', '0')
(1051, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2012', '158', '150', '308', '4.5', '101', 'MU', 'Electronics', '58.23', '4', '0')
(1052, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '146', '306', '3.5', 'None', 'Vishwakarma Institute of Technology', 'Computer', '8.7', '10', '0')
(1053, 'Northeastern University', '1', 'Admit', 'MS', 'Information Systems', 'Spring ', '2012', '800', '340', '1140', '3.5', '105', 'PICT', 'Information Technology', '6.1', '100', '0')
(1054, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '430', '1230', '4', '110', 'Pune University', 'Computer', '6.9', '100', '0')
(1055, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Spring ', '2012', '770', '360', '1130', '3', '95', 'None', 'EXTC', '6.15', '100', '0')
(1056, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '154', '162', '316', '4.5', '113', 'Walchand College Of Engineering', 'CSE', '8.06', '10', '16')
(1057, 'Northeastern University', '1', 'Admit', 'MS', 'CS', 'Fall ', '2012', '740', '630', '1370', '3', '102', 'Vardhaman', 'IT', '6.7299999999999995', '100', '0')
(1058, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '750', '450', '1200', '3', '96', 'VTU', 'CS', '7.5', '100', '0')
(1059, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '164', '151', '315', '3', '109', 'R.G.P.V.', 'EC', '7.56', '100', '20')
(1060, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '157', '321', '4', 'None', 'Pune University', 'Computer Engineering', '7.1', '100', '0')
(1061, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '350', '1150', '3.5', '104', 'Madras Institute of Technology', 'Computer Science', '8', '10', '0')
(1062, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2006', '790', '540', '1330', '5.5', '277', 'K J Somaiya College of Engiineering', 'Mechanical Engineering', '7.314', '100', '0')
(1063, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '163', '152', '315', '4', '107', 'SSN College of Engineering', 'CSE', '7.2', '100', '0')
(1064, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '165', '149', '314', '3', '101', 'VTU', 'Computer Science', '7.5', '100', '0')
(1065, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2011', '790', '490', '1280', '4', '115', 'Goa University', 'Electronics and Telcommunication', '0.4', '100', '0')
(1066, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '720', '590', '1310', '3', '97', 'University of Mumbai', 'Information Technology', '7.573', '100', '0')
(1067, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '720', '470', '1190', '3.5', '94', 'K J Somaiya College of Engiineering', 'IT', '6.1', '100', '0')
(1068, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '161', '151', '312', '3', '101', "Vidyavardhini's COE & Tech", 'IT', '7.112', '100', '0')
(1069, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '155', '143', '298', '3', '96', 'VIT University', 'COMPUTER SCIENCE', '8.38', '10', '0')
(1070, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '159', '157', '316', '4', '110', 'Sardar Patel College of Engineering', 'Computer', '7.340000000000001', '100', '30')
(1071, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '165', '152', '317', '3', '101', 'BPUT', 'EEE', '8.57', '10', '0')
(1072, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '160', '152', '312', '4', '112', 'DDIT', 'Computer Engineering', '7.21', '10', '12')
(1073, 'Northeastern University', '1', 'Admit', 'MS', 'CS', 'Fall ', '2014', '161', '156', '317', '3.5', '99', 'Sinhgad College of Engineering', 'Computer Engineering', '6.317', '100', '0')
(1074, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '700', '440', '1140', '3.5', '99', 'R V College of Engineering', 'ISE', '8.56', '10', '0')
(1075, 'Northeastern University', '1', 'Admit', 'MS', 'Applied Mathematics', 'Fall ', '2011', '800', '550', '1350', '4', '96', 'University of Mumbai', 'Computer Engineering', '5.4', '100', '0')
(1076, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '154', '315', '3.5', '106', 'Maharishi Dayanand University', 'ECE', '7', '100', '0')
(1077, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '720', '570', '1290', '3.5', '116', 'MU', 'Computer Science', '7.804', '100', '0')
(1078, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2010', '790', '370', '1160', '3.5', '87', 'Sri Sairam Engineering College', 'ECE', '7.6', '100', '0')
(1079, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '159', '156', '315', '3.5', '110', 'Pune University', 'Computer', '6.7', '100', '0')
(1080, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '790', '490', '1280', '4', '247', 'MREC', 'CS', '7.9', '100', '0')
(1081, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '160', '147', '307', '3.5', '104', 'MU', 'Information Technology', '5.836', '100', '0')
(1082, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '780', '660', '1440', '4', '283', 'MU', 'Computers', '6.2', '100', '0')
(1083, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '156', '154', '310', '3.5', '113', 'VTU', 'ISE', '7.465999999999999', '100', '0')
(1084, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '163', '158', '321', 'None', '110', 'NIT Hamirpur', 'Electronics & Communication Engg.', '9', '10', '0')
(1085, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '730', '370', '1100', '3', '106', 'LNCT', 'EC', '0', '0', '0')
(1086, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2012', '790', '580', '1370', '3.5', 'None', 'Amity University', 'ECE', '7.01', '10', '0')
(1087, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '160', '319', '3.5', '108', 'University of Mumbai', 'Computer Engineering', '6.4', '100', '0')
(1088, 'Northeastern University', '1', 'Admit', 'MS', 'MEM', 'Fall ', '2014', '159', '143', '302', '3', 'None', 'Sri Venkateswara College of Engineering', 'Electrical and Electronics', '6.7', '10', '0')
(1089, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2012', '750', '530', '1280', '3.5', '113', 'Amity University', 'Electronics & Communication', '7', '10', '0')
(1090, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '780', '410', '1190', '3.5', '110', 'NMIMS', 'Electronics', '3.2', '4', '0')
(1091, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '148', '309', '3.5', '107', 'Banasthali University', 'Information Technology', '7.92', '100', '0')
(1092, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '710', '320', '1030', '3.5', '85', 'Punjab Technical University', 'CSE', '7.5', '100', '0')
(1093, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2011', '770', '380', '1150', '3.5', '92', 'MU', 'Computer', '6.5', '100', '0')
(1094, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '162', '148', '310', '3', '99', 'Guru Gobind Singh Indraprashta University', 'Electronics and Communication Engineering', '6.9', '100', '15')
(1095, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '149', '311', '4', '99', 'SNDT', 'I.T', '3.73', '4', '24')
(1096, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '158', '157', '315', '3.5', '114', 'VTU', 'Information Science', '6.8', '100', '0')
(1097, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '750', '460', '1210', '4', '92', 'MU', 'IT', '6.8', '100', '0')
(1098, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '164', '157', '321', '4.5', '113', 'Dr. Babasaheb Ambedkar Technological University Lonere', 'Chemical Engineering', '8.49', '10', '0')
(1099, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '164', '150', '314', '3.5', '105', 'Galgotias College Of Engineering And Technology', 'Electronics and Communication', '6.9', '100', '0')
(1100, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '161', '153', '314', '3', '99', 'Jaypee Institute of Information Technology', 'Department of Computer Science and ICT', '7.7', '100', '24')
(1101, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '780', '650', '1430', '4', '111', 'VESIT', 'EXTC', '0', '0', '0')
(1102, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2012', '156', '149', '305', '3.5', '99', 'SASTRA', 'Information Technology', '7.47', '10', '0')
(1103, 'Northeastern University', '1', 'Admit', 'MS', 'Construction Management', 'Fall ', '2014', '157', '149', '306', 'None', '102', 'NCET Bangalore', 'Civil Engineering', '6.5', '100', '0')
(1104, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '167', '144', '311', '3.5', '93', 'Amrita School of Engineering', 'Computer Science and Engineering', '8.16', '10', '0')
(1105, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '144', '308', '3', '101', 'G.H Patel colg of Engg. Sardar Patel University', 'Information Technology', '8.88', '10', '0')
(1106, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall', 'None', '156', '144', '300', '3', '91', 'Rajasthan Technical University', 'computer science', '3.3', '4', '24')
(1107, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '166', '158', '324', '3', '102', 'KIIT', 'Electrical', '8.2', '10', '0')
(1108, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '162', '152', '314', '3', '104', 'University of Mumbai', 'Electronics and Telecommunication', '5.88', '100', '0')
(1109, 'Northeastern University', '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2013', 'None', 'None', '0', '3.5', '101', 'MU', 'Computer engineering', '6.4', '100', '36')
(1110, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '50', '31', '81', '3.5', '100', 'None', '0', '3.14', '4', '0')
(1111, 'Northeastern University', '1', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2014', '164', '153', '317', '3.5', '106', 'GGSIPU', 'Computer Science', '7.6', '100', '0')
(1112, 'Northeastern University', '1', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '157', '143', '300', '3.5', 'None', 'UPTU', 'CS&E;', '6.4', '100', '54')
(1113, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '161', '155', '316', 'None', '113', 'MU', 'Computer Engineering', '6', '100', '0')
(1114, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '151', '151', '302', '3.5', '108', 'VTU', 'Computer Science and Engineering', '6.88', '100', '0')
(1115, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2006', '780', '680', '1460', '4.5', '290', 'MU', 'Computer Engg', '5.9', '100', '0')
(1116, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '630', '590', '1220', 'None', 'None', 'Thiagarajar College of engineering', 'ECE', '7.9', '10', '0')
(1117, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '161', '152', '313', '4', '109', 'JNTU', 'CS', '7.1', '100', '0')
(1118, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '161', '153', '314', '3.5', '117', 'Pune University', 'Computer Science', '5.5', '100', '0')
(1119, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '167', '144', '311', '4', '111', 'Rajiv Gandhi Technical University', 'Electronics and Communication', '7.38', '100', '0')
(1120, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall', 'None', '166', '155', '321', 'None', '103', 'Amrita School of Engineering', 'Electronics and Instrumentation Engineering', '8.75', '10', '0')
(1121, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '156', '152', '308', '4.5', '107', 'University of Pune', 'Information technology', '7.77', '10', '0')
(1122, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '161', '154', '315', '3.5', '111', 'Gogte Institute of Technology', 'Electronics & Communication', '7.7', '100', '0')
(1123, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '159', '142', '301', '3', '93', 'Ramrao Adik Institute of Technology', 'Information Technology', '3.2', '4', '54')
(1124, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '520', '1320', '3.5', '94', 'Sona College', 'Information Technology', '8', '100', '0')
(1125, 'Northeastern University', '1', 'Admit', 'MS', 'Information Science', 'Fall ', '2013', '163', '147', '310', '3.5', '101', 'VIT', 'electronics and communication', '3.68', '4', '0')
(1126, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(1127, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '165', '157', '322', '4', '111', 'Cochin University of Science and Technology', 'Computer Science', '6.7', '100', '76')
(1128, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '158', '146', '304', '4', '101', 'Malnad College Of Engineering', 'CS and E', '7.991', '100', '0')
(1129, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '170', '155', '325', '3.5', 'None', 'BESU Shibpur', 'Computer Science and Technology', '8.7', '100', '0')
(1130, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '149', '307', '3.5', '103', 'VTU', 'CS', '7.43', '100', '0')
(1131, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '152', '315', '3.5', '108', 'NIT Kurukshetra', 'computer engineering', '8.8', '10', '18')
(1132, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '166', '162', '328', '4', '115', 'BIT Mesra', 'Computer Science', '0.731', '100', '34')
(1133, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '168', '158', '326', '4', '119', 'University of Pune', 'InformationTechnology', '6.2', '100', '0')
(1134, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '167', '150', '317', '3.5', '97', 'GGSIPU', 'Information Technology', '7.634', '100', '0')
(1135, 'Northeastern University', '1', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2011', '700', '500', '1200', '3.5', '110', 'Dr D Y Patil University', '0', '0', '0', '0')
(1136, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '800', '650', '1450', '4.5', '300', 'MU', 'Comp Engg', '6.2', '100', '0')
(1137, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '570', '1360', '3', '108', 'St Martins engineering college', 'CSE', '7.2', '100', '0')
(1138, 'Northeastern University', '1', 'Admit', 'MS', 'Bioinformatics', 'Fall', 'None', 'None', 'None', '0', '3', 'None', 'IIT BHU', 'Biomedical Engineering', '7.83', '10', '0')
(1139, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '158', '152', '310', '3', '101', 'JNTU', 'CSE', '7.640000000000001', '100', '19')
(1140, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '162', '147', '309', '3.5', '97', 'Vasavi College of Engineering', 'Computer Science', '9.1', '100', '0')
(1141, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '167', '152', '319', '4', 'None', 'VTU', 'CSE', '8.15', '100', '0')
(1142, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '164', '155', '319', '4.5', '102', 'Amrita School of Engineering', 'Computer Science and Engineering', '7.7', '10', '0')
(1143, 'Northeastern University', '1', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2015', '161', '147', '308', '3', '96', 'Gayatri Vidya Parishad College of Engineering', 'computer science and engineering', '7.470000000000001', '100', '0')
(1144, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '160', '155', '315', '3.5', '106', 'M.V.S.R Engineering College', 'Electronics and Communication', '7.85', '100', '0')
(1145, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '149', '310', '3', '101', 'mgit', 'it', '7.720000000000001', '100', '0')
(1146, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '145', '308', '3', 'None', 'PVP Siddhartha Inst. of Tech', 'CSE', '7.441', '100', '0')
(1147, 'Northeastern University', '1', 'Admit', 'MS', 'Biotechnology', 'Fall ', '2014', '150', '153', '303', '2.5', 'None', 'JNTU', 'b.pharmacy', '7.01', '100', '0')
(1148, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '750', '410', '1160', '3.5', '92', 'Madras Institute of Technology', 'IT', '7.8', '10', '0')
(1149, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '740', '480', '1220', '3', '100', 'University of Mumbai', 'Electronics and Telecommunication', '6.3', '100', '0')
(1150, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall', 'None', '164', '149', '313', '3.5', '103', 'CBIT', 'ECE', '8.3', '100', '0')
(1151, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '159', '144', '303', '3.5', '90', 'Coimbatore Insitute of Technology', 'Information Technology', '8.29', '10', '0')
(1152, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '530', '1330', '4', '109', 'GITAM', 'CSE', '8.97', '10', '0')
(1153, 'Northeastern University', '1', 'Admit', 'MS', 'Biotechnology/bio-engineering', 'Fall ', '2013', '148', '144', '292', '3', '100', 'Osmania University', 'biotechnology', '7.8', '100', '0')
(1154, 'Northeastern University', '1', 'Admit', 'MS', 'pharmaceutics', 'Fall ', '2012', '740', '480', '1220', '3.5', '97', 'BITS Pilani', 'Pharmacy and health sciences', '8.26', '10', '0')
(1155, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '520', '1300', '3.5', '114', 'None', 'Computer Science', '7.6', '100', '0')
(1156, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '156', '142', '298', '2.5', '98', 'UPTU', 'Computer Science & Tech', '8', '10', '0')
(1157, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '800', '300', '1100', '3', 'None', 'Sreenidhi Institute of Science & Technology', 'EEE', '7.32', '100', '0')
(1158, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '670', '1470', '4', '113', 'D J Sanghvi', 'Computers', '6.55', '100', '0')
(1159, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '156', '144', '300', '3', '88', "St Joseph's College of Engineering", 'Electrical and Electronics Engineering', '7.2', '100', '0')
(1160, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Networking', 'Fall ', '2013', '161', '156', '317', '4', '105', 'Kerala University', 'Information Technology', '3.98', '4', '0')
(1161, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '152', '144', '296', '3.5', '95', 'NIT Warangal', 'Computer Science', '8.4', '10', '0')
(1162, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '159', '319', '4', '115', 'NIT Raipur', 'IT', '8.43', '10', '0')
(1163, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '164', '148', '312', '4', '112', 'Anna University', 'EE', '7.36', '10', '0')
(1164, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '730', '510', '1240', '4', '104', "SLC's institute of Engg and Tech affiliated to JNTU", 'CSE', '7.2', '100', '0')
(1165, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '145', '304', '4', '105', 'Lakshmi Narain College of Technology', 'Information Technology', '7.779999999999999', '100', '0')
(1166, 'Northeastern University', '1', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Spring ', '2012', '800', '550', '1350', '3.5', '99', 'VIT', 'Information Technology', '7.9', '10', '0')
(1167, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '158', '144', '302', 'None', '98', 'West Bengal University Of Technology', 'Electronics & Instrumentation', '8.25', '10', '0')
(1168, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '155', '145', '300', '3', '100', 'Amrita Vishwa Vidhyapeetham', 'Computer Science', '8.05', '10', '67')
(1169, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2014', '163', '151', '314', '3.5', '109', 'JNTU', 'Mechanical', '6.34', '100', '0')
(1170, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '800', '430', '1230', '4', '84', 'None', 'Mathematics', '7.6', '100', '0')
(1171, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '620', '1410', '4', '110', 'D J Sanghvi', 'EXTC', '7.3', '100', '0')
(1172, 'Northeastern University', '1', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '155', '149', '304', '3.5', '96', 'University of Calicut', 'Computer Science', '6.45', '100', '0')
(1173, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '163', '156', '319', '3', '105', 'Nagpur University', 'B.E electronics', '6.1', '100', '0')
(1174, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2013', '156', '152', '308', '4', '109', 'NIT Tirchy', 'Chemical Engineering', '6.2', '10', '0')
(1175, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Spring ', '2012', '710', '440', '1150', 'None', '97', 'LNCT', 'Electical and electronics', '7.4', '100', '0')
(1176, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '161', '152', '313', '3.5', '104', 'VESIT', 'Computer Engineering', '7.3549999999999995', '100', '31')
(1177, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '147', '306', '3.5', '104', 'Coimbatore Insitute of Technology', 'M. Sc. Software Engineering(5 Year Integrated Course)', '7.411', '100', '0')
(1178, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall', 'None', '760', '450', '1210', '3', '92', 'BITS Dubai', 'Electronics and Communication Engg', '6.91', '10', '0')
(1179, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '147', '168', '315', '3.5', '103', 'GNDU', 'CSE', '7.4', '100', '7')
(1180, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '155', '316', '4', '113', 'Atharva College', 'Information Technology', '6.412999999999999', '100', '0')
(1181, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '800', '430', '1230', '3', '103', 'Sri Venkateswara College of Engineering', 'EEE', '6.8', '100', '0')
(1182, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '162', '153', '315', '3.5', '106', 'University of Pune', 'IT', '6.9', '100', '0')
(1183, 'Northeastern University', '1', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '163', '149', '312', '3.5', '104', 'PICT', 'Mechanical', '6', '100', '0')
(1184, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '148', '307', '3.5', '97', 'PICT', 'IT', '3.78', '4', '0')
(1185, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '510', '1310', '4', '105', 'NIT RKL', 'CSE', '8.51', '10', '0')
(1186, 'Northeastern University', '1', 'Admit', 'MS', 'MIS/MS CS', 'Fall ', '2013', '161', '160', '321', '4', '118', 'CEG', 'IT', '7.6', '10', '0')
(1187, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '550', '1350', '3.5', '111', 'NIT Silchar', 'Computer Science and Engineering', '8.17', '10', '0')
(1188, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '460', '1260', '3.5', '99', 'Fr. Conceicao Rodrigues College of Engineering', 'Computer Science', '6.573', '100', '0')
(1189, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '170', '147', '317', '3.5', '105', 'YMCA', 'Information Technology', '8.81', '10', '24')
(1190, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '570', '1320', '4', '106', 'K J Somaiya College of Engiineering', 'IT', '0', '0', '0')
(1191, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '152', '142', '294', '3', '98', 'MU', 'Information Technology', '6.7', '100', '0')
(1192, 'Northeastern University', '1', 'Admit', 'MS', 'Cell and Molecular Biology', 'Fall ', '2012', '156', '158', '314', '3.5', '101', 'D Y Patil College of Engineering', 'Biotechnology', '6.8', '100', '0')
(1193, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '760', '600', '1360', '4', '104', 'JNTU', 'cs', '7.2', '100', '0')
(1194, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '770', '770', '1540', '3.5', '280', 'VTU', 'Computer Science', '7.8', '100', '0')
(1195, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '650', '1420', '4', '109', 'MU', 'Computer Engineering', '6.856999999999999', '100', '0')
(1196, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '168', '150', '318', '3', '102', 'VIT University', 'Mechanical Engineering', '7.47', '10', '0')
(1197, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2012', '750', '390', '1140', '3', '99', 'None', '0', '0', '0', '0')
(1198, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '480', '1260', '3.5', '100', 'Sinhgad College of Engineering', 'Information Technology', '7.2', '100', '0')
(1199, 'Northeastern University', '1', 'Admit', 'MS', 'Civil Engineering', 'Spring ', '2013', '170', '154', '324', '3.5', '96', 'IIT Bombay', 'Civil Engineering', '7.37', '10', '0')
(1200, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '800', '460', '1260', '4', '247', 'Sardar Patel College of Engineering', 'Information Technology', '6.786', '100', '0')
(1201, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '168', '149', '317', '3', '104', 'PICT', 'Computer Engg', '3.6', '4', '0')
(1202, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '156', '151', '307', '3.5', '105', 'VTU', 'CSE', '6.7', '100', '0')
(1203, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '156', '150', '306', '3', '105', 'Punjab Technical University', 'Computer Science', '7.25', '100', '0')
(1204, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '550', '1350', '4', '107', 'MU', 'EXTC', '7.1', '100', '0')
(1205, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '155', '151', '306', '3', '105', 'UPTU', 'electronics and Communication', '7.62', '10', '0')
(1206, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '161', '159', '320', '3.5', '110', 'University of Pune', 'Electronics', '6.4', '100', '0')
(1207, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '580', '1380', '2.5', '101', 'Kakatiya University', 'ece', '7.01', '100', '0')
(1208, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2012', '163', '147', '310', '3.5', '106', 'U.P.T.U.', 'ECE', '7.33', '100', '0')
(1209, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '310', '1110', '3', '95', 'University of Mumbai', 'Computer', '6.43', '100', '0')
(1210, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '760', '520', '1280', '4', '102', 'MU', 'Information Technology', '6.2', '100', '0')
(1211, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '161', '152', '313', '3.5', 'None', 'MU', 'ExTC', '6.2', '100', '31')
(1212, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '790', '490', '1280', '4', '109', 'MU', 'Information Technology', '6.7', '100', '33')
(1213, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2012', '157', '146', '303', '3.5', '99', 'MU', 'Mechanical engineering', '5.7', '100', '0')
(1214, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '540', '1340', '3', '110', 'UPTU', 'Computer Science and Engineering', '7', '100', '0')
(1215, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '163', '159', '322', '3', '108', 'MU', 'Information Technology', '6.6', '100', '0')
(1216, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '760', '670', '1430', '4', '116', 'SSN College of Engineering', 'Information Technology', '7.1', '100', '0')
(1217, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '164', '156', '320', '4', '108', 'VTU', 'Telecommunication Engg', '7', '100', '0')
(1218, 'Northeastern University', '1', 'Admit', 'MS', 'Information Science', 'Fall ', '2011', '770', '470', '1240', '3', '102', 'Sir MVIT', 'Information Science', '7.589', '100', '0')
(1219, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '162', '149', '311', '4', '112', 'UPTU', 'Information Technology', '7.51', '100', '0')
(1220, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '780', '610', '1390', '4.5', '297', 'G.G.S.I.P. U', 'Computer Science', '8.2', '100', '0')
(1221, 'Northeastern University', '1', 'Admit', 'MS', 'Biotechnology', 'Fall ', '2012', '680', '600', '1280', '4', '108', 'Bharati Vidyapeeth', 'Pharmacy', '7.1', '100', '0')
(1222, 'Northeastern University', '1', 'Admit', 'MS', 'Chemical Engineering', 'Fall ', '2012', '790', '730', '1520', '5', 'None', 'VTU', 'Biotechnology', '7.9', '100', '0')
(1223, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '155', '146', '301', 'None', '97', 'MU', 'Electronics', '5.5', '100', '0')
(1224, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '760', '330', '1090', '3', '91', 'Fr.CRCE', 'Computer Engineering', '7.042', '100', '0')
(1225, 'Northeastern University', '1', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '161', '144', '305', '3', '89', 'MU', 'Mechanical', '6.566', '100', '24')
(1226, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '620', '1390', '4', '98', 'D J Sanghvi', 'IT', '6.6579999999999995', '100', '0')
(1227, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '153', '315', '2.5', '106', 'Jaypee Institute of Information Technology', 'Computer Science & Engineer', '6.8', '10', '0')
(1228, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '170', '160', '330', '4', '112', 'Dr MGR College', 'Computer Science', '8.4', '10', '0')
(1229, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '158', '145', '303', '3.5', '100', 'MU', 'Computer', '7', '100', '0')
(1230, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '700', '640', '1340', '2.5', '103', 'J.B. Institute of Engg & Tech(Affliated to JNTU)', 'Computer Science', '7.49', '100', '0')
(1231, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '660', '410', '1070', '3', '97', 'Sir MVIT', 'CS', '6.831999999999999', '100', '0')
(1232, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '800', '350', '1150', '3.5', 'None', 'JNTU', 'electronics and Instrumentation', '0', '0', '0')
(1233, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '169', '148', '317', '3.5', '109', 'Dharamsinh Desai University', 'Information Technology', '8.31', '10', '11')
(1234, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '150', '310', '3', '104', 'Dr.BAMU Aurangabad/MIT Aurangabad', 'Computer Science and Engineering', '6.398', '100', '0')
(1235, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '159', '153', '312', '3.5', '98', 'Sri Venkateswara College of Engineering', 'Computer Science', '6.59', '10', '0')
(1236, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '141', '300', '3', '94', 'Atharva College', 'COMPUTER ENGINEERING', '3.71', '4', '0')
(1237, 'Northeastern University', '1', 'Admit', 'MS', 'Finance', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'Iowa State University', 'Economics and Finance', '3.22', '4', '0')
(1238, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '162', '152', '314', '3.5', '103', 'Anna University', 'Electrical And Electronics Engineering', '7.96', '10', '0')
(1239, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '610', '1400', '3.5', '107', 'VTU', 'Computer Science', '7.43', '100', '0')
(1240, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '720', '460', '1180', '2.5', '84', 'RCET bhilai', 'electrical', '0.72', '100', '0')
(1241, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '163', '147', '310', '3.5', '110', 'Amrita Vishwa Vidhyapeetham', 'Electrical and Electronics Engineering', '8.1', '10', '11')
(1242, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '139', '301', '3', '96', 'JNTU', 'ECE', '7.135', '100', '0')
(1243, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical and computer engineering electrical engineering telecommunications engineering', 'Fall ', '2013', '164', '156', '320', '3', '109', 'Amrita School of Engineering', 'EIE(elec & instrumentation)', '7.36', '10', '0')
(1244, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '146', '306', '4', 'None', 'Don Bosco Institute of Technology', 'Infortmation Technology', '6.5', '100', '0')
(1245, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '800', '750', '1550', '5', '290', 'SPCE', 'CE', '6.3', '100', '0')
(1246, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '165', '141', '306', '4', '104', 'SSN College of Engineering', 'ECE', '8.5', '100', '0')
(1247, 'Northeastern University', '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2015', '157', '145', '302', '3', '97', 'ASIET', 'IT', '7.06', '100', '42')
(1248, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '157', '319', '3.5', '106', 'RGMCET', 'COMPUTER SCIENCE', '6.9', '100', '0')
(1249, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '155', '319', '4.5', '108', 'Anna University', 'CSE', '9.26', '10', '10')
(1250, 'Northeastern University', '1', 'Admit', 'MS', 'medicinal chemistry', 'Fall ', '2014', '155', '158', '313', '4', '113', 'MU', 'Pharmacy', '5.75', '100', '24')
(1251, 'Northeastern University', '1', 'Admit', 'MS', 'Management Information System', 'Fall ', '2015', '155', '150', '305', '3.5', '111', 'Anna University', 'Chemical Engg', '9', '10', '36')
(1252, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '159', '150', '309', '3', '105', 'None', '0', '0', '0', '0')
(1253, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2007', '700', '550', '1250', 'None', 'None', 'None', '0', '0', '0', '0')
(1254, 'Northeastern University', '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2012', '780', '630', '1410', '4.5', '99', 'MU', 'computers', '5.9', '100', '0')
(1255, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '155', '146', '301', '3.5', 'None', 'VTU', 'Information Science', '7.05', '100', '0')
(1256, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics & Communication', 'Fall ', '2015', '154', '145', '299', '3.5', '102', 'Kurukshetra University', 'Electronics and Communication', '6.8', '100', '0')
(1257, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '630', '1410', '4', '107', 'MU', 'E & TC', '6.6', '100', '0')
(1258, 'Northeastern University', '1', 'Admit', 'MS', 'MIS-management related courses', 'Fall ', '2012', '157', '151', '308', '4', '102', 'MU', 'Computer Engineering', '6.4', '100', '0')
(1259, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2014', '161', '150', '311', '3', '111', 'COEP', 'Mechanical', '6.4', '10', '0')
(1260, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2012', '690', '630', '1320', '2.5', '89', 'MIT Pune', 'Mechanical Sandwich', '6.1530000000000005', '100', '0')
(1261, 'Northeastern University', '1', 'Admit', 'MS', 'Information Assurance', 'Fall ', '2015', '151', '154', '305', '4', '96', 'Anna University', 'ECE', '7.18', '10', '29')
(1262, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '164', '146', '310', '3.5', '101', 'GTU', 'Computer Enginnering', '7.77', '10', '0')
(1263, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '720', '1520', '4.5', '114', 'MU', 'Computers', '6.912000000000001', '100', '0')
(1264, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '154', '316', '3', '109', 'Sri Venkateswara College of Engineering', 'Computer Science Engineering', '7.7', '10', '0')
(1265, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '160', '150', '310', '3.5', 'None', 'Velammal Engineering College', 'EEE', '8.62', '10', '0')
(1266, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '147', '310', '3.5', '111', 'Guru Gobind Singh Indraprashta University', 'Computer Science', '7.3', '100', '0')
(1267, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2013', '153', '137', '290', '3', '81', 'MU', 'Electronics and telecommunicatio', '6.904000000000001', '100', '0')
(1268, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '730', '520', '1250', '3.5', '105', 'University of Pune', 'Information Technology', '6.4', '100', '0')
(1269, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '151', '310', '4', '105', 'UPTU', 'Computer Science', '3.2', '4', '0')
(1270, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '160', '148', '308', '3.5', '105', 'Anna University', 'Mechanical Engineering', '6.7', '10', '0')
(1271, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '740', '450', '1190', '3', 'None', 'MU', 'Electronics and Telecommunications', '7', '100', '27')
(1272, 'Northeastern University', '1', 'Admit', 'MS', 'CS / MSIS / ITM', 'Fall ', '2014', '164', '155', '319', '3.5', '105', 'SMVDU Jammu', 'CSE', '8.73', '10', '39')
(1273, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '162', '148', '310', 'None', '308', 'MU', 'Information technology', '6.6', '100', '0')
(1274, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '154', '317', '3.5', 'None', 'Model Engineering College', 'Computer Science', '7.4', '100', '36')
(1275, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '165', '156', '321', '3.5', '108', 'BMSCE', 'Computer Science', '9.26', '10', '0')
(1276, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '780', '420', '1200', '3.5', '91', 'COEP', 'Material Science', '6.46', '10', '0')
(1277, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '530', '1330', '3', '101', 'B M S College of Engineering', 'Electronics and Communications', '7.7', '100', '0')
(1278, 'Northeastern University', '1', 'Admit', 'MS', 'Management Information System', 'Fall ', '2014', '155', '154', '309', '3', '105', 'Sri Venkateswara College of Engineering', 'Computer Science and Engineering', '7.24', '10', '6')
(1279, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '155', '316', '3.5', '103', 'Dr. AIT VTU', 'Computer Science Engineering', '7.115', '100', '0')
(1280, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '157', '150', '307', '3.5', '100', 'VTU', 'Computer Science', '7.3469999999999995', '100', '0')
(1281, 'Northeastern University', '1', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(1282, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '167', '145', '312', '3', '101', 'VTU', 'Computer Science', '6.5', '100', '0')
(1283, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '152', '320', '3', '104', 'R V College of Engineering', 'Electronics and Communication', '8.84', '10', '0')
(1284, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '161', '150', '311', '3.5', 'None', 'Datta Meghe College of Engineering', 'Computer Science and Engineering', '5.7', '100', '16')
(1285, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Spring ', '2013', '160', '156', '316', '3.5', '7', 'Amrita School of Engineering', 'CSE', '2.5', '4', '0')
(1286, 'Northeastern University', '1', 'Admit', 'MS', 'energy', 'Fall ', '2014', '700', '430', '1130', '3', '7', 'Anna University', 'EEE', '0.875', '100', '0')
(1287, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '167', '150', '317', '4', '104', 'Manipal Institue of Technology', 'Computer Science and Engineering', '8.41', '10', '29')
(1288, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '149', '314', '3', '104', 'Cochin University of Science and Technology', 'Computer Science', '7.9', '100', '0')
(1289, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '166', '167', '333', '4.5', '113', 'Bangalore Institute of Technology', 'Computer Science', '7.67', '100', '0')
(1290, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '500', '1300', '4', '107', 'MU', 'Computer Engg', '6.74', '100', '0')
(1291, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2008', '700', '560', '1260', '4.5', '100', 'VTU', 'ece', '6.6', '100', '0')
(1292, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2011', '750', '500', '1250', '3', '101', 'North Gujarat University', 'EC', '3.6', '4', '0')
(1293, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '156', '151', '307', '3', '91', 'WIT Solapur', 'ECE', '6.265', '100', '0')
(1294, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '163', '152', '315', '3.5', '108', 'MU', 'Computer Engineering', '6.026', '100', '0')
(1295, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '590', '1340', '2.5', '101', 'CITM indore', 'computer science', '6.6129999999999995', '100', '0')
(1296, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '161', '152', '313', '3.5', '102', 'MU', 'EXTC', '7.5', '100', '0')
(1297, 'Northeastern University', '1', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2015', '161', '152', '313', '3.5', '107', 'Amrita School of Engineering', 'IT', '8.9', '10', '29')
(1298, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '720', '550', '1270', '3', '95', 'Nirma Institute of Technology', 'Information Technology', '8.46', '10', '0')
(1299, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '157', '325', '3', '103', 'Manipal Institue of Technology', 'Information technology', '7.75', '10', '0')
(1300, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '163', '152', '315', '3.5', '101', 'sri krishna devaraya university', 'CSE', '7.6', '10', '0')
(1301, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '530', '1310', '3', '104', 'VIT University', 'Computer Science', '9.2', '10', '0')
(1302, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '153', '146', '299', '3', '96', 'SRM', 'Mechanical Engineering', '8.2', '10', '0')
(1303, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '169', '157', '326', '4', '109', 'GGSIPU', 'ECE', '7.2', '100', '32')
(1304, 'Northeastern University', '1', 'Admit', 'MS', 'CS', 'Fall ', '2012', '800', '500', '1300', '5', '104', 'VTU', 'Electronics', '7', '100', '0')
(1305, 'Northeastern University', '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '740', '450', '1190', 'None', '102', 'K.C college of engineering', 'I.T', '0', '0', '0')
(1306, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2008', '780', '410', '1190', '3', '1210', 'SRKNEC nagpur', 'elect & communication', '6.8', '100', '0')
(1307, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2015', '161', '141', '302', '3', '102', 'Inderprastha Engineering College', 'Electronics & Communication', '7', '100', '0')
(1308, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '147', '310', '3', '102', 'SRM', 'CSE', '9.5', '10', '29')
(1309, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '730', '440', '1170', '3.5', '97', 'CEG', 'M.Sc(5 year Integrated)Information Technology', '8.52', '10', '0')
(1310, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '147', '309', '3', '100', 'Rajasthan Technical University', 'Computer Science', '7.529999999999999', '100', '0')
(1311, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '800', '490', '1290', '3', '105', 'Medicaps Institute of Science & Technology Indore', 'Computer Science', '7.925', '100', '0')
(1312, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '167', '165', '332', '4.5', '113', "St Joseph's College of Engineering", 'Electrical and Electronics Engineering', '7.89', '10', '14')
(1313, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2007', '800', '470', '1270', '3', '101', 'Northeastern', 'TSM', '3.33', '4', '0')
(1314, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '770', '570', '1340', '3', '107', 'BBSBEC', 'CSE', '7.609999999999999', '100', '0')
(1315, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '168', '156', '324', '3.5', '112', 'Chitkara University', 'Computer Science Engineering', '7.67', '10', '0')
(1316, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '165', '147', '312', '3.5', '312', 'JNTU', 'CSE', '7.1', '100', '0')
(1317, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '155', '142', '297', '3', '82', 'Shivaji University', 'Computer Science', '6.58', '100', '0')
(1318, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2011', '780', '540', '1320', '3', '114', 'VTU', 'Computer science', '7.9', '100', '0')
(1319, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2006', '750', '550', '1300', '4', '275', 'MU', 'EXTC', '6.7', '100', '0')
(1320, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '740', '440', '1180', '2', '91', 'VESIT', 'CS', '7', '100', '0')
(1321, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2008', '780', '540', '1320', '3.5', '105', 'MDU', 'Computer science', '6.6', '100', '0')
(1322, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Spring ', '2007', '780', '410', '1190', '3.5', '280', 'SASTRA', 'ECE', '7', '10', '0')
(1323, 'Northeastern University', '1', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '159', '149', '308', '3', '102', 'Nagarjuna University', 'Electronics & Computer Engineering', '8.26', '10', '0')
(1324, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Summer ', '2015', '161', '152', '313', '3.5', '96', 'University of Mumbai', 'Information Technology', '6.6', '100', '29')
(1325, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2016', '161', '153', '314', '3', '104', 'None', 'Computer Science', '7.67', '10', '0')
(1326, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '147', '309', '4', '99', 'Pune University', 'Computer', '7.4', '100', '12')
(1327, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '161', '158', '319', '3.5', '102', 'IIT Kharagpur', 'Chemistry', '6.39', '10', '0')
(1328, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '170', '150', '320', '3', '104', 'CVSR/ JNTU-Hyderabad', 'CSE', '7.2', '100', '0')
(1329, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '159', '153', '312', '3.5', '109', 'None', '0', '0', '0', '0')
(1330, 'Northeastern University', '1', 'Admit', 'MS', 'Chemical Engineering', 'Fall ', '2012', '790', '730', '1520', '5', 'None', 'VTU', 'Biotechnology', '7.9', '100', '0')
(1331, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '740', '460', '1200', '4', '104', 'Univ. of Mumbai', 'Electronics', '6.1', '100', '0')
(1332, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '163', '153', '316', '4.5', '110', 'Maharishi Dayanand University', 'Computer Science', '6.6', '100', '0')
(1333, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '159', '145', '304', '3.5', '99', 'JNTU', 'Computer Science and Engineering', '7.58', '100', '22')
(1334, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '150', '312', '3.5', '110', 'Dr. M.G.R. EDUCATIONAL AND RESEARCH INSTITUTE UNIVERSITY', 'ELECTRICAL AND ELECTRONICS ENGINEERING', '9.37', '10', '24')
(1335, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '770', '520', '1290', '3', '102', 'MU', 'ELECTRONICS & TELECOMMUNICATION', '6.5', '10', '0')
(1336, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2011', '730', '390', '1120', '3', '90', 'IET DAVV', 'Computer Engineering', '0', '0', '0')
(1337, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '390', '1190', '4', '104', 'MU', 'Electronics and Telecommunications (EXTC)', '7.5', '100', '0')
(1338, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '146', '309', '3', '101', 'MU', 'Computer Engineering', '5.8', '100', '0')
(1339, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '151', '313', '4', '113', 'VTU', 'CSE', '7.3', '100', '0')
(1340, 'Northeastern University', '1', 'Reject', 'MS', 'Electronics and electrical engineering', 'Fall ', '2014', '165', '150', '315', '3.5', '110', 'Vidyalankar Institute of Technology', 'Electronics', '7.2', '100', '0')
(1341, 'Northeastern University', '1', 'Reject', 'MS', 'Electronics and Communication', 'Spring ', '2013', '163', '145', '308', 'None', '96', 'RNSIT', 'ECE', '7.5', '100', '0')
(1342, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '159', '147', '306', '3', '105', 'MGIT - JNTUH', 'EEE', '7.3', '100', '0')
(1343, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '660', '1440', '4', '111', 'MU', 'Computer Enginnering', '6.9', '100', '0')
(1344, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '560', '1350', '3.5', '110', 'Pune University', 'Electronics Engineering', '3.25', '4', '0')
(1345, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '154', '144', '298', '3', 'None', 'Rajasthan Technical University', 'Computer Engineering', '6.5', '100', '0')
(1346, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '790', '330', '1120', '3.5', '85', 'MU', 'Computer', '6.35', '100', '0')
(1347, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '800', '520', '1320', '4', '113', 'VTU', 'Electronics and Communication', '6.1', '100', '0')
(1348, 'Northeastern University', '1', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '790', '420', '1210', '3', '93', 'K J Somaiya College of Engiineering', 'Mechanical', '6.6', '100', '0')
(1349, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '750', '580', '1330', '3', '100', 'Bharati Vidyapeeth', 'Electrical', '5.8', '100', '0')
(1350, 'Northeastern University', '1', 'Reject', 'MS', 'Information Systems', 'Fall ', '2012', '291', '139', '430', '3', '80', 'University of Mumbai', 'Information Technology', '5.4', '100', '0')
(1351, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '152', '316', '3.5', '102', 'University of Pune', 'Information Technology', '7.144', '100', '0')
(1352, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '161', '159', '320', '3', '116', 'MU', 'Computer Engineering', '6.1', '100', '0')
(1353, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '770', '690', '1460', '3', '104', 'MU', 'CS', '6.35', '100', '0')
(1354, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '156', '153', '309', '4', '105', 'YCCE', 'Computer Technology', '6.4', '100', '28')
(1355, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '156', '321', '3', '110', 'Anna University', 'B.Tech I.T', '7.61', '10', '0')
(1356, 'Northeastern University', '1', 'Reject', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2014', '156', '152', '308', '5', '111', 'RKNEC', 'Industrial', '7.4', '100', '0')
(1357, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '580', '1360', '4', 'None', 'BITS Pilani', 'Mechanical', '7.8', '10', '0')
(1358, 'Northeastern University', '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '710', '470', '1180', '3.5', '97', 'Sinhgad College of Engineering', 'Electronics & Telecommunications', '5.5', '100', '0')
(1359, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '790', '520', '1310', 'None', 'None', 'Atharva College', 'IT', '6.9', '100', '0')
(1360, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '153', '314', '3', '101', 'Nagpur University', 'Electronics Engineering', '7.6', '100', '0')
(1361, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '168', '152', '320', '3', '104', 'JUET', 'CSE', '6.9', '10', '0')
(1362, 'Northeastern University', '1', 'Reject', 'MS', 'Electronics and electrical engineering', 'Spring ', '2013', '161', '144', '305', '3', '84', 'American International University', 'Electrical & Electronic Engineering', '3.04', '4', '0')
(1363, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '157', '146', '303', '3.5', '90', 'Mepco Schlenk Engineering College', 'Computer Science', '7.5', '100', '0')
(1364, 'Northeastern University', '1', 'Reject', 'MS', 'Computational Science', 'Fall ', '2015', '158', '145', '303', '3', '110', 'KLS Gogte Institute of Technology', 'Computer Science and Engineering', '7.912000000000001', '100', '31')
(1365, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '161', '150', '311', '4', '108', 'M.I.T Pune', 'Computer Engineering', '5.987', '100', '0')
(1366, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '154', '321', '3', '108', 'FRCRCE-Mumbai University', 'Information Technology', '6.720000000000001', '100', '0')
(1367, 'Northeastern University', '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '161', '156', '317', '4', '112', 'VTU', 'Electronics and Communication', '7.7', '100', '0')
(1368, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Spring ', '2014', '158', '157', '315', '3.5', '105', 'JNTU', 'ECE', '7.3', '100', '0')
(1369, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '740', '640', '1380', '3', '87', 'MU', 'Computer science', '6.6', '100', '0')
(1370, 'Northeastern University', '1', 'Reject', 'MS', 'MIS-management related courses', 'Fall ', '2012', '160', '148', '308', '3', '106', 'Jaypee Institute of Information Technology', 'Information Technology', '6.1', '10', '0')
(1371, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '157', '143', '300', '3.5', '91', 'MU', 'Computer', '6.089', '100', '0')
(1372, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '770', '510', '1280', '4', '95', 'Goa University', 'Electronics and Telecommunication', '7.2', '100', '0')
(1373, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '145', '303', '4', '104', 'K J Somaiya College of Engiineering', 'COMPS', '6.5', '100', '0')
(1374, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '150', '311', '3', '91', 'Pune University', 'Computer', '6.2', '100', '0')
(1375, 'Northeastern University', '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '540', '1340', '3.5', '103', 'VNIT Nagpur', 'ECE', '8.22', '10', '0')
(1376, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '148', '310', '3', '100', 'UPTU', 'Computer Science', '6.7', '100', '0')
(1377, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '159', '150', '309', '3', '102', 'MU', 'EXTC', '6.077', '100', '12')
(1378, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '480', '1280', '3', '98', 'MU', 'computer', '6.43', '100', '0')
(1379, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '167', '143', '310', '3.5', '98', 'St Francis Institute of Technology - Mumbai Unversity', 'Computer Engineering', '7', '100', '0')
(1380, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '150', '308', '3', '92', 'UPTU', 'IT', '6.3', '100', '42')
(1381, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '490', '1280', '4', '103', 'MU', 'IT', '6.7', '100', '0')
(1382, 'Northeastern University', '1', 'Reject', 'MS', 'Pharmacology', 'Fall ', '2014', '145', '159', '304', '3.5', 'None', 'Nirma Institute of Technology', 'Pharmacy', '9.16', '10', '0')
(1383, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '152', '314', '3', '97', 'Kurukshetra University', 'information technology', '7.1', '100', '0')
(1384, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '159', '150', '309', '4', '107', 'MSRIT', 'Electronics and Communication', '8.42', '10', '13')
(1385, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '165', '156', '321', '4', 'None', 'Kathmandu University', 'Electrical and Electronics', '3.61', '4', '0')
(1386, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall', 'None', '158', '156', '314', '3.5', '109', 'SAKEC University of Mumbai', 'Electronics Engineering', '6.022', '100', '0')
(1387, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '510', '1310', '4', '100', 'VIT Mumbai University', 'Computer Engg', '5.738', '100', '0')
(1388, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '770', '370', '1140', '3', '87', 'K J Somaiya College of Engiineering', 'Electronics', '6', '100', '0')
(1389, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '146', '307', '4', '103', 'University of Pune', 'Computer Engineering', '7.0120000000000005', '100', '0')
(1390, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '490', '1260', '3', '101', 'MU', 'Computer Science', '6.3', '100', '0')
(1391, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '148', '309', '3', '96', 'Walchand College Of Engineering', 'IT', '7.66', '10', '29')
(1392, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '154', '318', '3', '102', 'thakur mumbai university', 'computer engg', '6.26', '100', '0')
(1393, 'Northeastern University', '1', 'Reject', 'MS', 'Manufacturing Engineering', 'Fall ', '2012', '165', '151', '316', '2.5', '95', 'UPTU', 'ME + MBA', '6.458', '100', '0')
(1394, 'Northeastern University', '1', 'Reject', 'MS', 'CS', 'Fall ', '2014', '164', '146', '310', '3', '91', 'VTU', 'CSE', '7.18', '100', '0')
(1395, 'Northeastern University', '1', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '690', '570', '1260', '2.5', '101', 'Pune University', 'Computer Science', '5.5', '100', '0')
(1396, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2103', '152', '144', '296', '3', '88', 'VTU', 'computer science', '7.8', '100', '0')
(1397, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '153', '148', '301', 'None', 'None', 'Pune University', 'Computer Science', '5.9', '100', '0')
(1398, 'Northeastern University', '1', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '650', '650', '1300', '3', '102', 'MU', 'Information Technology', '6.3', '100', '0')
(1399, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '157', '148', '305', '3', '101', 'Pune University', 'Electronics and communication', '6.5', '100', '0')
(1400, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '740', '560', '1300', '3', '100', 'YCCE', 'Electronics', '7.4', '100', '0')
(1401, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '167', '143', '310', '2.5', '84', 'NIT Allahabad', 'Information Technology', '6.89', '10', '0')
(1402, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '150', '312', '4.5', '112', 'Cochin University of Science and Technology', 'Computer Science', '6.635', '100', '34')
(1403, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2013', '710', '340', '1050', '3', '93', 'None', 'ECE', '6.3', '100', '0')
(1404, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '161', '152', '313', '4', '97', 'VIT University', 'ECE', '8.26', '10', '0')
(1405, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '168', '153', '321', '3.5', 'None', 'Mahrishi Dayanand University', 'Computer Science and Engineering', '6.942', '100', '0')
(1406, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '760', '550', '1310', '4', '110', 'Pune University', 'Computer Engineering', '6.339', '100', '0')
(1407, 'Northeastern University', '1', 'Reject', 'MS', 'software engineering', 'Fall ', '2014', '660', '350', '1010', '3', '92', 'University of Mumbai', 'Information Technology', '6.256', '100', '32')
(1408, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '165', '140', '305', '3', '83', 'GTU', 'ECE', '7.73', '10', '0')
(1409, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '152', '150', '302', '3', '90', 'MU', 'Information Technology', '6.3', '100', '11')
(1410, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '151', '312', '3', 'None', 'University of Pune', 'Computer Engg..', '6', '100', '0')
(1411, 'Northeastern University', '1', 'Reject', 'MS', 'Information technology management', 'Fall ', '2013', '161', '147', '308', '3', '93', 'R.G.P.V/Chamelidevi School Of Engineering', 'Electronics & Communication', '7.45', '100', '0')
(1412, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '152', '315', '3', '95', 'University of Pune', 'Computer Engineering', '6.7', '100', '18')
(1413, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical and computer engineering electrical engineering telecommunications engineering', 'Fall ', '2014', '161', '150', '311', '3', '95', 'MSRIT', 'Telecommunication', '7.5', '100', '0')
(1414, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science/ Electronics and Communication', 'Fall ', '2013', '162', '157', '319', 'None', '110', 'MU', 'Electronics', '5.5', '100', '0')
(1415, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '148', '309', '3.5', '105', 'VTU', 'Computer Science', '7.2', '100', '6')
(1416, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '770', '640', '1410', '4.5', '114', 'MU', 'Computer Engineering', '6.3', '100', '0')
(1417, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '780', '1570', '4.5', '107', 'University of Pune', 'Information technology', '5.85', '100', '0')
(1418, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '163', '148', '311', '3.5', '107', 'MU', 'Electronics and Telecommunications', '6.6930000000000005', '100', '24')
(1419, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '305', '149', '454', '3', 'None', 'Pune University', 'Computer Engineering', '0.38', '100', '0')
(1420, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2013', '166', '159', '325', '4', '110', 'Medicaps Institute of Science & Technology Indore', 'EC', '7.3', '100', '0')
(1421, 'Northeastern University', '1', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '155', '147', '302', '3', '101', 'University of Mumbai', 'Computer Engineering', '6.573', '100', '0')
(1422, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '156', '323', '4', '116', 'University of Mumbai', 'Computer Engineering', '6.555', '100', '16')
(1423, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '790', '550', '1340', '3', '99', 'University of Pune', 'Computer Engg.', '5.846', '100', '0')
(1424, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '660', '380', '1040', '3', '91', 'Pune University', 'Computer and Information Technology', '6.4', '100', '0')
(1425, 'Northeastern University', '1', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '153', '152', '305', '2', '91', 'IIPS DAVV', 'Mtech(IT)', '8.2', '100', '0')
(1426, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2006', '790', '620', '1410', '4.5', '287', 'MU', 'Elec and Telecom', '6.7', '100', '0')
(1427, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '790', '570', '1360', '3.5', '100', 'University of Pune', 'Computer Engineering', '5.7', '100', '24')
(1428, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '159', '146', '305', '2.5', '92', 'Bangalore Institute of Technology', 'Computer Science', '8.1', '100', '0')
(1429, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '160', '151', '311', '3', 'None', 'VTU', 'Computer Science', '8.18', '100', '0')
(1430, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '152', '311', '4', '110', 'MU', 'Computer engg', '6.2', '100', '0')
(1431, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2016', '165', '152', '317', '3', '103', 'Madras Institute of Technology', 'Electronics & Communications Enginnering', '6.5', '10', '24')
(1432, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '149', '313', '2.5', 'None', 'SVCE', 'EEE', '7.5', '100', '0')
(1433, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '157', '320', '3.5', '115', 'D J Sanghvi', 'Information technology', '6.6', '100', '0')
(1434, 'Northeastern University', '1', 'Reject', 'MS', 'Mechanical Engineering', 'Spring ', '2011', '690', '620', '1310', '3', '96', 'University of Rajasthan', 'Mechanical Engineering', '7.05', '100', '0')
(1435, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical and Electronics', 'Fall ', '2011', '710', '590', '1300', '4.5', '111', 'Veer Narmad South Gujarat University', 'Instrumentation & Control', '6.4', '100', '0')
(1436, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '159', '150', '309', '3', '92', 'New Horizon College of Engineering', 'computer science', '7.9', '100', '48')
(1437, 'Northeastern University', '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '780', '640', '1420', '4', '105', 'Pune University', 'E-tc', '5.7', '100', '0')
(1438, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical and Electronics', 'Fall ', '2013', '161', '145', '306', '3', '102', 'Sri Manakula Vinayagar Engineering College', 'Electrical and Electronics Engineering', '8.53', '10', '0')
(1439, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '155', '144', '299', '3', '84', 'Anna University', 'Computer science and engineering', '7.6', '100', '0')
(1440, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '800', '580', '1380', '4', '115', 'MU', 'Computers', '5.3950000000000005', '100', '0')
(1441, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '156', '150', '306', '2.5', '90', 'Pune University', 'Computerscience', '5.6', '100', '44')
(1442, 'Northeastern University', '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '160', '155', '315', '4', '94', 'DTU', 'ECE', '6.3', '100', '0')
(1443, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '149', '308', '3', '102', 'MU', 'computer engg', '6.6', '100', '0')
(1444, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '162', '158', '320', '4', '115', 'Amrita Vishwa Vidhyapeetham', 'CSE', '8.1', '10', '0')
(1445, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '710', '540', '1250', '3', '105', 'UPTU', 'Electronics & Communication', '6.5200000000000005', '100', '0')
(1446, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '780', '530', '1310', '3', '93', 'PESIT', 'Information Science', '6.5', '100', '0')
(1447, 'Northeastern University', '1', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2013', '164', '147', '311', '4.5', '95', 'Jaypee Institute of Information Technology', 'Electronics and Communications', '5.6', '10', '0')
(1448, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '166', '152', '318', '3', '110', 'Sikkim Manipal Institute of Technology', 'Computer Science', '7.19', '10', '51')
(1449, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '166', '159', '325', '4.5', '113', 'University of Pune', 'Computer', '6.0280000000000005', '100', '0')
(1450, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '760', '580', '1340', '3.5', '105', 'RMK Engineering College', 'B.E Computer Science', '7.4', '100', '0')
(1451, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '660', '1430', '4', '110', 'Sri Venkateswara College of Engineering', 'ECE', '7.6', '100', '0')
(1452, 'Northeastern University', '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '162', '145', '307', '3.5', '102', 'NIT Tirchy', 'Electronics And Communication', '6.61', '10', '0')
(1453, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2011', '800', '460', '1260', '4', '109', 'Sardar Patel College of Engineering', 'Electronics and Telecommunication', '7.133', '100', '0')
(1454, 'Northeastern University', '1', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2011', '660', '460', '1120', '3', '87', 'K J Somaiya College of Engiineering', 'Electronics Engineering', '5.5', '100', '0')
(1455, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '151', '312', '3.5', '102', 'RAIT', 'Computer Engg.', '6.82', '100', '0')
(1456, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '750', '510', '1260', '3', '104', 'VIIT', 'computer engineering', '5.5', '100', '0')
(1457, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '780', '430', '1210', '3.5', '103', 'Rajiv Gandhi Institute Of Technology', 'Information Technology', '5.5', '100', '0')
(1458, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '680', '430', '1110', '3.5', '102', 'VCET', 'Computer Science', '6.3', '100', '0')
(1459, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '460', '1260', '3.5', '103', 'GITAM', 'IT', '6.7', '100', '0')
(1460, 'Northeastern University', '1', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2011', '730', '470', '1200', '3', '100', 'University of Pune', 'Chemical Engineering', '6', '100', '0')
(1461, 'Northeastern University', '1', 'Reject', 'MS', 'Mechanical Engineering', 'Spring ', '2015', '160', '146', '306', '2.5', 'None', "St Joseph's College of Engineering", 'Mechanical', '8.32', '10', '8')
(1462, 'Northeastern University', '1', 'Reject', 'MS', 'CS', 'Fall ', '2015', '167', '145', '312', '3', 'None', 'University of Mumbai', 'Information Technology', '7.013', '100', '42')
(1463, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2015', '166', '149', '315', '3.5', '104', 'R.N.S.I.T / VTU', 'Electronics and communication', '6.8', '100', '15')
(1464, 'Northeastern University', '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '165', '156', '321', '4', '107', 'BVM Engineering College', '0', '7.96', '10', '0')
(1465, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '157', '155', '312', '4.5', '108', 'VIT University', 'CSE', '8.4', '10', '6')
(1466, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '160', '151', '311', '3.5', '87', 'Sarvajanik College of Engineering & Technology', 'Computer', '7.94', '10', '0')
(1467, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '158', '320', '4', '113', 'None', '0', '0', '0', '0')
(1468, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '165', '149', '314', '3.5', '103', 'Rajasthan Technical University', 'Computer Science and Engineering', '7.3', '100', '0')
(1469, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '160', '150', '310', '4', '100', 'Bangladesh University of Engineering & Technology', 'Computer Science', '3.91', '4', '0')
(1470, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '710', '440', '1150', '3', '94', 'VTU', 'Electronics and Communication', '6.069', '100', '0')
(1471, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2006', '770', '710', '1480', '4', '280', 'MU', 'Electronics and Telecommunication', '5.7', '100', '0')
(1472, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2015', '157', '147', '304', '3.5', '97', 'None', '0', '7.725', '100', '48')
(1473, 'Northeastern University', '1', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2011', '730', '310', '1040', '3', '89', 'Somaiya', 'IT', '6.1', '100', '0')
(1474, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '152', '315', '4', '104', 'Pune University', 'Computer Engineering', '6.1', '100', '0')
(1475, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '750', '560', '1310', '3', '100', 'St Francis Institute of Technology - Mumbai Unversity', 'Electronics and telecommunication', '6.17', '100', '0')
(1476, 'Northeastern University', '1', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '157', '161', '318', '4.5', '112', 'Pune University', 'Computer Engineering', '6.85', '100', '0')
(1477, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '760', '450', '1210', '3', '96', 'Pune University', 'Computer Science', '5.9', '100', '0')
(1478, 'Northeastern University', '1', 'Reject', 'MS', 'CS', 'Fall ', '2014', '150', '151', '301', '3', '102', 'MU', 'computer', '6.4', '100', '0')
(1479, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '760', '710', '1470', '3.5', '100', 'Pune University', 'I.T', '6.13', '100', '0')
(1480, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '159', '146', '305', '3', '92', 'SSN College of Engineering', 'Electrical and Electronics', '7.9', '100', '0')
(1481, 'Northeastern University', '1', 'Reject', 'MS', 'CS / SE / IT / MIS', 'Fall ', '2015', '161', '155', '316', '4', '101', 'University of Pune', 'IT', '6.3', '100', '13')
(1482, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '710', '330', '1040', '3', 'None', 'D Y Patil College of Engineering', 'Information Technology', '6.15', '100', '0')
(1483, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2013', '720', '310', '1030', '3', '84', 'BVM Engineering College', 'Electronics Engineering', '8.38', '10', '0')
(1484, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '166', '154', '320', '3.5', '111', 'University of Mumbai', 'Electrical Engineering', '7.06', '100', '0')
(1485, 'Northeastern University', '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '600', '1380', '3.5', '109', 'MU', 'Electronics', '7.3', '100', '0')
(1486, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '380', '1180', '4', '103', 'Shivajirao S. Jondhale College of Engineering', 'Computer Engineering', '6', '100', '0')
(1487, 'Northeastern University', '1', 'Reject', 'MS', 'CS/SE', 'Fall ', '2012', '800', '610', '1410', '4', '104', 'NMIMS', 'CE', '3.07', '4', '0')
(1488, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '167', '151', '318', '4', '111', 'GGSIPU', 'MCA(Software Engineering)', '7.1', '100', '32')
(1489, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '158', '145', '303', '3.5', 'None', 'University of Kerala', 'CSE', '7.9799999999999995', '100', '0')
(1490, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '160', '323', '3.5', '108', 'MU', 'Computer Engineering', '5.8', '100', '33')
(1491, 'Northeastern University', '1', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '158', '144', '302', '3', '98', 'NMIMS', 'Electronics and telecomm', '3.06', '4', '0')
(1492, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engg/ comp engg', 'Spring ', '2013', '730', '320', '1050', '3.5', '94', 'MU', 'Electronics Engineering', '6.268', '100', '0')
(1493, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '730', '330', '1060', '3', '87', 'University of Mumbai', 'Electronics', '6.8', '100', '0')
(1494, 'Northeastern University', '1', 'Reject', 'MS', 'Biochemistry and Molecular biology', 'Fall ', '2011', '720', '590', '1310', '3', '101', 'Kurukshetra University', 'Biochemistry', '7.3', '100', '0')
(1495, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '161', '146', '307', '3', '106', 'Sathyabama University', 'Electronics and telecommunication', '8.4', '10', '0')
(1496, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '169', '153', '322', '4.5', '114', 'MDU', 'Applied Electronics and Instrumentation', '7.4319999999999995', '100', '0')
(1497, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '780', '650', '1430', '3', '101', 'M.I.T.M(RGTU)', 'Computer Science', '7', '100', '0')
(1498, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '700', '350', '1050', '3', '105', 'MU', 'Computer Science', '5.4', '100', '0')
(1499, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '157', '315', '3.5', '101', 'Anna University', 'Information Technology', '0.818', '100', '21')
(1500, 'Northeastern University', '1', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '148', '143', '291', '4.5', '103', 'Pune University', 'IT', '6.7', '100', '0')
(1501, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2013', '161', '152', '313', '3', '104', 'Thapar University', 'Electronis and Instrumentation', '8.8', '10', '0')
(1502, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '158', '148', '306', '4', '98', 'K J Somaiya College of Engiineering', 'Computer Engineering', '5.8', '100', '0')
(1503, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '730', '500', '1230', '2.5', '87', 'St Francis Institute of Technology - Mumbai Unversity', 'Computers', '6', '100', '0')
(1504, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '159', '146', '305', '3.5', '99', 'RGIT', 'Comp', '5.3', '100', '0')
(1505, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '161', '151', '312', '3', '88', 'I.E.T D.A.V.V.', 'ELECTRONICS AND INSTRUMENTATION ENGINEERING', '6.6450000000000005', '100', '0')
(1506, 'Northeastern University', '1', 'Reject', 'MS', 'Electronics and Communication', 'Spring ', '2014', '162', '153', '315', '3.5', '97', 'VTU', 'Electronics and Communications', '8.3', '100', '0')
(1507, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '165', '149', '314', '3', '95', 'Swami Vivekananda Institute Of Technology', 'Computer science', '7.3', '100', '0')
(1508, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '160', '151', '311', '3', '101', 'VIT University', 'CSE', '8.56', '10', '24')
(1509, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '155', '144', '299', '3.5', '96', 'VTU', 'Instrumentation Technology', '7.7', '100', '0')
(1510, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '740', '600', '1340', '4', '115', 'MU', 'Computer Science', '5.7', '100', '0')
(1511, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '159', '145', '304', '3', '112', 'Gujarat Technological University', 'Electronics and Telecomm.', '8.44', '10', '0')
(1512, 'Northeastern University', '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '560', '1350', '4', '106', 'Nagpur University', 'Electronics and Comm.', '7.5', '100', '0')
(1513, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '570', '1370', '3.5', '98', 'IT BHU', 'Electrical Engg', '7.48', '10', '0')
(1514, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '153', '315', '3.5', '108', 'VTU', 'Electronics & Communication', '7.1', '100', '36')
(1515, 'Northeastern University', '1', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '163', '162', '325', '4', '8', 'Chhattisgarh Swami Vivekanand Technical Unveirsity', 'Computer Science and Engineering', '8.19', '10', '0')
(1516, 'Northeastern University', '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '580', '1380', '3', '103', 'GITAM', 'ECE', '7.3', '10', '0')
(1517, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '153', '316', '4', '94', 'Medicaps Institute of Science & Technology Indore', 'Information Technology', '8.07', '10', '0')
(1518, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Spring ', '2013', '760', '630', '1390', '4', '114', 'NIT Tirchy', 'Electrical & Electronics', '6.83', '10', '0')
(1519, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '560', '1360', '4', '103', 'Ahmedabad Institute of Technology', 'Computer Engineering', '3.26', '4', '0')
(1520, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '163', '158', '321', '3.5', '107', 'SVNIT', 'Electronics Engineering', '6.56', '10', '0')
(1521, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '165', '158', '323', '3.5', 'None', 'MU', 'computer', '6.8', '100', '4')
(1522, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '166', '150', '316', '2.5', '98', 'BITS Pilani', 'Computer Science', '5.5', '10', '0')
(1523, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '158', '146', '304', '3', 'None', 'SNIST', '0', '6.8', '100', '54')
(1524, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '154', '154', '308', '3.5', '8', 'Anna University', 'Electronics and communication engineering', '6.8', '100', '0')
(1525, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '800', '710', '1510', '4', '116', 'D J Sanghvi', 'Electronics', '5.85', '100', '16')
(1526, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '160', '150', '310', '3', '88', 'MIT Pune', 'Computer science', '6.05', '100', '0')
(1527, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '167', '166', '333', '4.5', '118', 'None', 'Computer Science', '7.84', '10', '0')
(1528, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '660', '540', '1200', '3.5', '95', 'University of Rajasthan', 'ECE', '6.9', '100', '0')
(1529, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '490', '1270', '3.5', '98', 'NIT Allahabad', 'IT', '7.8', '10', '0')
(1530, 'Northeastern University', '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '160', '151', '311', '4', '102', 'SRM', 'ECE', '8.59', '10', '22')
(1531, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '540', '1330', '3', '102', 'University of Pune', 'Computer Engineering', '5.779999999999999', '100', '0')
(1532, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2016', '163', '163', '326', '4', '110', 'Goa University', 'Computer Engineering', '7.372', '100', '46')
(1533, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '730', '560', '1290', '4', '102', 'University of Mumbai', 'CE', '5.720000000000001', '100', '0')
(1534, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '149', '311', 'None', '93', 'Anna University', 'CSE', '8.2', '10', '0')
(1535, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '151', '309', '3', '93', 'Vishwakarma Institute of Technology', 'Computer Science', '7.1', '10', '0')
(1536, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '790', '550', '1340', '3.5', '106', 'MIT Pune Univ', 'Electronics & TeleCommunication Engg', '5.8', '100', '0')
(1537, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '710', '380', '1090', '2.5', '103', 'NMIMS', 'Electronics', '3.32', '4', '0')
(1538, 'Northeastern University', '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2007', '770', '570', '1340', '4.5', '107', 'None', 'Electronics and Telecommunication', '6.1', '100', '0')
(1539, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '650', '530', '1180', '3', '104', 'MU', 'Information technology', '5.3', '100', '0')
(1540, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '152', '160', '312', '4', '119', 'Shivaji University', 'Electronics & Telecommunication', '3.02', '4', '0')
(1541, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '149', '312', '3', '97', 'Pune University', 'Electronic and Telecommunication', '6.1', '100', '44')
(1542, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '750', '510', '1260', '3.5', '106', 'MU', 'Computers', '5.976', '100', '0')
(1543, 'Northeastern University', '1', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '42', '24', '66', '4', '96', 'MU', 'Computer science', '6.2299999999999995', '100', '0')
(1544, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '610', '1400', '3.5', '99', 'mit pune', 'e-tc', '6.491', '100', '0')
(1545, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '145', '306', '3', '103', 'B V Bhoomaraddi College of Engg & Tech (Affiliated to VTU)', 'Information Science and Engineering', '7.39', '10', '26')
(1546, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '750', '510', '1260', '3.5', '104', 'Thadomal Shahani Engineering College', 'Computers', '6.1', '100', '0')
(1547, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2010', '770', '320', '1090', '3.5', '98', 'VTU', 'Electronics and Communication Engineering', '7', '100', '0')
(1548, 'Northeastern University', '1', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '160', '149', '309', '3', '101', 'D Y Patil College of Engineering', 'Electronics Engineering', '7.2', '100', '0')
(1549, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '740', '370', '1110', '3', '82', 'K J Somaiya College of Engiineering', 'INFORMATION TECHNOLOGY', '6.7', '100', '0')
(1550, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'Amrita School of Engineering', 'CSE', '7', '10', '0')
(1551, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '710', '460', '1170', '3', '100', 'University of Pune', 'Compurter Engineering', '6', '100', '0')
(1552, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '170', '161', '331', '4', '110', 'VTU', 'Computer Science', '6.8', '100', '36')
(1553, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '160', '150', '310', '3', '102', 'MU', 'IT', '6.5', '100', '0')
(1554, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '770', '570', '1340', '3.5', '110', 'Pune University', 'Electronics and Telecomm', '6.2', '100', '0')
(1555, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2013', '157', '136', '293', '3.5', '87', 'RTM Nagpur University', 'Electrical Engg', '6.503', '100', '0')
(1556, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '168', '149', '317', '3', '95', 'VNR VJIET', 'CSE', '6.7', '100', '0')
(1557, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '159', '149', '308', '3', '81', 'GTU', 'EC', '0.716', '100', '0')
(1558, 'Northeastern University', '1', 'Reject', 'MS', 'Information Technology', 'Fall ', '2012', '730', '530', '1260', '3.5', '99', 'St Francis Institute of Technology - Mumbai Unversity', 'IT', '5.5', '100', '0')
(1559, 'Northeastern University', '1', 'Reject', 'MS', 'software engineering', 'Fall ', '2012', '154', '144', '298', '3.5', '86', 'University of Pune', 'Information Technology', '6.3', '100', '0')
(1560, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '155', '317', 'None', '104', 'Amrita School of Engineering', 'Electrical and Electronics', '6.7', '10', '45')
(1561, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '150', '308', '3', '92', 'MU', 'IT', '5.7', '100', '0')
(1562, 'Northeastern University', '1', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2011', '740', '620', '1360', '3.5', '117', 'Atria Institute of Technology', 'telecommunication', '6.3', '100', '0')
(1563, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '164', '154', '318', '3', '113', 'Sapthagiri College of Engineering', 'Electronics and Communication', '6.914', '100', '0')
(1564, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '160', '152', '312', '3', 'None', 'Punjab Technical University', 'Computer Science Engineering', '7.1', '100', '0')
(1565, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '740', '570', '1310', '3', '102', 'Anna University', 'Electronics and Instrumentation Engg', '8.62', '10', '0')
(1566, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2006', '700', '320', '1020', '2.5', '237', "VIDYAVARDHINI'S COLLEGE VASAI WEST MUMBAI UNIVERSITY", 'Computer Engg', '5.6', '100', '0')
(1567, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2016', '157', '157', '314', '4.5', 'None', 'CEG', 'Computer Science and Engineering', '0', '0', '22')
(1568, 'Northeastern University', '1', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2013', '154', '154', '308', '3.5', '105', 'MU', 'IT', '6.3', '100', '0')
(1569, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '169', '146', '315', '3.5', '86', 'HUST', 'Information Technology', '7.82', '10', '0')
(1570, 'Northeastern University', '1', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2013', '760', '420', '1180', '3', '101', 'Pune University', 'E&Tc;', '5.9', '100', '0')
(1571, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '156', '147', '303', '3', '89', 'Atharva College', 'computer', '6', '100', '0')
(1572, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '155', '314', '3.5', '104', 'Pune University', 'Information Technology', '6.25', '100', '0')
(1573, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '160', '148', '308', '3', '98', 'Sree Vidyanikethan Engineering College', 'Electronics and Communication Engineering', '7.9', '100', '0')
(1574, 'Northeastern University', '1', 'Reject', 'MS', 'CS', 'Spring ', '2015', '161', '149', '310', '4', '105', 'UPTU', 'Computer Scinece', '8.204', '100', '30')
(1575, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2015', '161', '157', '318', '4.5', '114', 'NUST', 'Electrical and Power Engineering Department - Electronics Engineering', '3.13', '4', '3')
(1576, 'Northeastern University', '1', 'Reject', 'MS', 'Entertainment technology-Animations and graphics', 'Fall ', '2013', '710', '570', '1280', '4', '106', 'Yadavrao Tasgaonkar Institute of Engineerig and Technology', 'Electronics and Telecommunication', '6.476000000000001', '100', '0')
(1577, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering & Information Technology', 'Spring ', '2015', '164', '144', '308', '4', '97', 'INSTITUTE OF ENGINEERING AND TECHNOLOGY', 'ELECTRONICS AND TELECOMMUNICATION', '7.340000000000001', '100', '3')
(1578, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '580', '1360', '3', '110', 'K J Somaiya College of Engiineering', 'electronics', '6.345000000000001', '100', '0')
(1579, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '380', '1180', '3', '94', 'MDU', 'Computer Science', '6.1', '100', '0')
(1580, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '170', '168', '338', '4.5', '116', 'Pune University', 'B.E (Computer Science)', '5.7', '100', '15')
(1581, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science/ Electronics and Communication', 'Fall ', '2014', '163', '141', '304', '3', '94', 'NMIMS', 'Information Technology', '2.98', '4', '0')
(1582, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '161', '145', '306', '3', '104', 'University institute of engineering and technology panjab university chandigarh', 'electrical and electronics engineering', '6.2', '100', '0')
(1583, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '160', '148', '308', '3', 'None', 'BPUT', '0', '7.4', '10', '0')
(1584, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '149', '310', '2.5', '92', 'University of Pune', 'Electronics and Telecommunication', '8.57', '10', '0')
(1585, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '160', '153', '313', '3.5', '100', 'NMU', '0', '6.1', '100', '0')
(1586, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '650', '1450', '4.5', '110', 'Gujarat Technological University', 'Electrical and Electronics', '7.56', '100', '0')
(1587, 'Northeastern University', '1', 'Reject', 'MS', 'Engineering Management', 'Spring ', '2013', '145', '139', '284', '2', '82', 'None', '0', '0', '0', '0')
(1588, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2008', '800', '470', '1270', '4.5', '104', 'NIT (REC) Calicut India', 'Electronics and Communications Engineering', '6.1', '100', '0')
(1589, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '780', '630', '1410', '4.5', '109', 'MU', 'Electronics and Telecommunication', '6.803', '100', '0')
(1590, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '161', '162', '323', '4', '110', 'VTU', 'Electronics and Communication', '6.295', '100', '0')
(1591, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '148', '310', '3', '91', 'Govt Model Engineering College', 'Computer Science and Engineering', '7.2', '100', '0')
(1592, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '730', '620', '1350', '4', '111', 'Bangalore Institute of Technology', 'Electronics and Communication', '5.85', '100', '0')
(1593, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '680', '570', '1250', '3.5', '106', 'MU', 'Information Technology', '6.5', '100', '0')
(1594, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2006', '540', '620', '1160', '3.5', '273', 'MU', 'Computer Engg', '0', '0', '0')
(1595, 'Northeastern University', '1', 'Reject', 'MS', 'environmental engineering', 'Fall ', '2012', '154', '154', '308', '3', '97', 'Guru Nanak Dev University Amritsar', 'Civil Engineering', '7.74', '100', '0')
(1596, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '159', '141', '300', '3', '91', 'BVBCET', 'Computer and Information Science', '8.55', '10', '0')
(1597, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '530', '1320', '4.5', '107', 'DBIT', 'Comp Engg', '6', '100', '0')
(1598, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '168', '158', '326', '4', '110', 'University of Pune', 'Computer Engineering', '5.9', '100', '0')
(1599, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '165', '145', '310', '3', '95', 'Sardar Patel University', 'Electronics', '3.5', '4', '0')
(1600, 'Northeastern University', '1', 'Reject', 'MS', 'Information Management', 'Fall ', '2014', '163', '151', '314', '3', '100', 'Jaypee Institute of Information Technology', 'Information Technology', '6.9', '100', '36')
(1601, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '400', '1200', '2.5', '102', 'K J Somaiya College of Engiineering', 'Electronics', '6.2', '100', '0')
(1602, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '163', '156', '319', '3', '111', 'BITS Pilani', 'Information Systems', '6.55', '10', '60')
(1603, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science/ Mgmt', 'Spring ', '2014', '165', '155', '320', '4', '112', 'JNTU', 'Biotechnology', '7.114', '100', '0')
(1604, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '151', '314', '3', '110', 'JNTU', 'Computer Science and Engineering', '6.3', '100', '60')
(1605, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '163', '151', '314', '3', '90', 'D J Sanghvi', 'EXTC', '7.284999999999999', '100', '0')
(1606, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '145', '307', '3', '82', 'Government Engineering College Patan affilated with GTU', 'Computer Science & Engineering', '8.34', '10', '0')
(1607, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '165', '156', '321', '4.5', '112', 'MU', 'Computer Engineering', '7.1', '100', '30')
(1608, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '166', '140', '306', '3', '85', 'VTU', 'Computer Science', '7.24', '100', '36')
(1609, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '156', '150', '306', '4', '108', 'Sri Sairam Inst of Technology', 'Information Tech', '8.5', '10', '13')
(1610, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '159', '150', '309', '4', '6', 'Vignan Institute of Technology and Science', 'ECE', '7.7', '100', '0')
(1611, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '159', '154', '313', '4', '110', 'VIT', 'ECE', '8.34', '10', '0')
(1612, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '720', '550', '1270', '3.5', '108', 'Pune University', 'Computer Engineering', '5.6', '100', '0')
(1613, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '154', '145', '299', '3.5', '93', 'The Oxford college of engineering (VTU))', 'Information Science', '6.733', '100', '0')
(1614, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '550', '1350', '3.5', '106', 'MU', 'Electronics and Telecommunication', '7.45', '100', '0')
(1615, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2012', '780', '350', '1130', '3.5', '93', 'University of Mumbai', 'Instrumentation', '7', '100', '0')
(1616, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '151', '315', '3', '101', 'MU', 'Information Technology', '7.1', '100', '0')
(1617, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '750', '510', '1260', '3.5', '86', 'Anna University', 'Computer Science', '8.040000000000001', '100', '0')
(1618, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '560', '1360', '3.5', '108', 'RAIT', 'Computer', '5.8', '100', '0')
(1619, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '400', '1160', '3', '102', 'VCET', 'Computers', '6.5', '100', '0')
(1620, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '166', '165', '331', '4', '112', 'K.S. Institute of Technology', 'Computer Science and Engineering', '7.55', '100', '23')
(1621, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '157', '146', '303', '3.5', '91', 'Kurukshetra University', 'CSE', '6.76', '100', '0')
(1622, 'Northeastern University', '1', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2013', '161', '149', '310', '4', '105', 'University of Mumbai', 'Electronics', '0', '0', '0')
(1623, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '165', '159', '324', '5', '111', 'Amrita School of Engineering', 'Computer Science', '8.93', '10', '0')
(1624, 'Northeastern University', '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '550', '1340', '3.5', '100', 'Nirma Institute of Technology', 'Electronics & Communications', '8.47', '10', '0')
(1625, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '153', '157', '310', '4.5', '114', 'BMSCE', 'Information Science', '7.49', '10', '6')
(1626, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '155', '148', '303', 'None', '90', 'Gurunanak institute of tech', 'CSE', '7.9', '100', '13')
(1627, 'Northeastern University', '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '158', '155', '313', '4', '118', 'GGSIPU', 'ECE', '7.459999999999999', '100', '0')
(1628, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2011', '800', '420', '1220', '3', '99', 'JNTU', 'ECE', '7.1', '100', '0')
(1629, 'Northeastern University', '1', 'Reject', 'MS', 'software engineering', 'Spring ', '2014', '158', '142', '300', '3', '89', 'Pune University', 'Information Technology', '5.9', '100', '0')
(1630, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '168', '142', '310', '3', '90', 'IIT Bhubaneswar', 'Electrcial Engineering', '8.14', '10', '0')
(1631, 'Northeastern University', '1', 'Reject', 'MS', 'MIS', 'Fall ', '2011', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(1632, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '153', '314', '4', '113', 'MU', 'Computer Engineering', '6.0280000000000005', '100', '0')
(1633, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '700', '320', '1020', '3.5', '90', 'SCOE Pune', 'Information Technology', '5.8', '100', '0')
(1634, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '160', '150', '310', '4.5', '108', 'Manipal Institue of Technology', 'Computer Science', '7.4', '10', '0')
(1635, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2007', '780', '370', '1150', '5', '270', 'College of Technology Pantnagar', 'Electronics and Communication Engineering', '7.922', '10', '0')
(1636, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '470', '1240', '3', '97', 'DAVV', 'IIPS', '7.27', '10', '0')
(1637, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '156', '147', '303', '2.5', 'None', 'University of Mumbai', 'Computer Engineering', '7.269', '100', '0')
(1638, 'Northeastern University', '1', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '157', '146', '303', '3', '96', 'Anna University', 'Mechanical Engineering', '7', '10', '0')
(1639, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2007', '740', '470', '1210', '3', '257', 'Anna University', 'ECE', '8.4', '10', '0')
(1640, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '148', '310', '2.5', '92', 'University of Pune', 'IT', '6', '100', '25')
(1641, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '149', '311', '3', '92', 'JNTU', 'computer science', '6.751', '100', '0')
(1642, 'Northeastern University', '1', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2013', '156', '142', '298', '3', '97', 'SIES Graduate School of Technology', 'EXTC', '0', '0', '0')
(1643, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '157', '145', '302', '3.5', '92', 'None', 'ECE', '8.35', '10', '90')
(1644, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '800', '640', '1440', '4.5', '114', 'BITS Dubai', 'Electronics and Instrumentation', '8.97', '10', '0')
(1645, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '770', '630', '1400', '3.5', '105', 'MU', 'Electronics and Telecom', '5.5', '100', '0')
(1646, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '380', '1160', '2.5', '91', 'Pondicherry University', 'CSE', '7.45', '10', '0')
(1647, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '141', '300', '3', '88', 'Gujarat Technological University', 'Computer Engineering', '8.8', '10', '0')
(1648, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '158', '143', '301', '3.5', '90', "BLDEA's CET", 'Information Science & Engineering', '7.2', '100', '0')
(1649, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '160', '148', '308', '3', '92', 'VTU', 'Information science & Engineering', '7.2', '100', '0')
(1650, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '167', '330', '4', '112', 'University of Mumbai', 'Computer Engineering', '5.4', '100', '0')
(1651, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '153', '318', '4', '104', 'CHARUSAT', 'Computer Engineering', '8.58', '10', '0')
(1652, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '155', '318', '3.5', '103', 'St.Francis Institute of Technology', 'Computer Engineering', '5.74', '100', '0')
(1653, 'Northeastern University', '1', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2012', '148', '151', '299', '3.5', '112', 'MU', 'BE Civil', '0', '0', '0')
(1654, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '760', '640', '1400', '4', '112', 'MU', 'EXTC', '5.9', '100', '0')
(1655, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '153', '145', '298', '4', '91', 'U.P.T.U', 'Electrical & Electronics', '7.116', '100', '0')
(1656, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '160', '147', '307', '3', '86', 'MDU', 'MCA', '7.4', '100', '45')
(1657, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '159', '153', '312', '4', 'None', 'K J Somaiya College of Engiineering', 'Computers', '6.2', '100', '65')
(1658, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '720', '510', '1230', '3', '106', 'MU', 'Computer Engineering', '6.9', '100', '0')
(1659, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '159', '154', '313', '4', '103', 'Pune University', 'Information technology', '5.758', '100', '44')
(1660, 'Northeastern University', '1', 'Reject', 'MS', 'CS', 'Fall ', '2013', '161', '147', '308', '3', '80', 'MU', 'IT', '5.62', '100', '0')
(1661, 'Northeastern University', '1', 'Reject', 'MS', 'Instrumentation and Control', 'Fall ', '2011', '800', '550', '1350', '3', '96', 'Thapar University', 'Electrical &Instrumenattion; Engineering', '6.44', '10', '0')
(1662, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '166', '149', '315', '4', '107', 'VIT', 'ECE', '8.75', '10', '0')
(1663, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '430', '1190', '3.5', '91', 'srknec', 'electonics', '6.3', '100', '0')
(1664, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '162', '145', '307', '3', '91', 'IIT BHU', 'Electrical Engineering', '6.54', '10', '0')
(1665, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2013', '800', '450', '1250', '3', '108', 'Sardar Vallabhbhai National Institute of Technology', 'Electronics and communication', '8.27', '10', '0')
(1666, 'Northeastern University', '1', 'Reject', 'MS', 'CS/SE', 'Fall ', '2011', '750', '310', '1060', '3', '82', 'Sakalchand Patel College of Engg', 'Information Technology', '3.83', '4', '0')
(1667, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '790', '670', '1460', '5', '112', 'MU', 'Computer', '6.1', '100', '0')
(1668, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '150', '311', '3.5', '94', 'NIT Paatna', 'ELECTRICAL ENGINEERING', '8.57', '10', '0')
(1669, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '167', '157', '324', '4', '102', 'SASTRA', 'CSE', '6.9', '10', '0')
(1670, 'Northeastern University', '1', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Spring ', '2014', '155', '145', '300', '3.5', '95', 'BVCOE', 'IT', '6.7', '100', '0')
(1671, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '158', '139', '297', '3', '87', 'RTU/Government Engineering College Ajmer', 'Computer Science', '8', '100', '6')
(1672, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '530', '1310', '3.5', '109', 'MU', 'Electronics', '7.05', '100', '0')
(1673, 'Northeastern University', '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '160', '144', '304', '3', '98', 'KLE College of Engineering and Technology Belgaum', 'Electronics and Communication', '6.626', '100', '0')
(1674, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '159', '149', '308', '3.5', '103', 'PESIT', 'Computer Engineering', '0', '0', '0')
(1675, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '530', '1320', '3', '100', 'University of Mumbai', 'EXTC', '7', '100', '0')
(1676, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2014', '168', '152', '320', '3.5', 'None', 'mharana pratap college of technology gwalior', 'Electrical', '7.4799999999999995', '100', '0')
(1677, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '152', '152', '304', '3.5', '102', 'University of Pune', 'Computer Engineering', '6.273', '100', '0')
(1678, 'Northeastern University', '1', 'Reject', 'MS', 'Information Security', 'Fall ', '2011', '780', '540', '1320', '4', '117', 'BITS Pilani', 'Computer Science', '8.4', '10', '0')
(1679, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical and computer science', 'Fall ', '2011', '760', '550', '1310', '3', '112', 'MU', 'Electronics & Telecom', '7.1', '100', '0')
(1680, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '150', '312', '3', '105', 'Dharamsinh Desai University', 'Information Technology', '8.17', '10', '9')
(1681, 'Northeastern University', '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '680', '1480', '3', '106', 'SSN College of Engineering', 'ECE', '8.370000000000001', '100', '0')
(1682, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2013', '164', '153', '317', '4', '108', 'RGTU', 'Electronics & Communication Engineering', '7.5', '100', '0')
(1683, 'Northeastern University', '1', 'Reject', 'MS', 'MIS-management related courses', 'Fall ', '2013', '159', '150', '309', '3.5', '93', 'University of Pune', 'Computer Science', '5.6', '100', '0')
(1684, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2014', '162', '151', '313', '3', '101', 'Amrita Vishwa Vidhyapeetham', 'Electronics and Instrumentation Engineering', '7.48', '10', '43')
(1685, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '154', '315', '4.5', '106', 'MU', 'Information Technology', '6.723000000000001', '100', '24')
(1686, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '157', '319', '4', '112', 'PESIT', 'Computer science and Engineering', '8.21', '10', '25')
(1687, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2013', '162', '151', '313', '2.5', '106', 'K J Somaiya College of Engiineering', 'CSE', '7.1', '10', '0')
(1688, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '168', '152', '320', '3.5', 'None', 'MU', 'Computer Engineering', '5.9', '100', '0')
(1689, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '167', '158', '325', '4.5', '108', 'VTU', 'Electronics and communication', '7.459999999999999', '100', '0')
(1690, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '150', '311', '3', '91', 'VIT', 'Computer Science', '8.72', '10', '0')
(1691, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '151', '313', '3.5', '106', 'MU', 'Computer Engineering', '6.025', '100', '58')
(1692, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2011', '770', '520', '1290', '3.5', '114', 'KIIT', 'Electronics & Electrical Engg.', '9.32', '10', '0')
(1693, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '142', '301', '3.5', '94', 'MSRIT', 'Computer Science & Engineering', '7.14', '10', '0')
(1694, 'Northeastern University', '1', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '159', '144', '303', '3', '96', 'Symbiosis Institute of Technology', 'Mechanical', '2.984', '4', '0')
(1695, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2016', '164', '150', '314', '3.5', '101', 'TIT&Sc.;', 'Information Tech.', '7.1', '100', '0')
(1696, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '156', '138', '294', '3.5', '92', 'M.D.U.', 'Computer science', '6.6', '100', '0')
(1697, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '780', '380', '1160', '3', '106', 'MU', 'IT', '6.1', '100', '0')
(1698, 'Northeastern University', '1', 'Reject', 'MS', 'Mechatronics/Robotics', 'Fall ', '2014', '162', '150', '312', '3', 'None', 'Dharamsinh Desai University', 'Electronics and communication', '6.9', '100', '24')
(1699, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science/ Electronics and Communication', 'Fall ', '2012', '760', '460', '1220', '3', 'None', 'MU', 'Computer Engineering', '6.5', '100', '0')
(1700, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '160', '144', '304', '2.5', '93', 'MU', 'Computer Engineering', '5.3', '100', '42')
(1701, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '157', '157', '314', '4', '113', 'PICT', 'I.T.', '6', '100', '0')
(1702, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '500', '1260', '4', '98', 'Xavier Institute of Engineering University of Mumbai', 'Computer Engineering', '6.0084', '100', '0')
(1703, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '510', '1300', '3', '91', 'K J Somaiya College of Engiineering', 'Electronics & Telecom', '6.1', '100', '0')
(1704, 'Northeastern University', '1', 'Reject', 'MS', 'Information Systems', 'Spring ', '2013', '138', '152', '290', '2', 'None', 'JNTU', 'cse', '7.1', '100', '0')
(1705, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '150', '314', 'None', '107', 'MU', 'Information Technology', '5.4', '100', '0')
(1706, 'Northeastern University', '1', 'Reject', 'MS', 'MIS/ GAme Dev/ Digital Media', 'Fall ', '2014', '161', '145', '306', '3', '102', 'Pune University', 'Computer', '6.4', '100', '23')
(1707, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '168', '154', '322', '3', '96', 'L D College Of Engineering', 'COMPUTER', '7.24', '10', '12')
(1708, 'Northeastern University', '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '770', '450', '1220', '3', '88', 'Sir MVIT', 'EC', '0.82', '100', '0')
(1709, 'Northeastern University', '1', 'Reject', 'MS', 'CS', 'Fall ', '2015', '700', '420', '1120', '3', 'None', 'MU', 'Computers', '6.918000000000001', '100', '24')
(1710, 'Northeastern University', '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '770', '540', '1310', '4.5', '110', 'Sri Jayachamarajendra College of Engineering', 'Electronics and Communication', '9.17', '10', '0')
(1711, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '144', '302', '2.5', '92', 'Gujarat Technological University', 'computer', '7.39', '10', '0')
(1712, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '163', '155', '318', '4', '116', 'Jaypee Institute of Information Technology', 'Computer Science', '7.6', '10', '0')
(1713, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '153', '314', '3.5', '108', 'Guru Gobind Singh Indraprashta University', 'Computer Science', '7.1', '100', '6')
(1714, 'Northeastern University', '1', 'Reject', 'MS', 'CS MIS', 'Fall ', '2013', '161', '152', '313', '3.5', '97', 'MU', 'Electrical & Electronics', '6.4', '100', '0')
(1715, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '157', '150', '307', '3', '95', 'Amity University', 'CSE', '8.35', '10', '0')
(1716, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '730', '310', '1040', '2.5', '91', 'Sri Ramakrishna Engineering College', 'Electronics and Communications Engineering', '8.61', '10', '0')
(1717, 'Northeastern University', '1', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Spring ', '2015', '159', '149', '308', '3', '95', 'Vaish College of Engineering', 'IT', '7.31', '100', '30')
(1718, 'Northeastern University', '1', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '159', '157', '316', '4.5', '110', 'Pune University', 'Mechanical Engineering', '5.7', '100', '0')
(1719, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '156', '158', '314', '4.5', '115', 'BITS Pilani', 'Computer Science', '7.58', '10', '0')
(1720, 'Northeastern University', '1', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '155', '152', '307', '3', '103', 'RGTU', 'EC', '7.002', '100', '0')
(1721, 'Northeastern University', '1', 'Reject', 'MS', 'CS/SE', 'Fall ', '2013', '154', '153', '307', '3.5', '101', 'VTU', 'Electronics & Communication', '6.470000000000001', '100', '0')
(1722, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '700', '570', '1270', '3.5', '107', 'PICT', 'Computer Engineering', '5.8', '100', '0')
(1723, 'Northeastern University', '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '157', '143', '300', '3.5', '102', 'VTU', 'Electronics and Communication', '8.74', '10', '0')
(1724, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '148', '311', '3.5', '93', "Siksha 'O' Anusandhan University", 'Electrical and Electronics Engineering', '8.32', '10', '30')
(1725, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '160', '149', '309', '3.5', '97', 'NIT ALLAHABAD', 'Computer Science & Engg', '7.1', '10', '0')
(1726, 'Northeastern University', '1', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '156', '153', '309', '3', '104', 'Babu Banarasi Das NIT and Management Lucknow. UPTU', 'Mechanical Engineering', '7.322', '100', '0')
(1727, 'Northeastern University', '1', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '610', '580', '1190', '3', '102', 'None', 'CSE', '8.3', '10', '0')
(1728, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '168', '144', '312', '3', '93', 'Punjabi University', 'Mechanical Engineering', '8.13', '10', '28')
(1729, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical and Electronics', 'Fall ', '2012', '159', '155', '314', '3.5', '102', 'Sardar Patel University', 'Electronics & Communication', '3.45', '4', '0')
(1730, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '157', '152', '309', '3', '105', 'PICT', 'Information Technology', '7.353', '100', '0')
(1731, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '800', '350', '1150', '2.5', '89', 'Gujarat Technological University', 'Computer Engineering', '7', '100', '0')
(1732, 'Northeastern University', '1', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '155', '137', '292', '3', '101', 'PICT', 'Information Technology', '6.133', '100', '0')
(1733, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '152', '156', '308', '4.5', '113', 'Anna University', 'CS', '7.2', '100', '48')
(1734, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '630', '470', '1100', '3', '94', 'Pune University', 'Information Technology', '0', '0', '0')
(1735, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '157', '319', '5', '115', 'NIT', 'Computer Engineering', '7.5', '10', '0')
(1736, 'Northeastern University', '1', 'Reject', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(1737, 'Northeastern University', '1', 'Reject', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(1738, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical and computer science', 'Fall ', '2006', '800', '550', '1350', 'None', '290', 'Ramrao Adik Institute of Technology', 'EE', '0', '0', '0')
(1739, 'Northeastern University', '1', 'Reject', 'MS', 'MIS', 'Fall ', '2011', '660', '400', '1060', '3', '95', 'MU', 'IT', '6.6', '100', '0')
(1740, 'Northeastern University', '1', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '151', '144', '295', '3', '102', 'MU', 'CS', '6.311', '100', '0')
(1741, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '165', '148', '313', '3.5', '102', 'Amrita School of Engineering', 'Computer Science', '6.17', '10', '0')
(1742, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '770', '550', '1320', '3.5', '94', 'Madhav Institue of Technology and Science R.G.P.V. Bhopal', 'Electrical Engineering', '7.343000000000001', '100', '0')
(1743, 'Northeastern University', '1', 'Reject', 'MS', 'CS', 'Fall ', '2013', '159', '146', '305', '3', '91', 'University of Pune', 'Computer Science', '6.3', '100', '0')
(1744, 'Northeastern University', '1', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '740', '440', '1180', '2.5', '104', 'MU', 'Electronics and Telecommunication', '5.4', '100', '0')
(1745, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '167', '150', '317', '3.5', '93', 'ISM Dhanbad', 'Electronics Engg.', '7.88', '10', '0')
(1746, 'Northeastern University', '1', 'Reject', 'MS', 'Engineering Management', 'Spring ', '2012', '760', '320', '1080', '4.5', '96', 'JNTU', 'Computer Science', '6.2', '100', '0')
(1747, 'Northeastern University', '1', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '155', '145', '300', '3', '90', 'None', 'Mechanical Engineering', '7', '100', '0')
(1748, 'Northeastern University', '1', 'Reject', 'MS', 'Bioinformatics', 'Fall ', '2012', '155', '149', '304', '3.5', '89', 'VTU', 'Biotechnology', '7.1', '100', '0')
(1749, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '410', '1210', '3.5', '91', 'Rajiv Gandhi Institute Of Technology', 'COMPUTER SCIENCE', '6.3', '100', '0')
(1750, 'Northeastern University', '1', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2015', '161', '150', '311', '4', '116', 'University of Mumbai', 'Electronics and Telecommunication', '6.051', '100', '0')
(1751, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '710', '430', '1140', '3', '95', "St Joseph's College of Engineering", 'cse', '7', '100', '0')
(1752, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2012', '740', '440', '1180', '3', '106', 'MU', 'Computer Engineering', '5.6049999999999995', '100', '0')
(1753, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '156', '147', '303', '3', '85', 'UPTU', 'Computer Science', '7.144', '100', '0')
(1754, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '151', '312', '3.5', '102', 'Ajay Kumar Garg Engineering College', 'Computer Science & Engineering', '6.21', '100', '0')
(1755, 'Northeastern University', '1', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2015', '159', '152', '311', '3.5', '100', 'None', 'Civil Engineering', '7.19', '100', '8')
(1756, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '760', '410', '1170', '3', '104', 'None', '0', '7.05', '100', '0')
(1757, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2011', '760', '540', '1300', '3', '92', 'MDU', '0', '6.5', '100', '0')
(1758, 'Northeastern University', '1', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '157', '156', '313', '3', '109', 'MU', 'Computer', '5.6', '100', '48')
(1759, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2016', '158', '151', '309', '3', '93', 'Mody University', 'MCA', '9.2', '10', '0')
(1760, 'Northeastern University', '1', 'Reject', 'MS', 'Information Systems', 'Fall ', '2013', '750', '600', '1350', '3', '104', 'Lokmanya Tilak College of Engineering', 'Computer', '3.57', '4', '0')
(1761, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '160', '149', '309', '2.5', '98', 'JNTU', 'CS', '7.079000000000001', '100', '55')
(1762, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '770', '310', '1080', '2.5', '93', 'Amity University', 'Computer Science and Engineering', '7.5', '10', '0')
(1763, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '800', '510', '1310', '3.5', '108', 'GITAM', 'ECE', '7.83', '10', '0')
(1764, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '147', '310', '3', '107', 'None', '0', '0', '0', '0')
(1765, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '710', '480', '1190', '4', '109', 'MU', 'Electronics and Telecommunication', '6.021', '100', '0')
(1766, 'Northeastern University', '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '166', '150', '316', '4', '98', 'Nirma Institute of Technology', 'Electronics & Communication Section Electrical Department', '7.75', '10', '0')
(1767, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '740', '510', '1250', '3', '91', 'Kurukshetra University', 'IT', '7.709999999999999', '100', '0')
(1768, 'Northeastern University', '1', 'Reject', 'MS', 'MIS', 'Spring ', '2013', '157', '153', '310', '4', '105', 'RNSIT', 'Comp. Sci.', '7', '100', '0')
(1769, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '170', '161', '331', '5', '113', 'Manipal Institue of Technology', 'CSE', '7.73', '10', '31')
(1770, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '520', '1280', '3.5', '91', 'GHRCE Nagpur', 'Electronics and Telecommunication', '7.3', '100', '0')
(1771, 'Northeastern University', '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '770', '460', '1230', '3', '104', 'VTU', 'Electronics and Communication', '8', '100', '0')
(1772, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '165', '150', '315', '3.5', '105', 'R V College of Engineering', 'Information science', '8.12', '10', '19')
(1773, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '770', '400', '1170', '3', '96', 'University of Mumbai', 'CMPN', '6.4', '100', '0')
(1774, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '155', '317', '3.5', '103', 'Manipal Institue of Technology', 'Computer Science', '8.54', '10', '16')
(1775, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '163', '154', '317', '4', '111', 'DBIT', 'Mechanical Engineering', '5.6', '100', '0')
(1776, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2006', '740', '410', '1150', '2.5', '273', 'MGM College of Engineering & Technology', 'Computer', '5.8', '100', '0')
(1777, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '590', '1390', '3', '100', 'Rajiv Gandhi Institute Of Technology', 'Computer Engineering', '6.288', '100', '0')
(1778, 'Northeastern University', '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '161', '148', '309', '3.5', '111', 'Manipal Institue of Technology', 'Electrical ad Electronics', '7.4', '10', '0')
(1779, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '155', '318', '3.5', '103', 'MU', 'CE', '5.74', '100', '0')
(1780, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', 'None', 'None', '0', 'None', '111', 'Ramrao Adik Institute of Technology', 'Computers', '7', '100', '14')
(1781, 'Northeastern University', '1', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2012', '650', '560', '1210', '4', '104', 'University of Mumbai', 'Electronics & Telecommunications', '5.8', '100', '0')
(1782, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '150', '312', '3', '86', 'Amity University', 'Computer Science & Engineering', '7.81', '10', '0')
(1783, 'Northeastern University', '1', 'Reject', 'MS', 'MIS', 'Fall ', '2011', '720', '540', '1260', '3.5', '107', 'Fr.CRCE Bandra', 'CS', '0', '0', '0')
(1784, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '157', '146', '303', '4', '98', 'K J Somaiya College of Engiineering', 'Electronics and Telecommunication', '6.5', '100', '0')
(1785, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '680', '490', '1170', '3', '93', 'SRM', 'CS', '8.69', '10', '0')
(1786, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '159', '150', '309', '3.5', '90', 'Jaypee Institute of Information Technology', 'Information Technology', '6.7', '10', '0')
(1787, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '156', '317', '3', '94', 'Rajiv Gandhi Prodyogiki Vishwavidyalaya', 'computer science', '8.32', '10', '0')
(1788, 'Northeastern University', '1', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '156', '153', '309', '3.5', '87', 'GITAM', 'Mechanical Engineering', '7.12', '10', '32')
(1789, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '159', '139', '298', '2', 'None', 'None', 'Computer Science', '8.37', '10', '0')
(1790, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '160', '146', '306', '2.5', '92', 'SGGSIE&T; Nanded', 'Information Technology', '7.8', '10', '0')
(1791, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '740', '490', '1230', '3', '98', 'SIES Graduate School of Technology', 'computer', '6', '100', '0')
(1792, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '161', '146', '307', '3', '94', 'BITS Pilani', 'Msc Tech. Information Systems', '6.12', '10', '0')
(1793, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '790', '510', '1300', 'None', 'None', 'MU', 'Computer', '6.3', '100', '0')
(1794, 'Northeastern University', '1', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2014', '164', '161', '325', '4', '116', 'K J Somaiya College of Engiineering', 'Electronics and Telecommunication', '6.548', '100', '0')
(1795, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '550', '1340', '2.5', '90', 'COEP', 'Electronics and Telecommunications', '7.3', '10', '0')
(1796, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '147', '308', '3.5', '89', 'Army Institute of Technology', 'Computer Science', '6.5', '100', '0')
(1797, 'Northeastern University', '1', 'Reject', 'MS', 'Information Security', 'Fall ', '2014', '163', '151', '314', 'None', '90', 'RVR & JC College of Engineering', 'ELECTRONICS&COMMUNICATION;', '8.3', '100', '0')
(1798, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '710', '590', '1300', '3', '90', 'Sir MVIT', 'ece', '8.4', '100', '0')
(1799, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '149', '311', '3', '95', 'MU', 'computer engg', '6.2', '100', '0')
(1800, 'Northeastern University', '1', 'Reject', 'MS', 'Information Security', 'Spring ', '2016', '160', '145', '305', '2.5', '98', 'SVCE', 'CSE', '6.67', '10', '0')
(1801, 'Northeastern University', '1', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '156', '151', '307', '3', '103', 'University of Mumbai', 'Computer Engg', '6.011', '100', '0')
(1802, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '159', '321', '4.5', '113', 'NIT Durgapur', 'Information Technology', '7.81', '10', '0')
(1803, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '168', '151', '319', '3', 'None', 'IIT Guwahati', 'EEE', '0.74', '100', '0')
(1804, 'Northeastern University', '1', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '157', '146', '303', '3.5', '104', 'University of Mumbai', 'I.T', '6.5', '100', '0')
(1805, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '650', '1440', '3', '106', 'Bharati Vidyapeeth', 'extc', '5.8', '100', '0')
(1806, 'Northeastern University', '1', 'Reject', 'MS', 'MIS', 'Fall ', '2015', '154', '144', '298', 'None', 'None', 'University of Mumbai', 'Computer Engineering', '5.9', '100', '24')
(1807, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '510', '1300', '3.5', '109', 'SVNIT Surat', 'Electronics Department', '9.53', '10', '0')
(1808, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science and Engineering', 'Fall ', '2015', '162', '157', '319', '3', '114', 'JSS Noida', 'ECE', '6.11', '100', '24')
(1809, 'Northeastern University', '1', 'Reject', 'MS', 'MIS', 'Spring ', '2015', '159', '157', '316', '4', '116', 'UPTU', 'CSE', '7.023999999999999', '100', '24')
(1810, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '770', '460', '1230', '3', 'None', 'WBUT', 'electrical', '8.25', '10', '0')
(1811, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '780', '490', '1270', '3', '96', 'YCCE', 'Electronics Engg', '6.35', '100', '0')
(1812, 'Northeastern University', '1', 'Reject', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '155', '145', '300', '3', '101', 'MU', 'Computer Science', '6.1', '100', '0')
(1813, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering/Comp Science', 'Fall ', '2014', '160', '153', '313', '3', '112', 'MU', 'COMPUTER', '6.7', '100', '0')
(1814, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '590', '1390', '5', '101', 'MU', 'Computer Engineering', '6', '100', '0')
(1815, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '152', '317', '4', '106', 'MU', 'Computer Engineering', '6.2', '100', '0')
(1816, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '155', '316', '4', '108', 'Rajiv Gandhi Technical University', 'Information Technology', '7.206', '100', '50')
(1817, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '149', '313', '3', '103', 'Amrita School of Engineering', 'CSE', '7.2', '10', '0')
(1818, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '157', '149', '306', '3.5', '94', 'BVBCET', 'Computer Science', '7.26', '10', '0')
(1819, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '164', '152', '316', '3.5', '110', 'K J Somaiya College of Engiineering', 'ELECTRONICS', '7.5', '100', '0')
(1820, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '157', '147', '304', '3', '7', 'Pune University', 'computer', '5.45', '100', '0')
(1821, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '600', '1390', '4', '113', 'MU', 'Computer Engineering', '6', '100', '0')
(1822, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '168', '147', '315', '3', '91', 'Gujarat Technological University', 'Computer Engineering', '7.96', '10', '29')
(1823, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '480', '1250', '3', '90', 'SJCE', 'Information science', '8.23', '10', '0')
(1824, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '510', '1310', '3', '107', 'SCOE Pune', 'Computer Science', '6.3', '100', '0')
(1825, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical and computer engineering electrical engineering telecommunications engineering', 'Fall ', '2014', '163', '146', '309', '2.5', '88', 'NIT Raipur', 'Electronics and Telecommunication', '7.65', '10', '0')
(1826, 'Northeastern University', '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '790', '360', '1150', '3', '89', 'YCCE', 'electronics engineering', '6.4', '100', '0')
(1827, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '750', '480', '1230', '3', '97', 'VTU', 'ECE', '7.1', '100', '0')
(1828, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '151', '314', '3.5', '107', 'JNTU', 'CSE', '7.1', '100', '0')
(1829, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science/ Electronics and Communication', 'Fall ', '2013', '800', '590', '1390', '3.5', '110', 'Anna University', 'Computer Science and Engineering', '7.3', '100', '0')
(1830, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '159', '155', '314', '4', '108', 'University of Pune', 'Computer Engineering', '6.1', '100', '0')
(1831, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '149', '312', '3.5', '99', 'IET DAVV', 'IT', '7.562', '100', '0')
(1832, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2006', '770', '530', '1300', '5', '280', 'MU', 'Computer Engineering', '5.5', '100', '0')
(1833, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '161', '148', '309', '3', '93', 'Anna University', 'EE', '8.99', '10', '0')
(1834, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2012', '750', '500', '1250', '2.5', '98', 'VIT University', 'I.T', '8.2', '10', '0')
(1835, 'Northeastern University', '1', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Spring ', '2016', '158', '147', '305', '3', '87', 'Osmania University', 'computer science', '8.4', '100', '24')
(1836, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '740', '290', '1030', '3', '86', 'Pune University', 'Computer Engg', '6.859999999999999', '100', '0')
(1837, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '530', '1310', '3', '93', 'K J Somaiya College of Engiineering', 'Electronics', '5.6', '100', '0')
(1838, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2014', '163', '148', '311', 'None', '83', 'indus institute', 'computer engineering', '8.62', '10', '0')
(1839, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '170', '154', '324', '3', 'None', 'Jaypee Institute of Information Technology', 'computer science', '0.64', '100', '36')
(1840, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '157', '320', '3', '106', 'Jaypee Institute of Information Technology', 'CS', '7.4', '10', '0')
(1841, 'Northeastern University', '1', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '150', '142', '292', '3', '87', 'JNTU', 'ECE', '6.9', '100', '0')
(1842, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '159', '321', '3', '105', 'MU', 'Electronics and telecommunications', '5.4', '100', '0')
(1843, 'Northeastern University', '1', 'Reject', 'MS', 'MIS', 'Fall ', '2011', '630', '490', '1120', '3', '86', 'PICT', 'CS', '0', '0', '0')
(1844, 'Northeastern University', '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '730', '420', '1150', '3.5', '105', 'College of Engineering and Technology', 'Electronics and telecommunications', '0', '0', '0')
(1845, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '167', '152', '319', '4', '113', 'Manipal Institue of Technology', 'ECE', '8.87', '10', '0')
(1846, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '161', '146', '307', '3', 'None', 'Ganpat University', 'Computer', '7.251', '100', '42')
(1847, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', 'None', 'None', '0', '3', '84', 'None', 'Electronics and Communication', '7', '100', '0')
(1848, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '780', '610', '1390', '4', '106', 'MU', 'Information Technology', '5.5', '100', '0')
(1849, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2011', '780', '480', '1260', '3.5', '103', 'MU', 'EXTC', '5.5', '100', '0')
(1850, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '161', '146', '307', '3', '92', 'Sreenidhi Institute of Science & Technology', 'Computer Science', '6.9', '100', '0')
(1851, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '145', '306', '3', '91', 'SVITS', 'Computer Science & Engineering', '6.7', '100', '0')
(1852, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '151', '318', '4', '99', 'Amrita Vishwa Vidhyapeetham', 'Computer Science', '8.6', '10', '12')
(1853, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2008', '770', '370', '1140', '3.5', '99', 'Anna University', 'EIE', '7.4', '100', '0')
(1854, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '139', '301', '3', '90', 'D J Sanghvi', 'IT', '6.3', '100', '0')
(1855, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '780', '610', '1390', '4', '108', 'MU', 'Computer Engnineering', '6.1', '100', '0')
(1856, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '680', '1480', '3.5', '111', 'MU', 'Computer', '0.7', '100', '0')
(1857, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '770', '550', '1320', '3.5', '94', 'Madhav Institute of Technology & Science Gwalior', 'Electrical Engineering', '7.343000000000001', '100', '0')
(1858, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '156', '154', '310', 'None', '101', 'Pune University', 'Information Technology', '0', '0', '0')
(1859, 'Northeastern University', '1', 'Reject', 'MS', 'Electronics and Communication', 'Spring', 'None', '161', '148', '309', '3', 'None', 'Anna University', 'Electronics and communication engineering', '7.7', '100', '0')
(1860, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '164', '149', '313', '3', '92', 'Lovely Professional Univesity', 'Computer Science', '7.459999999999999', '100', '39')
(1861, 'Northeastern University', '1', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '152', '148', '300', '3.5', '104', 'Anna University', 'ECE', '7', '100', '0')
(1862, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '159', '318', '4', '115', 'JNTU', 'Computer Science and Enigneering', '7.743', '100', '0')
(1863, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '800', '560', '1360', '3', '90', 'IIIT Hyderabad', 'Computer Science', '6.46', '10', '0')
(1864, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '165', '161', '326', '3.5', '111', 'University of Pune', 'Computer Engineering', '6.2', '100', '24')
(1865, 'Northeastern University', '1', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '161', '150', '311', '3', '92', 'MU', 'Marine Engineering', '6.88', '100', '27')
(1866, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '167', '161', '328', '4', '117', 'MU', 'B.E.I.T', '6.11', '100', '0')
(1867, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '760', '640', '1400', '4', '110', 'Pune University', 'electronics', '5.4', '100', '0')
(1868, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '770', '380', '1150', '3', '90', 'K J Somaiya College of Engiineering', 'I.T.', '6.6', '100', '0')
(1869, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '340', '1110', '3.5', '93', 'Sinhgad College of Engineering', 'Information Technology', '6.4', '100', '0')
(1870, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '500', '1280', '2.5', '96', 'University of Mumbai', 'Information Technology', '6.049', '100', '0')
(1871, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '155', '318', '4.5', '111', 'Pune University', 'Computer Science', '6.7', '100', '14')
(1872, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '155', '316', '3.5', '111', 'MU', 'IT', '6.56', '100', '37')
(1873, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '700', '480', '1180', '3', '89', 'Anna University', 'Computer Science', '7.2', '100', '0')
(1874, 'Northeastern University', '1', 'Reject', 'MS', 'MIS-management related courses', 'Fall ', '2012', '640', '620', '1260', '3.5', '105', 'None', '0', '0', '0', '0')
(1875, 'Northeastern University', '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '157', '154', '311', '3', '101', 'VTU', 'ECE', '6.9', '100', '0')
(1876, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '158', '324', '3.5', '108', 'MU', 'Computer Science', '5.96', '100', '0')
(1877, 'Northeastern University', '1', 'Reject', 'MS', 'CS', 'Fall ', '2015', '162', '144', '306', '4', '104', 'D J Sanghvi', 'Computers', '7.858', '100', '0')
(1878, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '340', '1100', '3', '80', 'Faculty of technology & Engg. MSU', 'Computer Science & Enggineering', '3.55', '4', '0')
(1879, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '600', '1380', '3.5', '91', 'VTU', 'ECE', '6.7', '100', '0')
(1880, 'Northeastern University', '1', 'Reject', 'MS', 'Electronics & Communication', 'Fall ', '14', '156', '146', '302', '3', '106', 'U.I.T. rgpv', 'electronics and communication', '6.7299999999999995', '100', '10')
(1881, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '149', '312', '3.5', '111', 'JNTU', 'CSE', '7.83', '100', '12')
(1882, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '157', '150', '307', '3', '95', 'Fr. Conceicao Rodrigues College of Engineering', 'Information Technology', '6.531999999999999', '100', '0')
(1883, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2007', '550', '790', '1340', '4', '267', 'MU', 'Electronics', '5.9', '100', '0')
(1884, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '160', '156', '316', '3', '98', 'MU', 'Elecronics and Telecommunication', '6.4', '100', '0')
(1885, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '157', '147', '304', '3', '89', 'VTU', 'Electronics and Communication', '6.5', '100', '0')
(1886, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '143', '304', '3', '106', 'Notre Dame University Louaize', 'ECE', '3.62', '4', '0')
(1887, 'Northeastern University', '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '300', '1080', '3', '90', 'Sir MVIT', 'Electronics and communication', '7.2', '100', '0')
(1888, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '152', '313', 'None', '102', 'DIT Dehradun', 'CSE', '7', '100', '0')
(1889, 'Northeastern University', '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '720', '590', '1310', '4', '99', 'Shri Ramdeobaba Engineering College', 'Electronics and Communication', '7.2', '100', '0')
(1890, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '150', '311', '3', '91', 'P.V.P.I.T', 'E&TC;', '0', '0', '0')
(1891, 'Northeastern University', '1', 'Reject', 'MS', 'software engineering', 'Fall ', '2013', '157', '152', '309', '3.5', 'None', 'SRM', 'Electronics and Communications', '7.7', '10', '0')
(1892, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '670', '600', '1270', '3', '93', 'VTU', 'CSE', '6.7', '100', '0')
(1893, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '150', '313', '3', '100', 'Jaypee Institute of Information Technology', 'Computer Science', '5.6', '10', '43')
(1894, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '740', '530', '1270', '4', '110', 'VTU', 'Computer Science', '5.95', '100', '0')
(1895, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '148', '307', '3.5', '105', 'SIES Graduate School of Technology', 'BE-Computer Engineering', '7.348000000000001', '100', '0')
(1896, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '780', '550', '1330', '3', '98', 'RGTU', 'EC', '7.3', '100', '0')
(1897, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '730', '480', '1210', '4', '114', 'MU', 'Electronics and Telecommunication', '6.487', '100', '0')
(1898, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '146', '307', '3.5', '103', 'RGPV', 'Electronics', '7.5', '100', '0')
(1899, 'Northeastern University', '1', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '162', '145', '307', '3', '89', 'MU', 'Computer', '6.1', '100', '0')
(1900, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '168', '154', '322', '3.5', 'None', 'JNTU', 'CSE', '6.3', '100', '0')
(1901, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2006', '760', '510', '1270', '4', '287', 'VIT', 'E.C.E', '9.07', '10', '0')
(1902, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '720', '450', '1170', '4', '108', 'Anna University', 'Computer Science and Engg.', '7.04', '10', '0')
(1903, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2014', '160', '155', '315', '3.5', '105', 'JNTU', 'ECE', '7.1', '100', '0')
(1904, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '730', '360', '1090', '3', '85', 'Harcourt Butler Technological Institute', 'Computer Science', '6.544', '100', '0')
(1905, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '166', '152', '318', '3', '112', 'MU', 'EXTC', '6.3', '100', '42')
(1906, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering/Comp Science', 'Fall ', '2015', '156', '151', '307', '3', '90', 'DMI College of Engineering', 'I.T', '6.53', '10', '22')
(1907, 'Northeastern University', '1', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '154', '148', '302', '3', '85', 'SIT', 'Computer Sc. & Engg.', '6', '100', '0')
(1908, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2016', '168', '151', '319', '4', '104', 'BITS Goa', 'Computer Science', '6.53', '10', '24')
(1909, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '158', '147', '305', '3.5', '101', 'Sinhgad College of Engineering', 'Computer', '5.728', '100', '0')
(1910, 'Northeastern University', '1', 'Reject', 'MS', 'Applied Mathematics', 'Fall ', '2014', '167', '151', '318', '3.5', '108', "St. Xavier's college Kolkata", 'Mathematics', '5.75', '100', '0')
(1911, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '560', '1310', '4', '105', 'MU', 'Information Technology(B.E. I.T)', '5.88', '100', '0')
(1912, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '720', '530', '1250', '3', '91', 'University of Pune', 'information technology', '6.5', '100', '0')
(1913, 'Northeastern University', '1', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2012', '690', '540', '1230', '4', '109', 'Anna University', 'ECE', '6.136', '10', '0')
(1914, 'Northeastern University', '1', 'Reject', 'MS', 'Chemical/Environmental Engg.', 'Fall ', '2011', '760', '420', '1180', '3', '101', 'Institute of Technology Nirma University', 'Chemical Engineering', '6.84', '10', '0')
(1915, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '159', '151', '310', '4.5', '110', 'Ramrao Adik Institute of Technology', 'Computer engineering', '6.9959999999999996', '100', '17')
(1916, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '159', '322', '3.5', '111', 'Dhirubhai Ambani Institute of Information & Communication Technology', 'ICT', '6.1', '10', '0')
(1917, 'Northeastern University', '1', 'Reject', 'MS', 'software engineering', 'Fall ', '2015', '163', '147', '310', '3.5', '97', 'GITAM', 'CSE', '8.01', '10', '0')
(1918, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '530', '1290', '3', '80', 'MU', 'Electronics', '5.5', '100', '0')
(1919, 'Northeastern University', '1', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '165', '156', '321', '4', '112', 'MU', 'Electronics and Telecommunication Engineering', '5.99', '100', '0')
(1920, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '800', '530', '1330', '3', '96', 'Pune University', 'Information technology', '6.5', '100', '0')
(1921, 'Northeastern University', '1', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2011', '720', '450', '1170', '3', '85', 'MU', 'Electronics', '5.970000000000001', '100', '0')
(1922, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '144', '302', '3.5', '103', 'JNTU', 'Electronics and Instrumentation', '7.8870000000000005', '100', '0')
(1923, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '160', '150', '310', '3', '100', 'PICT', 'Computer Science', '3.2', '4', '0')
(1924, 'Northeastern University', '1', 'Reject', 'MS', 'Biomedical Engineering', 'Fall ', '2006', '780', '550', '1330', '3.5', '273', 'Sathyabama University', 'Electronics & Communication', '8.5', '100', '0')
(1925, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '154', '152', '306', '4.5', '115', 'MJCET', 'Computer Science', '7.459999999999999', '100', '0')
(1926, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '159', '153', '312', '3', '105', 'BNMIT', 'Information Science and Engineering', '7.4', '100', '0')
(1927, 'Northeastern University', '1', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '151', '151', '302', '3.5', '105', 'West Bengal University Of Technology', 'Information Technology', '8.3', '10', '0')
(1928, 'Northeastern University', '1', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2013', '159', '145', '304', '3', '82', 'MU', 'Instrumentation Engineering', '5.3', '100', '0')
(1929, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '550', '1350', '4', '107', 'DA-IICT', 'ICT (Information and Communication Technology)', '7.09', '10', '0')
(1930, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '740', '510', '1250', '4', '104', 'SIES Graduate School of Technology', 'Computer engg', '5.5', '100', '0')
(1931, 'Northeastern University', '1', 'Reject', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(1932, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '750', '580', '1330', '3.5', '101', 'None', '0', '0', '0', '0')
(1933, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '153', '314', '4', '111', 'Govt. Engineering College Barton Hill', 'Electronics and Communication', '6.8', '10', '69')
(1934, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '155', '319', '3.5', 'None', 'University of Pune', 'Production Engineering', '8.8', '10', '0')
(1935, 'Northeastern University', '1', 'Reject', 'MS', 'CS', 'Fall ', '2014', '152', '141', '293', '3', 'None', 'Pune University', 'Information Technology', '6', '100', '0')
(1936, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2011', '700', '320', '1020', '3.5', '91', 'Pune University', 'Computer Engineering', '6.2', '100', '0')
(1937, 'Northeastern University', '1', 'Reject', 'MS', 'Embedded systems', 'Fall ', '2012', '780', '600', '1380', '3', '106', 'VIT Mumbai University', 'Electronics', '6.2', '100', '0')
(1938, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '156', '146', '302', 'None', '86', 'Pune University', 'Information technology', '6.3', '100', '0')
(1939, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '156', '145', '301', '4', '90', 'University of Mumbai', 'Electrical Engineering', '6.2', '100', '0')
(1940, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '168', '149', '317', '3.5', '106', 'SASTRA', 'ECE', '7.4', '10', '0')
(1941, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '700', '600', '1300', '3.5', '110', 'MU', 'Computer Engineering', '6.2', '100', '0')
(1942, 'Northeastern University', '1', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '148', '141', '289', 'None', '90', 'None', '0', '0', '0', '0')
(1943, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering/Comp Science', 'Fall ', '2014', '162', '157', '319', '3.5', '112', 'Sardar Patel College of Engineering', 'Electronics', '6.3', '100', '20')
(1944, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2016', '167', '150', '317', '3', '92', 'VIT', 'ECE', '7.66', '10', '0')
(1945, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '710', '470', '1180', '3', '92', 'University of Pune', 'Information Technology', '6.5', '100', '0')
(1946, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '151', '312', '3', '95', 'Amrita School of Engineering', 'IT', '7.05', '10', '46')
(1947, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical and computer science', 'Fall ', '2012', '162', '150', '312', 'None', '104', 'JNTU', 'Electronics and communication', '8.15', '100', '0')
(1948, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2011', '720', '560', '1280', '4', '110', 'Imperial college of Engineering and research Pune', 'E&TC;', '6.7', '100', '0')
(1949, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '157', '318', '4', '114', 'Xaviers', 'Computer Engg', '6.7', '100', '34')
(1950, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '162', '138', '300', '3', '87', 'Gujarat Technological University', 'Electronics and Communication', '8.05', '10', '0')
(1951, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '152', '313', '3.5', '107', 'FRCRCE', 'computers', '6.5', '100', '0')
(1952, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '550', '1350', '4', '102', 'MU', 'Computer Science', '6.3', '100', '0')
(1953, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '720', '440', '1160', '3', '92', 'SCSVMV University', 'ECE', '7.09', '10', '0')
(1954, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '157', '323', '4.5', '118', 'MU', 'Computer Engineering', '6.4239999999999995', '100', '0')
(1955, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '158', '322', '3.5', '115', 'Anna University', 'Information technology', '7.4', '100', '0')
(1956, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '162', '157', '319', '3', '104', 'MU', 'Information Technology', '5.8', '100', '15')
(1957, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Spring ', '2014', '160', '160', '320', '3.5', '113', 'Fr. Conceicao Rodrigues College of Engineering', 'Electronics Engineering', '6.7829999999999995', '100', '0')
(1958, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2011', '790', '530', '1320', '4', '113', 'Padre Conceicao College Of Engineering', 'Computer Engineering', '7.455', '100', '0')
(1959, 'Northeastern University', '1', 'Reject', 'MS', 'CS / SE / IT / MIS', 'Fall ', '2014', '157', '147', '304', '3', '97', 'Pune University', 'Computer Engg', '5.74', '100', '57')
(1960, 'Northeastern University', '1', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Spring ', '2013', '163', '155', '318', '3.5', '115', 'Shivaji University', 'Information Technology', '6.5', '100', '0')
(1961, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '157', '150', '307', '4', '109', 'K J Somaiya College of Engiineering', 'Electronics', '5.54', '100', '30')
(1962, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '170', '149', '319', '3', '95', 'VJTI', 'Electronics', '8.22', '10', '12')
(1963, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '153', '315', '3.5', '106', 'RGPV', 'I.T', '6.7', '100', '0')
(1964, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '144', '303', '3.5', '93', 'Fr.C. Rodrigues Institute of Technology Vashi Navi Mumbai', 'Computer Science', '6.433', '100', '0')
(1965, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '161', '325', '4', '114', 'Pune University', 'CS', '5.9', '100', '0')
(1966, 'Northeastern University', '1', 'Reject', 'MS', 'MIS', 'Spring ', '2014', '157', '147', '304', 'None', '91', 'MU', 'Information Technology', '5.4', '100', '0')
(1967, 'Northeastern University', '1', 'Reject', 'MS', 'CS/SE', 'Fall', 'None', '790', '490', '1280', '3', '91', 'Anna University', 'Computer Science', '8.1', '100', '0')
(1968, 'Northeastern University', '1', 'Reject', 'MS', 'CS', 'Fall ', '2015', '170', '152', '322', '3', '112', 'Rajasthan Technical University', 'Computer Science', '7.57', '100', '48')
(1969, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '760', '320', '1080', '3', '89', 'Amrita School of Engineering', 'Computer Science', '7.03', '10', '0')
(1970, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '149', '310', '3', '96', 'Medicaps Institute of Science & Technology Indore', 'Computer Science', '7.48', '10', '0')
(1971, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '150', '313', '3', '92', 'VTU', 'ISE', '7.5', '100', '0')
(1972, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '156', '141', '297', '3.5', '90', 'Cummins College of Engineering Pune', 'computer science', '6.4', '100', '0')
(1973, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '152', '314', '3.5', '107', 'VTU', 'Information Science', '6.4', '100', '0')
(1974, 'Northeastern University', '1', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2012', '162', '161', '323', '4', 'None', 'Atharva College', 'Electronics and Telecommunications', '5.881', '100', '0')
(1975, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '560', '1360', '3.5', '105', 'RAIT', 'Instrumentation', '6', '100', '0')
(1976, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '163', '149', '312', '3', 'None', 'Amrita School of Engineering', 'EEE', '7.43', '10', '27')
(1977, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '550', '1330', '3.5', '101', 'JNTU', 'ECE', '7', '100', '0')
(1978, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '780', '530', '1310', '3', '94', 'College Of Engineering Roorkee', 'CS', '7.2', '100', '0')
(1979, 'Northeastern University', '1', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '149', '153', '302', '3', '105', 'SASTRA', 'ELECTRICAL AND ELECTRONICS ENGINEERING', '7.7', '10', '49')
(1980, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '163', '154', '317', '3.5', '109', 'Amrita School of Engineering', 'Information Technology', '7.81', '10', '60')
(1981, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '161', '148', '309', '4', '95', 'Amrita School of Engineering', 'Information Technology', '7.89', '10', '0')
(1982, 'Northeastern University', '1', 'Reject', 'MS', 'Supply chain management', 'Fall ', '2012', '159', '140', '299', '3', '97', 'MU', 'Electronics', '5.9', '100', '0')
(1983, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '710', '500', '1210', '3.5', '96', 'MU', 'Computer Engg.', '5.785', '100', '0')
(1984, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '147', '308', '3', '91', 'Anna University', 'CSE', '7.9', '100', '29')
(1985, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '740', '550', '1290', '4', '115', 'Anna University', 'ECE', '7.9', '100', '0')
(1986, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '159', '152', '311', '3', '102', 'University of Pune', 'information technology', '6.3', '100', '27')
(1987, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '158', '150', '308', '3', '97', 'Sri Sairam Engineering College', 'EEE', '8.2', '100', '0')
(1988, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '161', '149', '310', '2.5', '87', 'MSU FTE', 'CS', '3.94', '4', '0')
(1989, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '152', '315', '3', '114', 'SSN College of Engineering', 'Computer Science Engg', '7.3', '100', '0')
(1990, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2014', '154', '151', '305', '3', '99', 'Anna University', 'Computer Science and Engineering', '7.36', '10', '31')
(1991, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '161', '146', '307', '3.5', '105', 'Sri Venkateswara College of Engineering', 'ECE', '7.26', '10', '0')
(1992, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '155', '317', '4', '110', 'Biju Patnaik University of Technology', 'EEE', '7.2', '10', '36')
(1993, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '660', '430', '1090', '3', '106', 'MU', 'Information Technology', '5.7', '100', '0')
(1994, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '157', '149', '306', '3.5', '103', 'VTU', 'Electronics and Communication', '7.275', '100', '0')
(1995, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '340', '1100', '3', '97', 'MU', 'Electronics', '6.3', '100', '0')
(1996, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '156', '147', '303', '3', '93', 'VTU', 'Electronics and Communication', '0', '0', '0')
(1997, 'Northeastern University', '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '154', '152', '306', '4', '106', 'VTU', 'Electronics & Communication', '6.5', '100', '0')
(1998, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '153', '314', '3', '101', 'University of Pune', 'Computer', '6', '100', '0')
(1999, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '157', '150', '307', '3', '94', 'GITAM', 'Computer Science', '8.23', '10', '0')
(2000, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '149', '313', '3.5', '104', 'D j Sanghvi', 'IT', '6.2', '100', '0')
(2001, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '160', '144', '304', '3', '87', 'RGPV', 'ECE', '7.537000000000001', '100', '0')
(2002, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '770', '640', '1410', '4', '117', 'Watumull Institute University of Mumbai', 'Computer Science', '5.3', '100', '0')
(2003, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '153', '314', '3.5', '102', 'UPTU', 'Computer Science', '6.984', '100', '20')
(2004, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '163', '151', '314', '3.5', '104', 'VESIT', 'IT', '6.2', '100', '0')
(2005, 'Northeastern University', '1', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '159', '145', '304', '2.5', 'None', 'Anna University', 'Mechanical', '0', '0', '24')
(2006, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '157', '143', '300', '3', '78', 'VTU', 'computer science', '5.91', '100', '0')
(2007, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '151', '317', '3.5', '101', 'CEG', 'Information Technology', '7.1', '10', '30')
(2008, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '690', '460', '1150', '4.5', '109', 'Datta Meghe College of Engineering', 'Computer Engineering', '5.720000000000001', '100', '0')
(2009, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '740', '590', '1330', '3.5', '103', 'MU', 'information technology', '6.1450000000000005', '100', '0')
(2010, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '153', '144', '297', 'None', '86', 'Don Bosco Institute of Technology', 'Computers', '5.8', '100', '0')
(2011, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '560', '1320', '3', '105', 'YCCE', 'Electronics', '7.88', '100', '0')
(2012, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '167', '156', '323', '2.5', '88', 'Northeast Dianli Univ.', 'Electrical Engineering', '7.8', '100', '0')
(2013, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '161', '150', '311', '3', '92', 'CEG', 'Computer science', '7.3', '10', '0')
(2014, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '530', '1290', '3', '89', 'Govt College of Engineering', 'Computer Science & Engineering', '7.1125', '100', '0')
(2015, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2006', '790', '690', '1480', '5', '300', 'Vidylankar Institute of Technology', 'Computer Engineering', '5.7', '100', '0')
(2016, 'Northeastern University', '1', 'Reject', 'MS', 'Civil Engineering', 'Spring ', '2011', '610', '340', '950', '3', '98', 'SASTRA', 'Civil Engineering', '6.55', '10', '0')
(2017, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '158', '148', '306', '3.5', '103', 'None', 'ECE', '8.18', '10', '0')
(2018, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '162', '154', '316', '3', '99', 'Amrita School of Engineering', 'Computer Science', '6.94', '10', '0')
(2019, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '165', '159', '324', '3', '101', 'BITS Pilani', 'Electronics', '4.93', '10', '0')
(2020, 'Northeastern University', '1', 'Reject', 'MS', 'Data Science', 'Fall', '2018', '165', '151', '316', '3', '105', 'NIT Surat', 'Computer Science', '7.35', '10', '2')
(2021, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall', '2017', '166', '152', '318', '3.5', '106', 'Indus university', 'Mechanical Engineering', '8.9', '10', '0')
(2022, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall', '2017', '155', '145', '300', '3', '94', 'Rayat and Bahra Institute of Engg and Tech', 'Computer Science', '8.1', '100', '0')
(2023, 'Northeastern University', '1', 'Reject', 'MS', 'Engineering Management', 'Fall', '2019', '160', '140', '300', '3', '-1', 'FR CONCEICAO RODRIGUES College of Engineering', 'Production Engineering', '5.97', '10', '0')
(2024, 'Northeastern University', '1', 'Reject', 'MS', 'Electronics & Communication', 'Fall', '2013', '161', '148', '309', '3.5', '111', 'Manipal Institute of Tech', 'EEE', '7.4', '10', '0')
(2025, 'Syracuse University', '4', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2016', 'None', 'None', '0', 'None', 'None', 'University of Petroleum and Energy Studies', 'Computer Science', '3.24', '4', '0')
(2026, 'Syracuse University', '4', 'Admit', 'MS', 'Information Systems', 'Fall', 'None', '710', '510', '1220', '3', '94', 'FJU', 'information management', '7.3', '100', '0')
(2027, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '155', '317', '4', 'None', 'RNSIT', 'CS', '7.2', '100', '0')
(2028, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '390', '1190', '4', '104', 'MU', 'Electronics and Telecommunications (EXTC)', '7.5', '100', '0')
(2029, 'Syracuse University', '4', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '680', '1460', '4.5', '110', 'MIT University of Pune', 'Electronics and Telecommunication', '6.5', '100', '0')
(2030, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '760', '680', '1440', '4', '111', 'Fr CRIT Mumbai University', 'Mechanical Engineering', '5.46', '100', '0')
(2031, 'Syracuse University', '4', 'Admit', 'MS', 'economics', 'Fall ', '2015', 'None', 'None', '0', 'None', 'None', 'University of Delhi', 'Economics', '7.1', '100', '0')
(2032, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '160', '152', '312', '3.5', '100', 'CSVTU', 'Computer Science', '7.3', '100', '0')
(2033, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '720', '590', '1310', '3', '0', 'UPTU', 'CS', '7.044', '100', '0')
(2034, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '45', '29', '74', '4.5', 'None', 'Vasavi College of Engineering', 'electrical and electronics engg', '6.9', '100', '0')
(2035, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '800', '500', '1300', '3', '97', 'Panjab University', 'BE(CS)', '6.74', '100', '0')
(2036, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering / Electrical Computer Engineering', 'Fall ', '2015', '162', '152', '314', '3', '104', 'MU', '0', '6.2', '100', '0')
(2037, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '165', '159', '324', '3.5', '107', 'Bangalore University', 'Mechanical', '6.9', '100', '0')
(2038, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '150', '315', '4', '101', 'VTU', 'ECE', '7.7', '100', '0')
(2039, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '790', '660', '1450', '3.5', '108', 'Harcourt Butler Technological Institute', 'CSE', '7.220000000000001', '100', '0')
(2040, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '159', '149', '308', 'None', '97', 'VTU', 'Electrical and Electronics', '6.8', '100', '0')
(2041, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2006', '1010', '410', '1420', '600', '273', 'Thadomal Shahani Engineering College', 'CE', '5.2', '100', '0')
(2042, 'Syracuse University', '4', 'Admit', 'MS', 'MIS/CS', 'Fall ', '2013', '161', '154', '315', '4', '114', 'MU', 'Information Technology', '6.1', '100', '0')
(2043, 'Syracuse University', '4', 'Admit', 'MS', 'Engineering Management / Industrial Engineering / IMSE', 'Fall ', '2015', '164', '154', '318', '3', '100', 'Manipal Institue of Technology', 'Civil Engineering', '7.71', '10', '0')
(2044, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '160', '159', '319', '4', '114', 'University of Manchester', 'EEE', '3.4', '4', '0')
(2045, 'Syracuse University', '4', 'Admit', 'MS', 'computer science / MIS', 'Fall ', '2015', '170', '157', '327', '5', '112', 'VIT Mumbai University', 'Electronics & Telecommunication', '7.267', '100', '41')
(2046, 'Syracuse University', '4', 'Admit', 'MS', 'MS Analytics/ MIS', 'Fall ', '2013', '165', '160', '325', '4.5', '113', 'University of Mumbai', 'Computer Engineering', '6.697', '100', '0')
(2047, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '800', '540', '1340', '4', '119', 'Anna University', 'IT', '7.4', '100', '0')
(2048, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '161', '149', '310', '3', '99', 'VIT Pune', 'Electronics Engg', '6.6', '100', '36')
(2049, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '157', '156', '313', '3.5', '107', 'VNR VJIET', 'ece', '6.7', '100', '0')
(2050, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '720', '530', '1250', '4', '107', 'Pune University', 'Computer', '0', '0', '0')
(2051, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '165', '161', '326', '5', '112', 'Rajiv Gandhi Prodyogiki Vishwavidyalaya', '0', '7.4', '10', '0')
(2052, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '600', '1400', '4', '103', 'University of Mumbai', 'Information Technology', '6.8', '100', '0')
(2053, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '160', '154', '314', '3', '99', 'Fr. Conceicao Rodrigues College of Engineering', 'IT', '5.3', '100', '0')
(2054, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '156', '157', '313', '3', '116', 'CMRIT', 'CSE', '6.24', '100', '0')
(2055, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '750', '590', '1340', '3', '107', 'JNTU', 'Electronics and Communication', '7.4', '100', '18')
(2056, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '770', '410', '1180', '3.5', '111', 'Pune University', 'Computer Engineering', '6.4', '100', '0')
(2057, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '680', '640', '1320', '4.5', '114', 'University of Pune', 'Computer Engineering', '6.544', '100', '0')
(2058, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '157', '151', '308', '4', '109', 'SFIT', 'IT', '5.456', '100', '0')
(2059, 'Syracuse University', '4', 'Admit', 'MS', 'Chemical Engineering', 'Fall ', '2012', '161', '153', '314', '3.5', 'None', 'Sinhgad College of Engineering', 'Chemical Engineering', '5.8', '100', '0')
(2060, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '730', '590', '1320', '3.5', '106', 'University of Mumbai', 'Computer Engineering', '6.5', '100', '0')
(2061, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '720', '380', '1100', '3', '88', 'Anna University', 'COMPUTER SCIENCE', '8.25', '100', '0')
(2062, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '780', '670', '1450', '4', '111', 'RAIT', 'extc', '5.7', '100', '0')
(2063, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '146', '308', '3', '102', 'University of Pune', 'Information Tech.', '7.223000000000001', '100', '36')
(2064, 'Syracuse University', '4', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '650', '1430', '4.5', '112', 'Dr Ambedkar Institute of Technology', 'Electronics and Communications Engineering', '7.6', '100', '0')
(2065, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '168', '157', '325', '4', '108', 'MU', 'Computer Engineering', '6.3', '100', '0')
(2066, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '720', '500', '1220', '3.5', '117', 'VIT Pune', 'Electronics', '7', '10', '0')
(2067, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Spring ', '2014', '158', '157', '315', '3.5', '105', 'JNTU', 'ECE', '7.3', '100', '0')
(2068, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '790', '520', '1310', '3.5', '273', 'Cochin University of Science and Technology', 'Computer Science', '7.45', '100', '0')
(2069, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '161', '148', '309', '3', '104', 'C.R State College of Engineering Murthal', 'Bio-Medical', '7', '100', '37')
(2070, 'Syracuse University', '4', 'Admit', 'MS', 'MIS-management related courses', 'Fall ', '2012', '160', '148', '308', '3', '106', 'Jaypee Institute of Information Technology', 'Information Technology', '6.1', '10', '0')
(2071, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2016', '161', '149', '310', '3', '99', 'None', '0', '0', '0', '0')
(2072, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '800', '710', '1510', '3', '280', 'University of Mumbai', 'Computer Engineering', '7.2', '100', '0')
(2073, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '750', '580', '1330', '4.5', '287', 'K J Somaiya College of Engiineering', 'Comp Engg', '6.9', '100', '0')
(2074, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '162', '154', '316', '3.5', '103', 'GGSIPU', 'Instrumentation and Control', '0.386', '100', '0')
(2075, 'Syracuse University', '4', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '164', '151', '315', '2.5', '104', 'MU', 'Computer Engineering', '6.8', '100', '9')
(2076, 'Syracuse University', '4', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2011', '730', '570', '1300', '3.5', '98', 'None', 'mechanical engg', '6.5', '100', '0')
(2077, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '161', '153', '314', '4', 'None', 'Thapar University', 'Biotechnology and environmental Sciences', '7.36', '10', '0')
(2078, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '159', '152', '311', '4', '105', 'Sardar Patel College of Engineering', 'Information Technology', '6.3', '100', '0')
(2079, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '161', '149', '310', '3.5', '110', 'PESIT', 'ECE', '0.8640000000000001', '100', '0')
(2080, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '430', '680', '1110', '3', '96', 'Anna University', 'ECE', '7.6', '100', '0')
(2081, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '165', '156', '321', '4', 'None', 'Kathmandu University', 'Electrical and Electronics', '3.61', '4', '0')
(2082, 'Syracuse University', '4', 'Admit', 'MS', 'Information Technology', 'Fall ', '2012', '50', '35', '85', '4.5', '114', 'SKNCOE', 'Computer', '6.2', '100', '0')
(2083, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '159', '154', '313', '4.5', '117', 'MU', 'Electronics and Telecommunications', '6.5', '100', '0')
(2084, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '148', '309', '4', '107', 'Charotar University of Science and Technology', 'Information Technology', '8.3', '10', '0')
(2085, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '160', '149', '309', '4', '109', 'Nagpur University', 'IT', '6.8', '100', '0')
(2086, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '560', '1360', '3.5', '107', 'IIT BHU', 'Electrical Engineering', '7.3', '10', '0')
(2087, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '670', '1440', '3', '114', 'Thakur College of Engineering and Technology', 'COMP SCI', '6.63', '100', '0')
(2088, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '400', '750', '1150', '3', '101', 'Sardar Patel College of Engineering', 'electrical', '6.5', '100', '0')
(2089, 'Syracuse University', '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '780', '670', '1450', '3', '93', 'Harcourt Butler Technological Institute', 'Biochemical Engineering', '7.3', '100', '0')
(2090, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '370', '1170', '3', '102', 'PICT', 'IT', '6.5', '100', '0')
(2091, 'Syracuse University', '4', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '163', '153', '316', '4', '111', 'RNSIT', 'Computer Science', '8.417', '100', '0')
(2092, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', 'None', 'None', '0', 'None', 'None', 'Pondicherry University', 'ELECTRONICS & COMMUNICATION', '7.8', '10', '0')
(2093, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '149', '313', '3', '111', 'Sardar Patel College of Engineering', 'Computer Engineering', '6.428', '100', '0')
(2094, 'Syracuse University', '4', 'Admit', 'MS', 'Information Technology', 'Fall ', '2011', '780', '570', '1350', '3', '97', 'University Institute of Technology', 'Mechanical', '7.1', '100', '0')
(2095, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2006', '800', '650', '1450', '4', '283', 'CEG', 'ECE', '8.6', '10', '0')
(2096, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2008', '690', '450', '1140', '4', '106', 'Valliammai Engineering College', 'CSE', '8.45', '100', '0')
(2097, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '550', '1320', '3.5', '103', 'VTU', 'IS&E;', '6.5', '100', '0')
(2098, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '620', '1400', '4.5', '112', 'Bharathiar University', 'Electronics and Communication', '7.8', '100', '0')
(2099, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '164', '159', '323', '3', '108', 'Pune University', 'Information Technology', '5.7', '100', '0')
(2100, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', 'None', '670', '670', 'None', '110', 'None', '0', '0', '0', '0')
(2101, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '650', '650', '1300', '3', '102', 'MU', 'Information Technology', '6.3', '100', '0')
(2102, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', 'None', 'None', '0', '4', 'None', 'VTU', 'Information Science', '8.5', '100', '0')
(2103, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '150', '311', '4', '105', 'VTU', 'Computer Sciece', '7.13', '100', '42')
(2104, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '142', '304', '3', '98', 'VIT', 'Computer Science and Engineering', '8.35', '10', '0')
(2105, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '570', '1350', '3', '98', 'WBUT', 'CSE', '8.46', '10', '0')
(2106, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '157', '315', '3.5', '103', 'West Bengal University Of Technology', 'CSE', '8.04', '10', '34')
(2107, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '149', '312', '3', '86', 'CBIT', 'CSE', '8.08', '100', '0')
(2108, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '168', '153', '321', '3.5', 'None', 'Mahrishi Dayanand University', 'Computer Science and Engineering', '6.942', '100', '0')
(2109, 'Syracuse University', '4', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(2110, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall', 'None', '170', '150', '320', 'None', '106', 'Rajasthan Technical University', 'CSE', '7.0125', '100', '0')
(2111, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '530', '1280', '3.5', '109', 'RGTU', 'CS', '8', '100', '0')
(2112, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '740', '550', '1290', '3.5', '104', 'MU', 'computer', '6.723000000000001', '100', '0')
(2113, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '166', '145', '311', '3.5', '101', 'MU', 'CS', '7.2', '100', '0')
(2114, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '790', '320', '1110', '3.5', '101', 'GGSIPU', 'Information Technology', '0.63', '100', '0')
(2115, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '800', '590', '1390', '3', 'None', 'Umiversity of mumbai', '0', '6.1', '100', '0')
(2116, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '165', '158', '323', '3.5', '111', 'MU', 'Computer Science', '6.612', '100', '0')
(2117, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '650', '1430', '4', '103', 'VTU', 'CS', '7.7', '100', '0')
(2118, 'Syracuse University', '4', 'Admit', 'MS', 'CS / MIS', 'Fall ', '2014', '152', '155', '307', '3.5', '110', 'Sathyabama University', 'ECE', '6.5', '100', '0')
(2119, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '45', '37', '82', '4.5', '111', 'VIT University', 'Computer Sceince', '8.39', '10', '0')
(2120, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2011', '750', '530', '1280', '4', '115', 'PESIT', 'Telecommunication Engineering', '7.159999999999999', '100', '0')
(2121, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '154', '145', '299', '3.5', '105', 'BMSIT', 'Electrical & Electronics', '7.3', '100', '0')
(2122, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall', 'None', '161', '148', '309', '3.5', '105', 'Jaypee Institute of Information Technology', 'Information technology', '7.7', '10', '5')
(2123, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '780', '340', '1120', '3', '93', 'ITM Gurgaon', 'CSE', '7.2', '100', '0')
(2124, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '162', '154', '316', '3', '113', 'Heritage University of Technology', 'Computer Science', '7.63', '10', '0')
(2125, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '158', '150', '308', '3.5', '110', 'Jaypee Institute of Information Technology', 'Biotechnology', '6.8', '10', '0')
(2126, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '790', '570', '1360', '3.5', '100', 'University of Pune', 'Computer Engineering', '5.7', '100', '24')
(2127, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '156', '316', '3.5', '100', 'VTU', '0', '7.9', '100', '0')
(2128, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '660', '600', '1260', '4', '102', 'Nagpur University', 'Information Technology', '6.752', '100', '0')
(2129, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '760', '590', '1350', '3', '111', 'UPTU', 'comp Science', '6.6659999999999995', '100', '0')
(2130, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '740', '500', '1240', '3.5', '112', 'Pune University', 'Computer', '6.3', '100', '0')
(2131, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '156', '156', '312', '3.5', '103', 'K J Somaiya College of Engiineering', 'IT', '6.6', '100', '30')
(2132, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2009', '750', '390', '1140', '3.5', '101', 'R N S Institute of Technology', 'Electronics and Communication', '7.340000000000001', '100', '0')
(2133, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '149', '313', '2.5', 'None', 'SVCE', 'EEE', '7.5', '100', '0')
(2134, 'Syracuse University', '4', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '750', '670', '1420', '4', '110', 'Rajiv Gandhi Institute Of Technology', 'Mechanical Engineering', '6.1530000000000005', '100', '0')
(2135, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '800', '590', '1390', '4.5', '270', 'SPCE', 'IT', '6.3', '100', '0')
(2136, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '151', '309', 'None', '103', 'NIE', 'CS', '8.23', '10', '0')
(2137, 'Syracuse University', '4', 'Admit', 'MS', 'Chemical Engineering', 'Fall ', '2011', '740', '640', '1380', '4.5', '114', 'MSRIT', 'Chemical Engineering', '8.1', '10', '0')
(2138, 'Syracuse University', '4', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2015', '305', '142', '447', '163', '90', 'Rajarambapu Institute of Technology', 'Civil Engineering', '7.48', '10', '0')
(2139, 'Syracuse University', '4', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '161', '154', '315', '3', '103', 'PESIT', 'Telecommunicaiton', '7.95', '10', '0')
(2140, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '690', '490', '1180', '4', 'None', 'SSN College of Engineering', 'Information Technology', '8', '100', '0')
(2141, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '530', '1290', '3.5', '101', 'Anna University', 'Electrical & Electronics Engineering', '7.7', '100', '0')
(2142, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '166', '334', '3.5', '107', 'University School of Technology IP Univ Delhi', 'Information Technology', '7.4', '100', '0')
(2143, 'Syracuse University', '4', 'Admit', 'MS', 'Engineering Management', 'Spring ', '2013', '730', '480', '1210', '3', '108', 'JNTU', 'Biotechnology', '7.4', '100', '0')
(2144, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '164', '156', '320', '3.5', '113', 'University of Pune', 'Electronics & Telecommunication', '7.1', '100', '0')
(2145, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '780', '510', '1290', '4', '273', 'Osmania University', 'CS', '8.5', '100', '0')
(2146, 'Syracuse University', '4', 'Admit', 'MS', 'Engineering Management', 'Spring ', '2015', 'None', 'None', '0', 'None', 'None', 'KIIT', 'Mechanical Engineering', '8.89', '10', '0')
(2147, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '147', '308', '3.5', '91', 'Manipal Institue of Technology', 'Computer Science', '8.54', '10', '0')
(2148, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '480', '1270', '4.5', '113', 'MU', 'Computer Engineering', '6.7', '100', '0')
(2149, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall', 'None', '161', '149', '310', '3', '91', 'MU', 'Electronics and telecommunication', '6.484', '100', '0')
(2150, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '750', '560', '1310', '3.5', 'None', 'SMIT', 'EEE', '8.3', '100', '0')
(2151, 'Syracuse University', '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '710', '540', '1250', '4', '103', 'Pune University', '0', '0', '0', '0')
(2152, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '166', '159', '325', '4.5', '113', 'University of Pune', 'Computer', '6.0280000000000005', '100', '0')
(2153, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '800', '700', '1500', 'None', '290', 'Pune University', 'Information Technology', '3.36', '4', '0')
(2154, 'Syracuse University', '4', 'Admit', 'MS', 'International Affairs.', 'Fall ', '2013', '740', '600', '1340', '4', '116', 'University of Mumbai', 'Engineering(Information Technology)', '5.8', '100', '0')
(2155, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '160', '156', '316', '4', '107', 'M.I.T Aurangabad', 'Electronics & Comminication', '7.1', '100', '0')
(2156, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '168', '153', '321', '4', 'None', 'Institute of Engineering and Technology', 'Computer Science', '7', '100', '64')
(2157, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2011', '760', '480', '1240', '4', '104', 'Vishwakarma Institute of Technology', 'Electronics and Telecommunication', '8.27', '10', '0')
(2158, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '169', '153', '322', '4', '109', 'GGSIPU', 'Information Technology', '7.016', '100', '24')
(2159, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '163', '148', '311', '4.5', '105', 'University of Mumbai', 'Computer Science', '5.9799999999999995', '100', '0')
(2160, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2009', '800', '580', '1380', '4', '111', 'PICT', 'Information Technology', '3.273', '4', '0')
(2161, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '139', '300', '3', '95', 'GGSIPU', 'IT', '7.5280000000000005', '100', '0')
(2162, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2010', '770', '560', '1330', '3.5', '100', 'West Bengal University Of Technology', 'Computer Science & Engineering', '8.1', '10', '0')
(2163, 'Syracuse University', '4', 'Admit', 'MS', 'MIS-management related courses', 'Fall ', '2012', '720', '590', '1310', '3', '94', 'FCRIT NAVIM MUBAI', 'COMPUTER', '6.324', '100', '0')
(2164, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '730', '550', '1280', 'None', '233', 'Vidyalankar Institute of Technology', 'computers', '6.4', '100', '0')
(2165, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '157', '157', '314', '4', '112', 'Sona College', 'Information Technology', '9.64', '10', '0')
(2166, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '164', '150', '314', '3.5', '95', 'Integral University', 'Information Technology', '7.218000000000001', '100', '60')
(2167, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '161', '153', '314', '3.5', 'None', 'Sinhgad College of Engineering', 'Computer Engineering', '6.3', '100', '0')
(2168, 'Syracuse University', '4', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2014', '166', '144', '310', '3', '90', 'Manipal Institue of Technology', 'CIVIL', '6.6', '10', '6')
(2169, 'Syracuse University', '4', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Summer ', '2015', '162', '152', '314', '3.5', 'None', 'SJCE', 'CS', '7.4', '100', '69')
(2170, 'Syracuse University', '4', 'Admit', 'MS', 'MSIM', 'Fall ', '2013', '161', '164', '325', '4', '113', 'K J Somaiya College of Engiineering', 'Electronics & Telecom', '7', '100', '0')
(2171, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '750', '490', '1240', '2.5', '99', 'GRIET', 'ECE', '6.3', '100', '0')
(2172, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '800', '630', '1430', '660', '293', 'Nirma Institute of Technology', 'Information Technology', '7.938', '100', '0')
(2173, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '750', '490', '1240', '3', '104', 'MU', 'Information Technology', '6.2', '100', '0')
(2174, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '164', '145', '309', '3', '97', 'PESIT', 'ECE', '8.72', '10', '0')
(2175, 'Syracuse University', '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '760', '490', '1250', '3', '101', 'Kurukshetra University', 'Computer Science', '7.109999999999999', '100', '0')
(2176, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '159', '150', '309', '4', '105', 'GITAM', 'ECE', '8.4', '100', '87')
(2177, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '160', '160', '320', '4.5', '113', 'VTU', 'ECE', '7.8', '100', '43')
(2178, 'Syracuse University', '4', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2014', '167', '152', '319', '3', '108', 'BIT Mesra', 'Electronics and Communication', '7.2', '10', '0')
(2179, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Networking', 'Fall ', '2013', '152', '144', '296', '3.5', '106', 'NMAMIT Nitte', 'Electronics and Communication', '7.2', '100', '0')
(2180, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2015', '157', '147', '304', '3.5', '97', 'None', '0', '7.725', '100', '48')
(2181, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '158', '153', '311', '3', 'None', 'SASTRA', 'CSE', '8.25', '10', '0')
(2182, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '152', '315', '4', '104', 'Pune University', 'Computer Engineering', '6.1', '100', '0')
(2183, 'Syracuse University', '4', 'Admit', 'MS', 'Information Technology', 'Fall ', '2011', '800', '580', '1380', '5', '109', 'Shanghai Institute of Foreign Trade', 'Electronic commerce', '3.3', '4', '0')
(2184, 'Syracuse University', '4', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2013', '164', '149', '313', '3', '103', 'CBIT', 'Bio Tech', '7.9', '100', '0')
(2185, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '165', '149', '314', '3', '104', 'NITJ', 'ICE', '7.75', '10', '58')
(2186, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '770', '550', '1320', '3', '112', 'PESIT', 'Computer Science', '7.6', '100', '0')
(2187, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '161', '151', '312', '3.5', '102', 'University of Pune', 'Electronics & Telecomm', '6', '100', '0')
(2188, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '163', '146', '309', '3', '99', 'Devi Ahilya University Indore', 'MBA', '7.7', '10', '0')
(2189, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '770', '540', '1310', '3.5', '233', 'PESIT', 'ISE', '8.1', '100', '0')
(2190, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2013', '720', '310', '1030', '3', '84', 'BVM Engineering College', 'Electronics Engineering', '8.38', '10', '0')
(2191, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '164', '154', '318', '4', '111', 'Gujarat Technological University', 'ECE', '7.6819999999999995', '100', '0')
(2192, 'Syracuse University', '4', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2014', '162', '146', '308', '3', '100', 'K.L.E College of Engg and Technology', 'Electronics and Communication', '5.723', '100', '0')
(2193, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '162', '154', '316', '3.5', 'None', 'MU', 'Information Technology', '5.7', '100', '0')
(2194, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '163', '145', '308', '3', '101', 'Nagarjuna University', 'Electronics and Computers', '8.66', '10', '0')
(2195, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical and computer science', 'Fall ', '2007', '760', '460', '1220', '4', '273', 'RMK Engineering College', 'EEE', '8', '100', '0')
(2196, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '160', '148', '308', '2.5', '95', 'GITAM', 'IT', '8.85', '10', '0')
(2197, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '760', '590', '1350', '3', '95', 'Vidyalankar Institute of Technology', 'IT', '6', '100', '0')
(2198, 'Syracuse University', '4', 'Admit', 'MS', 'CS / MSIS / ITM', 'Fall ', '2011', '750', '470', '1220', '3', '104', 'Anna University', 'Information Technology', '8.14', '100', '0')
(2199, 'Syracuse University', '4', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '166', '156', '322', '4', '113', 'Pune University', 'Electronics & Telecomm', '6.29', '100', '22')
(2200, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '158', '153', '311', '4.5', '107', 'Western Univ.', 'Regional Studies', '4.4', '5', '0')
(2201, 'Syracuse University', '4', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '170', '158', '328', '4.5', '116', 'K J Somaiya College of Engiineering', 'Mechanical', '6.1', '100', '0')
(2202, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '162', '150', '312', '3.5', '98', 'Dharamsinh Desai University', 'Information Technology', '8.43', '10', '0')
(2203, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2011', '710', '380', '1090', '4', '93', 'VTU', 'EC', '6.7', '100', '0')
(2204, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Fall', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(2205, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '167', '154', '321', '3', '100', 'NIT Nagpur', 'Computer Science and Engineering', '8.39', '10', '0')
(2206, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '740', '400', '1140', '3.5', '100', 'VTU', 'CS', '6.5', '100', '0')
(2207, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '149', '310', '3', 'None', 'PESIT', 'Telecommunication', '8.1', '10', '0')
(2208, 'Syracuse University', '4', 'Admit', 'MS', 'CS / MSIS / ITM', 'Fall ', '2011', '790', '300', '1090', '3.5', '93', 'V.G. Vaze college Mumbai University', 'Department Of Information Technology', '8', '100', '0')
(2209, 'Syracuse University', '4', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2014', '156', '149', '305', '3', '102', 'JNTU', 'Computer Science', '7.8', '100', '0')
(2210, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '590', '460', '1050', 'None', 'None', 'None', '0', '0', '0', '0')
(2211, 'Syracuse University', '4', 'Admit', 'MS', 'mba', 'Fall', 'None', '46', '31', '77', '4', '106', 'MGIT', 'ECE', '7.172', '100', '0')
(2212, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '153', '313', '3.5', 'None', 'Pune University', 'Computer', '6.127000000000001', '100', '0')
(2213, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '760', '400', '1160', '3', '89', 'JNTU', 'COMPUTER SCIENCE', '8.040000000000001', '100', '0')
(2214, 'Syracuse University', '4', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2014', '161', '145', '306', '3.5', '101', 'Acharya Institute of Technology', 'Electrical and Electronics', '8.03', '100', '6')
(2215, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '740', '590', '1330', '3', '102', 'MU', 'computer', '5.5', '100', '0')
(2216, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '162', '160', '322', '4', '114', 'MU', 'Information Technology', '5.4', '100', '12')
(2217, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '0', '770', '3.5', '95', 'PESIT', 'Computer SCience', '7.7', '100', '0')
(2218, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2013', '156', '153', '309', '3.5', '99', 'VIT University', 'Electronics and Instrumentation', '7.99', '10', '0')
(2219, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '151', '144', '295', '3', '90', 'Maharashtra Institute of Technology', 'Computer Science', '7.4', '100', '0')
(2220, 'Syracuse University', '4', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2012', '800', '530', '1330', '3', '99', 'NMIMS', 'Electronics & Telecommunication', '2.73', '4', '0')
(2221, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall', 'None', '157', '152', '309', '3.5', '109', 'MU', 'I.T.', '5.4', '100', '0')
(2222, 'Syracuse University', '4', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2014', '160', '150', '310', '3.5', '111', 'VESIT', 'Instrumentation', '6.2', '100', '0')
(2223, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '160', '153', '313', '4', '111', 'Anna University', '0', '9.2', '10', '0')
(2224, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall', 'None', '166', '155', '321', '3', '108', 'IIIT Allahabad', 'IT', '8.8', '10', '0')
(2225, 'Syracuse University', '4', 'Admit', 'MS', 'MIS-management related courses', 'Fall ', '2013', '159', '146', '305', '3.5', '96', 'VTU', 'EEE', '6.5', '100', '0')
(2226, 'Syracuse University', '4', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '170', '155', '325', '4', '107', 'College of Technology Pantnagar', 'ECE', '7.244', '100', '9')
(2227, 'Syracuse University', '4', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2006', '730', '560', '1290', '4', '280', 'SVCE', 'ECE', '6.5', '100', '0')
(2228, 'Syracuse University', '4', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2012', '770', '480', '1250', '3.5', '109', 'Don Bosco Institute of Technology', 'EXTC', '5.6', '100', '0')
(2229, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '164', '152', '316', '3.5', '111', 'CBIT', 'Computer Science', '7.65', '100', '0')
(2230, 'Syracuse University', '4', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2014', '157', '153', '310', '4', '109', 'Engineering', 'Computer Science', '0.37', '100', '0')
(2231, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science/ Mgmt', 'Fall ', '2011', '800', '640', '1440', 'None', '112', 'MU', 'IT', '6.2', '100', '0')
(2232, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '740', '570', '1310', '3', '102', 'Osmania University', 'ece', '8', '100', '0')
(2233, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '440', '1210', '3', '111', 'MSRIT', 'Computer Science', '7.5', '100', '0')
(2234, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '146', '308', '3', '93', 'Maharaja Agrasen Institute Of Technology', 'Computer Science Engineering', '7.340000000000001', '100', '0')
(2235, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '710', '600', '1310', '3.5', 'None', 'North Dakota State University', 'ECE', '3.1', '4', '0')
(2236, 'Syracuse University', '4', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2012', '780', '420', '1200', '2.5', '98', 'University of Pune', 'Electronics and telecommunication', '6.01', '100', '0')
(2237, 'Syracuse University', '4', 'Admit', 'MS', 'Chemistry', 'Fall ', '2013', '800', '520', '1320', '3', '96', 'Institute of Chemical Technology', 'Dept. of Dyestuff Technology', '7', '10', '0')
(2238, 'Syracuse University', '4', 'Admit', 'MS', 'None', 'Fall ', '2013', '157', '155', '312', '4', '113', 'MU', 'Computer Engineering', '6.5', '100', '0')
(2239, 'Syracuse University', '4', 'Admit', 'MS', 'Chemical Engineering', 'Spring ', '2012', '800', '360', '1160', '3', '103', 'NIT Jalandhar', 'Chemical Engineering', '7.61', '10', '0')
(2240, 'Syracuse University', '4', 'Admit', 'MS', 'software engineering', 'Spring ', '2014', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(2241, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2015', 'None', 'None', '0', 'None', '105', 'JNTU', 'ECE', '7.2', '100', '46')
(2242, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '165', '149', '314', '4', '105', 'Anna University', 'ECE', '7.340000000000001', '100', '0')
(2243, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '700', '540', '1240', '3', '99', 'Sri Venkateswara College of Engineering', 'Information Technology', '7.2', '100', '0')
(2244, 'Syracuse University', '4', 'Admit', 'MS', 'MIS-management related courses', 'Fall ', '2012', '160', '151', '311', '3', '104', 'BITS Goa', 'Mathematics & Mechanical', '6.7', '10', '0')
(2245, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '157', '149', '306', '3.5', '104', 'GGSIPU', 'EEE', '7.51', '100', '0')
(2246, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '162', '160', '322', '4', '111', 'MSU', 'Computer Science & Engineering', '3.64', '4', '0')
(2247, 'Syracuse University', '4', 'Admit', 'MS', 'Biotechnology/bio-engineering', 'Fall ', '2013', '160', '159', '319', '3', '108', "St Joseph's College of Engineering", 'Biotechnology', '8.2', '100', '0')
(2248, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '166', '156', '322', '3.5', '111', 'JNTU', 'CS', '6.3', '100', '0')
(2249, 'Syracuse University', '4', 'Admit', 'MS', 'Management Information System', 'Fall ', '2014', '157', '148', '305', '3', 'None', 'MDU', 'Computer SC', '6.74', '100', '0')
(2250, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '161', '145', '306', '3.5', '100', 'VTU', 'Information Science', '7.5', '100', '0')
(2251, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '143', '306', '3', 'None', 'Amrita School of Engineering', 'Computer Science and Engineering', '7.2', '10', '24')
(2252, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '162', '158', '320', '3.5', '112', 'University of Pune', 'Electronics and Telecommunication', '6.18', '100', '0')
(2253, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2014', '160', '151', '311', '4', '93', 'LDRP-ITR/GTU', 'ECE', '7.35', '100', '0')
(2254, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '156', '149', '305', '3', '94', 'Rajasthan Technical University', 'Computer science', '8.15', '100', '0')
(2255, 'Syracuse University', '4', 'Admit', 'MS', 'Management Information System', 'Fall ', '2013', '161', '156', '317', '3', '97', 'Guru Gobind Singh Indraprashta University', 'Computer Science Engineering', '3.56', '4', '0')
(2256, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '161', '148', '309', '4', '104', 'Lakshmi Narain College of Technology', 'Electrical & Electronics Engineering', '7.44', '100', '0')
(2257, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '610', '1400', '3.5', '99', 'mit pune', 'e-tc', '6.491', '100', '0')
(2258, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '780', '730', '1510', '4', '113', 'COEP', 'Computer Engineering', '7.95', '10', '0')
(2259, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '157', '142', '299', '3', '100', 'RMK Engineering College', 'Computer Science', '8.4', '100', '42')
(2260, 'Syracuse University', '4', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2014', '147', '146', '293', '3', '90', 'Gogte Institute of Technology', 'Electronics and communication', '6.7', '100', '0')
(2261, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '620', '470', '1090', '2.5', '101', 'Velammal Engineering College', 'EIE', '8.34', '100', '0')
(2262, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '149', '309', '3.5', '104', 'Anna University', 'Computer Science', '7.49', '100', '0')
(2263, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '155', '146', '301', '3', '88', 'New Horizon College of Engineering', 'computer science', '7.4', '100', '0')
(2264, 'Syracuse University', '4', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '161', '144', '305', '3', '102', 'Ramakrishna College of Engineering', 'Mechanical', '0.8', '100', '0')
(2265, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '790', '460', '1250', '4', '109', 'MU', 'Computer Science', '7.325', '100', '0')
(2266, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2010', '770', '320', '1090', '3.5', '98', 'VTU', 'Electronics and Communication Engineering', '7', '100', '0')
(2267, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '165', '148', '313', '3.5', '91', 'University of Pune', 'Comp Engg', '0', '0', '0')
(2268, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '160', '149', '309', '3', '101', 'D Y Patil College of Engineering', 'Electronics Engineering', '7.2', '100', '0')
(2269, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '740', '370', '1110', '3', '82', 'K J Somaiya College of Engiineering', 'INFORMATION TECHNOLOGY', '6.7', '100', '0')
(2270, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '159', '153', '312', '3', '110', 'Anna University', 'CSE', '7.3', '100', '0')
(2271, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '800', '710', '1510', '4', '113', 'IP University Delhi', 'Computer Science', '8', '100', '0')
(2272, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '750', '300', '1050', '3', '82', 'KLESCET', 'Electronics and Communication', '6.882', '100', '0')
(2273, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '750', '470', '1220', '3', '104', 'Dr Mahalingam College of Engineering and Technology', 'Information Technology', '8.2', '100', '0')
(2274, 'Syracuse University', '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '730', '480', '1210', '3.5', '107', 'S.A.Engineering college.Anna university.', 'computer science', '8.167', '100', '0')
(2275, 'Syracuse University', '4', 'Admit', 'MS', 'CS', 'Fall ', '2013', '770', '590', '1360', '3.5', '111', 'VTU', 'ISE', '7.45', '100', '0')
(2276, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '780', '440', '1220', '3.5', '108', 'SRM', 'CSE', '9.3', '10', '0')
(2277, 'Syracuse University', '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2012', '156', '142', '298', '2.5', '98', 'Pune University', 'IT', '6.8', '100', '0')
(2278, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '170', '161', '331', '4', '110', 'VTU', 'Computer Science', '6.8', '100', '36')
(2279, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '165', '144', '309', '3.5', '97', 'BITS Pilani', 'B.E. EEE & MSc. Economics', '7.7', '10', '0')
(2280, 'Syracuse University', '4', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(2281, 'Syracuse University', '4', 'Admit', 'MS', 'MIS/MS CS', 'Fall ', '2014', '163', '155', '318', '3.5', '112', 'Institute of Engineering and Management', 'IT', '7.83', '10', '0')
(2282, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2013', '161', '144', '305', '3', '97', 'Vishwakarma Institute of Technology', 'Electronics and Telecommunication', '7.9', '10', '0')
(2283, 'Syracuse University', '4', 'Admit', 'MS', 'MS Analytics/ MIS', 'Fall ', '2015', '160', '149', '309', '3', 'None', 'Jaypee Institute of Information Technology', 'ECE', '7.1', '100', '45')
(2284, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '780', '490', '1270', '3.5', '107', 'Thakur College of Engineering and Technology', 'Information Technology', '6.014', '100', '0')
(2285, 'Syracuse University', '4', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '740', '570', '1310', '4', '108', 'Gujarat Technological University', 'Mechanical Engineering', '6.3', '100', '0')
(2286, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '159', '150', '309', '3.5', '103', 'MU', 'Computer Science', '6.5', '100', '0')
(2287, 'Syracuse University', '4', 'Admit', 'MS', 'Information Technology', 'Fall ', '2011', '750', '430', '1180', '3', 'None', 'MU', 'Information Technology', '6.5', '100', '0')
(2288, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '166', '145', '311', 'None', '97', 'MSU', 'CS', '3.93', '4', '0')
(2289, 'Syracuse University', '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2012', '740', '540', '1280', 'None', '96', 'MU', 'IT', '6.1', '100', '0')
(2290, 'Syracuse University', '4', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '161', '145', '306', '4', '106', 'Sapthagiri College of Engineering', 'Electronics and Communication', '7.6530000000000005', '100', '0')
(2291, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '800', '660', '1460', '3.5', '103', 'VIT', 'Telecommunication', '8.76', '10', '0')
(2292, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '162', '151', '313', '4', '110', 'SIES Graduate School of Technology', 'Computer Engineering', '6.2', '100', '0')
(2293, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '750', '580', '1330', '3.5', '260', 'Gujarat Technological University', 'Information Technology', '7.1', '100', '0')
(2294, 'Syracuse University', '4', 'Admit', 'MS', 'CS', 'Fall ', '2013', '156', '152', '308', '3', '103', 'MSRIT', 'Information Science and Engineering', '8.88', '10', '0')
(2295, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '169', '158', '327', 'None', '110', 'NITK Surathkal', 'Information Technology', '7.27', '10', '0')
(2296, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '161', '322', '3.5', '108', 'C.S.V.T.U.', 'Computer Science and Engg', '8.53', '10', '0')
(2297, 'Syracuse University', '4', 'Admit', 'MS', 'Mechanical Engineering', 'Fall', 'None', '170', '153', '323', '4', '104', 'VIT', 'Mechanical(specialization in Energy)', '8.9', '10', '0')
(2298, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '160', '150', '310', '4', '114', 'University of Pune', 'Electronics Engineering', '6.9', '100', '0')
(2299, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '166', '152', '318', '3.5', '110', 'Nirma Institute of Technology', 'Computer Science', '8.89', '10', '0')
(2300, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '720', '540', '1260', '3.5', '107', 'B N M Institute of Technology', 'ISE', '7.172', '100', '0')
(2301, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '163', '153', '316', '3', '108', 'JSS Noida', 'Computer Science', '6.9', '100', '0')
(2302, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2008', '800', '580', '1380', '5', '111', 'MU', 'Information Technology', '6', '100', '0')
(2303, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '147', '307', '3', '95', 'Jaypee Institute of Information Technology', 'CSE', '7.25', '100', '0')
(2304, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '780', '500', '1280', '5', '110', 'University of Pune', 'Computer Engineering', '6.88', '100', '0')
(2305, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '161', '153', '314', '3', '109', 'MU', 'Electronics and Telecomm', '6.4', '100', '0')
(2306, 'Syracuse University', '4', 'Admit', 'MS', 'Information technology management', 'Fall ', '2012', '770', '530', '1300', '4', '102', 'Nagpur University', 'Electronics Engineering', '6.5', '100', '0')
(2307, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '164', '154', '318', '3', '107', 'Amity University', 'CS&E;', '7.5', '10', '0')
(2308, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '151', '159', '310', '3.5', '114', 'Amrita School of Engineering', 'Computer Science and Engineering', '7.93', '10', '0')
(2309, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '170', '153', '323', '3.5', '90', 'Osmania University', 'ECE', '7.7', '100', '0')
(2310, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2012', '750', '560', '1310', '2.5', '110', 'GGSIPU', 'ECE', '6.3', '100', '0')
(2311, 'Syracuse University', '4', 'Admit', 'MS', 'Engineering Management', 'Spring ', '2013', '780', '560', '1340', '4', 'None', 'MJCET', 'Electronics and Instrumentation', '6.4', '100', '0')
(2312, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '720', '1520', '5.5', '118', 'None', '0', '0', '0', '0')
(2313, 'Syracuse University', '4', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2013', '160', '146', '306', '3.5', '106', 'MU', 'Electronics and Telecommunication', '6.3', '100', '0')
(2314, 'Syracuse University', '4', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '168', '155', '323', '4', '113', 'Gujarat Technological University', 'Mechanical Engineering', '7.51', '10', '0')
(2315, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '720', '680', '1400', '3', '106', 'VIT', 'elctronics and communication', '6.72', '10', '0')
(2316, 'Syracuse University', '4', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2014', '161', '152', '313', '4', '108', "St Joseph's College of Engineering", 'Electronics and Communication', '6.88', '10', '20')
(2317, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '161', '151', '312', '4', '104', 'None', 'CS', '7.33', '10', '0')
(2318, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '44', '28', '72', '4.5', '102', 'VTU', 'CS', '6.7', '100', '0')
(2319, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall', 'None', '163', '155', '318', '4', '107', 'Anna University', 'IT', '8.01', '10', '0')
(2320, 'Syracuse University', '4', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(2321, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '360', '1130', '3.5', '111', 'Anna University', 'Computer Science & Engg', '7.9', '100', '0')
(2322, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '47', '33', '80', '5', '104', 'Rajasthan Technical University', '0', '3.65', '4', '0')
(2323, 'Syracuse University', '4', 'Admit', 'MS', 'CS / SE / IT / MIS', 'Fall', 'None', '166', '153', '319', '3.5', '111', 'RGPV', 'Electronics', '6.8', '10', '0')
(2324, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '165', '158', '323', '4', '108', 'Bharati Vidyapeeth', 'IT', '7.975', '100', '0')
(2325, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '158', '151', '309', '3', '110', 'Pune University', 'Computer', '6.6', '100', '0')
(2326, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '740', '620', '1360', '5', '112', 'Amrita Vishwa Vidhyapeetham', 'Information Technology', '8.72', '10', '0')
(2327, 'Syracuse University', '4', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(2328, 'Syracuse University', '4', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2014', '162', '153', '315', '3.5', 'None', 'JNTU', 'electrical engineering', '7', '100', '0')
(2329, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '730', '530', '1260', '3', '111', 'Pune University', 'Mechanical Engineering', '0', '0', '0')
(2330, 'Syracuse University', '4', 'Admit', 'MS', 'Mechanical And Aerospace', 'Spring ', '2014', '161', '151', '312', '3', 'None', 'Saurashtra University', 'Mechanical Engineering', '3.6', '4', '0')
(2331, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '164', '155', '319', '3.5', '106', 'MU', 'Computer', '6.1', '100', '0')
(2332, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '167', '146', '313', '3', '99', 'K J Somaiya College of Engiineering', 'Computer Engineering', '6.917', '100', '0')
(2333, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '168', '159', '327', '4.5', '112', 'University of Mumbai', 'computer engineering', '6.787000000000001', '100', '42')
(2334, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '161', '162', '323', '4', '110', 'VTU', 'Electronics and Communication', '6.295', '100', '0')
(2335, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '151', '311', '4', '109', 'VTU', 'CSE', '8.1', '100', '0')
(2336, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '580', '1360', 'None', 'None', 'CEG', 'CS', '8', '10', '0')
(2337, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '670', '1470', '3.5', '112', 'University of Mumbai', 'Electronics and Telecomm', '7.2', '100', '0')
(2338, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '159', '145', '304', '3', '100', 'PTU/Rayat and Bahra', 'Computer Science', '7.44', '100', '0')
(2339, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '162', '151', '313', '3.5', '107', 'Pune University', 'Computer', '7.4', '100', '0')
(2340, 'Syracuse University', '4', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2015', '145', '154', '299', '4.5', '97', 'University of Pune', 'Electronics and Telecommunication', '5.8', '100', '0')
(2341, 'Syracuse University', '4', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '159', '150', '309', '3.5', '107', 'Manipal Institue of Technology', 'mechatronics', '8', '10', '0')
(2342, 'Syracuse University', '4', 'Admit', 'MS', 'Networking', 'Fall ', '2013', '156', '145', '301', '3.5', '102', 'KU', 'IT', '6.3', '100', '0')
(2343, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '500', '1270', '3', '95', 'Madras Institute of Technology', 'Electronics and Instrumentation Engineering', '8.9', '10', '0')
(2344, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '160', '144', '304', '3.5', '98', 'RNSIT', 'Computer Science', '7.5', '100', '0')
(2345, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '168', '153', '321', '4.5', '110', 'Ramrao Adik Institute of Technology', 'Electronics', '6', '100', '0')
(2346, 'Syracuse University', '4', 'Admit', 'MS', 'Information Management', 'Fall ', '2014', '163', '151', '314', '3', '100', 'Jaypee Institute of Information Technology', 'Information Technology', '6.9', '100', '36')
(2347, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '800', '570', '1370', '4', '110', 'Pune University', 'Electrical Engineering', '0', '0', '0')
(2348, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '162', '152', '314', '3.5', '108', 'UPTU', 'Computer Science', '7.6', '100', '0')
(2349, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2008', '770', '630', '1400', 'None', '107', 'MU', 'Electronics & Telecommunication', '6.4', '100', '0')
(2350, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '145', '307', '3', '82', 'Government Engineering College Patan affilated with GTU', 'Computer Science & Engineering', '8.34', '10', '0')
(2351, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '155', '317', '4.5', '114', 'Manipal Institue of Technology', 'Computer Science', '9.46', '10', '12')
(2352, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '165', '156', '321', '4.5', '112', 'MU', 'Computer Engineering', '7.1', '100', '30')
(2353, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '316', '157', '473', '4.5', '112', 'TSEC', 'I.T', '6', '100', '0')
(2354, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '161', '149', '310', '4', '117', 'Gujarat Technological University', 'ELECTRONICS AND COMMUNICATION', '9.13', '10', '20')
(2355, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(2356, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '159', '150', '309', '4', '6', 'Vignan Institute of Technology and Science', 'ECE', '7.7', '100', '0')
(2357, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '167', '149', '316', '3.5', '102', 'Osmania University', 'CSE', '8', '100', '0')
(2358, 'Syracuse University', '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2013', '155', '150', '305', '305', '93', 'Dayananda Sagar College of Engineering', 'Telecommunication', '6.6', '100', '0')
(2359, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall', 'None', '163', '148', '311', '3.5', '106', 'VTU', 'Instrumentation', '7.82', '10', '0')
(2360, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '750', '530', '1280', '3', '97', 'VJTI', 'Electronics', '7.9', '10', '0')
(2361, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '160', '154', '314', '3', '107', 'None', '0', '7.4', '100', '0')
(2362, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2012', '780', '610', '1390', '3.5', '111', 'GTU', 'Electronics and Communication', '6.5', '100', '0')
(2363, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '154', '152', '306', '3', '104', 'None', '0', '0', '0', '0')
(2364, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', 'None', 'None', '0', 'None', '94', 'Sinhgad College of Engineering', 'Computer Sciences', '6.005', '100', '0')
(2365, 'Syracuse University', '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '800', '670', '1470', '5', '118', 'Anna University', 'MCA', '9.6', '10', '0')
(2366, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '750', '550', '1300', '4', '107', 'VTU', 'EE', '7.1', '100', '0')
(2367, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '750', '510', '1260', '3.5', '86', 'Anna University', 'Computer Science', '8.040000000000001', '100', '0')
(2368, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '700', '480', '1180', '3.5', '100', 'Sri Venkateswara College of Engineering', 'CSE', '7.1', '100', '0')
(2369, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '170', '153', '323', '3.5', '103', 'Pune University', 'ECE', '7.2', '100', '0')
(2370, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '800', '610', '1410', '4.5', '283', 'University of Madras', 'Computer Science', '7.6', '100', '0')
(2371, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '760', '570', '1330', '5', '290', 'Atharva College', 'computer engineering', '6.412999999999999', '100', '0')
(2372, 'Syracuse University', '4', 'Admit', 'MS', 'CS MIS', 'Fall ', '2012', '158', '150', '308', '4', '102', 'VTU', 'Computer Science', '8.07', '10', '0')
(2373, 'Syracuse University', '4', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2013', '800', '600', '1400', '4.5', '111', 'Pune University', 'Computers', '0', '0', '0')
(2374, 'Syracuse University', '4', 'Admit', 'MS', 'Information Security', 'Fall ', '2013', '162', '158', '320', '4', '112', 'KU', 'Information Technology', '7.1', '10', '0')
(2375, 'Syracuse University', '4', 'Admit', 'MS', 'Computational Science', 'Spring ', '2011', '780', '340', '1120', '3', '92', 'JNTU', 'ECE', '7.979000000000001', '100', '0')
(2376, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '790', '670', '1460', '3', '103', 'GITAM', 'INFORMATION TECHNOLOGY', '9.03', '10', '0')
(2377, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '158', '143', '301', '3', '98', 'SASTRA', 'ECE', '7.29', '10', '0')
(2378, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '770', '500', '1270', '4', 'None', 'Institute of Engineering and Technology DAVV', 'Computer Science', '7.8', '100', '0')
(2379, 'Syracuse University', '4', 'Admit', 'MS', 'Engineering Management', 'Spring ', '2016', '163', '156', '319', '4', '108', 'Siddaganga Institue of Technology', 'Mechanical', '8.32', '10', '2')
(2380, 'Syracuse University', '4', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2013', '710', '560', '1270', '3.5', '113', 'SRM', 'Computer Science', '8.496', '10', '0')
(2381, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '800', '500', '1300', '4', '257', 'Shah And anchor Kutchhi Engineering College', 'Computer', '6.4', '100', '0')
(2382, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '160', '154', '314', '4', '116', 'University of Mumbai', 'Information Technology', '6.4', '100', '0')
(2383, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '770', '470', '1240', '4', '104', 'Amrita School of Engineering', 'Computer Science', '7.33', '10', '0')
(2384, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '157', '149', '306', '3', '110', 'Fore School of Management', 'Computer Science', '3.78', '4', '54')
(2385, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '640', '520', '1160', '3', 'None', 'VIT', '0', '7.4', '10', '0')
(2386, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '146', '305', 'None', '102', 'Pondicherry Engineering College', 'Information Technology', '83.3', '100', '0')
(2387, 'Syracuse University', '4', 'Admit', 'MS', 'Computational Science', 'Fall ', '2014', '154', '149', '303', '3.5', '94', 'RKDF IST', 'IT', '7.4', '100', '0')
(2388, 'Syracuse University', '4', 'Admit', 'MS', 'MS Analytics/ MIS', 'Fall ', '2014', '161', '152', '313', '3', '105', 'Medicaps Institute of Science & Technology Indore', 'Electronics and Communication', '3.68', '4', '0')
(2389, 'Syracuse University', '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2013', '160', '150', '310', '3.5', '102', 'MDU', 'Computer Science', '7.4', '100', '0')
(2390, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '620', '1380', '5', '119', 'MU', 'Electronics and Telecommunications', '6.2', '100', '0')
(2391, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '800', '400', '1200', '3.5', '277', 'Anna University', 'Electrical and Instumentation Engineering', '8.66', '100', '0')
(2392, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2006', '710', '590', '1300', '3.5', '253', 'University of Mumbai', 'Electronins and Telecommunication', '5.6', '100', '0')
(2393, 'Syracuse University', '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '47', '33', '80', '4.5', '97', 'Pune University', '0', '6.7299999999999995', '100', '0')
(2394, 'Syracuse University', '4', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '155', '145', '300', '3', '90', 'JNTU', 'mechanical', '7.2', '100', '0')
(2395, 'Syracuse University', '4', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2013', 'None', 'None', '0', '3.5', 'None', 'None', '0', '0', '0', '0')
(2396, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2007', '740', '470', '1210', '3', '257', 'Anna University', 'ECE', '8.4', '10', '0')
(2397, 'Syracuse University', '4', 'Admit', 'MS', 'CS/SE', 'Fall ', '2012', '160', '149', '309', '4', '105', 'Sona College', 'Information Technology', '7.6', '100', '0')
(2398, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '162', '154', '316', '3.5', '111', 'CBIT', 'Computer Science', '7.7', '100', '0')
(2399, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '790', '560', '1350', '4', '273', 'SVCE', 'Comp Science', '7.33', '100', '0')
(2400, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '149', '161', '310', '5', '105', 'MITS', 'E&C;', '7.5', '10', '0')
(2401, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '750', '570', '1320', '3.5', '110', 'Silicon Inst of Technology', 'electronics and Telecommunication', '8.29', '10', '0')
(2402, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '790', '580', '1370', '4', '113', 'None', '0', '0', '0', '0')
(2403, 'Syracuse University', '4', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2013', '156', '142', '298', '3', '97', 'SIES Graduate School of Technology', 'EXTC', '0', '0', '0')
(2404, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2012', '750', '650', '1400', '4', '114', 'MU', 'Electronics and Telecommunication', '6.9', '100', '0')
(2405, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '160', '144', '304', '3', '94', 'VTU', 'Computer Science Engineering', '7.420999999999999', '100', '0')
(2406, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '530', '1330', '4', '108', 'Anna University', 'Computer Science and Engineering', '8.1', '100', '0')
(2407, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2007', '760', '650', '1410', '4', '290', 'Anna University', 'ECE', '7.6', '100', '0')
(2408, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '165', '150', '315', '3.5', '7', 'Jaypee Institute of Information Technology', 'IT', '7.9', '10', '12')
(2409, 'Syracuse University', '4', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2012', '158', '149', '307', '3', '107', 'Anna University', 'Aeronautical', '7.5', '10', '0')
(2410, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '141', '300', '3', '88', 'Gujarat Technological University', 'Computer Engineering', '8.8', '10', '0')
(2411, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2008', '800', '330', '1130', '3', '93', 'KLCE', 'IST', '8.4', '100', '0')
(2412, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '155', '147', '302', '3.5', '96', 'Anna University', 'CSE', '7.32', '10', '6')
(2413, 'Syracuse University', '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '780', '550', '1330', '2.5', '99', 'MU', 'IT', '6.2', '100', '0')
(2414, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Spring ', '2013', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(2415, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '730', '420', '1150', '3.5', '91', 'MU', 'extc', '6.2', '100', '0')
(2416, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '153', '318', '4', '105', 'Siddaganga Institue of Technology', 'information science and engg', '9.34', '10', '0')
(2417, 'Syracuse University', '4', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2014', '163', '155', '318', '4', 'None', 'AISSMS College of Engineering Pune', 'Mechanical ENGG', '6.12', '100', '0')
(2418, 'Syracuse University', '4', 'Admit', 'MS', 'Telecommunication', 'Spring ', '2008', '790', '480', '1270', '4', '113', 'MU', 'ECE', '6.6', '100', '0')
(2419, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '154', '315', '3', '103', 'VTU', 'Computer Science', '8.5', '100', '0')
(2420, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '800', '610', '1410', '3.5', 'None', 'MU', 'Electronics and Telecommunication', '5.8', '100', '0')
(2421, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '149', '311', '3.5', '101', 'SVITS', 'Computer Science', '7.319', '100', '29')
(2422, 'Syracuse University', '4', 'Admit', 'MS', 'Information Science', 'Fall ', '2009', '760', '470', '1230', '3.5', '108', 'MU', 'computer', '0', '0', '0')
(2423, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '750', '600', '1350', '3.5', '105', 'University of Mumbai', 'Computer Engineering', '6.2', '100', '0')
(2424, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '760', '620', '1380', 'None', '260', 'Mysore University', 'CS', '7.6', '100', '0')
(2425, 'Syracuse University', '4', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2007', '760', '370', '1130', '4', '263', 'Pune University', 'Electronics & Telecommunications', '6.55', '100', '0')
(2426, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '159', '150', '309', '3.5', '106', 'WBUT', 'IT', '7.7', '10', '0')
(2427, 'Syracuse University', '4', 'Admit', 'MS', 'MIS-management related courses', 'Fall ', '2012', '800', '600', '1400', '3', '101', 'MU', 'Computer', '0', '0', '0')
(2428, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '162', '162', '324', '4', '115', 'University of Texas at Dallas', 'Arts and Technology', '0', '0', '0')
(2429, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '166', '149', '315', '4', '107', 'VIT', 'ECE', '8.75', '10', '0')
(2430, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '750', '550', '1300', '4', '273', 'MGMCET Mumbai University', 'EXTC', '6.7', '100', '0')
(2431, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '430', '1190', '3.5', '91', 'srknec', 'electonics', '6.3', '100', '0')
(2432, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '730', '580', '1310', '3', '103', 'MU', 'EXTC', '7.3', '100', '0')
(2433, 'Syracuse University', '4', 'Admit', 'MS', 'Finance', 'Fall ', '2012', '41', '25', '66', '4.5', '101', 'MU', 'Commerce', '0', '0', '0')
(2434, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '610', '1410', '3.5', '106', 'Delhi College Of Engineeing', 'IT', '7.409999999999999', '100', '0')
(2435, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '164', '159', '323', '3.5', '110', 'MU', 'Information Technology', '6.9', '100', '0')
(2436, 'Syracuse University', '4', 'Admit', 'MS', 'Management Information System', 'Fall ', '2015', '161', '150', '311', '3.5', '105', 'University of Mumbai', 'Computer Engineering', '7.3', '100', '24')
(2437, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2008', '790', '520', '1310', '4', '106', 'University of Mumbai', 'Electronics', '0', '0', '0')
(2438, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '470', '1250', '3.5', '106', 'D J Sanghvi', 'Electronics', '7.518000000000001', '100', '0')
(2439, 'Syracuse University', '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2012', '162', '149', '311', '3.5', '102', 'Don Bosco Institute of Technology', 'Electronics and Telecommunication', '6.62', '100', '0')
(2440, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '790', '680', '1470', '5', '293', 'D J Sanghvi', 'Computer Engineering', '6.6', '100', '0')
(2441, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '152', '314', '3.5', '102', 'Sri Jayachamarajendra College of Engineering', 'Computer Science and Engineering', '8.5', '10', '0')
(2442, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '780', '500', '1280', '3.5', '257', 'GTBIT', 'IT', '7.2', '100', '0')
(2443, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '710', '590', '1300', '3.5', '100', 'MU', 'Electronics', '7.4', '100', '0')
(2444, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '157', '149', '306', '4', '114', 'VTU', 'CSE', '8.88', '10', '36')
(2445, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '158', '155', '313', '4.5', '105', 'University of Mumbai', 'I.T', '6.5', '100', '0')
(2446, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '400', '1190', '3.5', '100', 'Anna University', 'CS', '7.6', '100', '0')
(2447, 'Syracuse University', '4', 'Admit', 'MS', 'CS / MSIS / ITM', 'Fall ', '2015', '170', '152', '322', '3.5', '97', 'Manipal Institue of Technology', 'Chemical', '6.64', '10', '56')
(2448, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '156', '156', '312', '2.5', '106', 'College Of Engineering Roorkee', 'Information Technology', '6.6', '100', '0')
(2449, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '42', '31', '73', '5', '109', 'None', '0', '0', '0', '0')
(2450, 'Syracuse University', '4', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '160', '149', '309', '3', '101', 'GGSIPU', 'CSE', '7.9', '100', '0')
(2451, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '800', '450', '1250', '3.5', '105', 'JNVU', 'Information Technology', '6.9', '100', '0')
(2452, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '630', '640', '1270', '3', '112', 'Pune University', 'Computer Science', '6', '100', '0')
(2453, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '770', '580', '1350', '4', '108', 'Govt Model Engg College', 'Computer Sc & Engineering', '7.659999999999999', '100', '0')
(2454, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '730', '680', '1410', '4', '113', 'Pune University', 'IT', '5.3', '100', '0')
(2455, 'Syracuse University', '4', 'Admit', 'MS', 'MIS/CS', 'Fall ', '2014', '162', '155', '317', '4', '107', 'SSN College of Engineering', 'CSE', '7.83', '10', '0')
(2456, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '730', '570', '1300', '3', '109', 'PESIT', 'ISE', '7.5', '100', '0')
(2457, 'Syracuse University', '4', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2012', '760', '520', '1280', '2.5', '97', 'Veermata Jijabai Technological Institute', 'mechanical', '6.1', '10', '0')
(2458, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '151', '313', '4.5', '108', 'Shivaji University', 'Computer Science', '6.7', '100', '0')
(2459, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '540', '1340', '4', '105', 'University of Mumbai', 'Electronics & Telecommunication', '6.1', '100', '0')
(2460, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '770', '540', '1310', '3.5', '114', 'Thadomal Shahani Engineering College', 'Computer Engineering', '6.8', '100', '0')
(2461, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical & Computer Engg/MIS/Industrial/Systems Engg', 'Fall ', '2014', '156', '147', '303', '4', '104', 'Anna University', 'EEE', '8.025', '100', '29')
(2462, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '590', '1390', '3', '98', 'None', 'Electronics', '6.8', '100', '0')
(2463, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '162', '151', '313', '3', '101', 'Pune University', 'Computer Science', '6.8', '100', '25')
(2464, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '800', '480', '1280', 'None', '110', 'BITS Pilani', '0', '6.5', '10', '0')
(2465, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '170', '153', '323', '3.5', '90', 'Osmania University', 'ECE', '7.7', '100', '0')
(2466, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '162', '155', '317', '3.5', '113', 'MU', 'E & TC', '7', '100', '0')
(2467, 'Syracuse University', '4', 'Admit', 'MS', 'Business', 'Fall ', '2012', '770', '550', '1320', '4', '105', 'Vidyalankar Institute of Technology', 'Electronics', '5.8', '100', '0')
(2468, 'Syracuse University', '4', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2014', '157', '156', '313', '4', '114', 'National University of Sciences and Technology', 'Mechatronics Engineering', '2.67', '4', '0')
(2469, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2012', '780', '500', '1280', '3.5', '92', 'BIT Mesra', 'Electical and Electronics Engineering', '6.28', '10', '0')
(2470, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '770', '600', '1370', '4', '114', 'Anna University', 'ECE', '7.8', '100', '0')
(2471, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '780', '390', '1170', '4', '110', 'MH Saboo Siddik college of Engg', 'Information Technology', '0', '0', '0')
(2472, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2013', '164', '148', '312', '3', '109', 'GITAM', 'ECE', '8.3', '10', '0')
(2473, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2014', '162', '151', '313', '3', '101', 'Amrita Vishwa Vidhyapeetham', 'Electronics and Instrumentation Engineering', '7.48', '10', '43')
(2474, 'Syracuse University', '4', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2012', '670', '430', '1100', '3.5', '98', 'SNIST', 'BS-EET', '3.4', '4', '0')
(2475, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '540', '1310', '4', '102', 'Rajiv Gandhi Technical University', 'Computer Science', '7.3', '100', '0')
(2476, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '710', '410', '1120', '4', 'None', 'University of Mumbai', 'Computer Engineering', '6.4', '100', '0')
(2477, 'Syracuse University', '4', 'Admit', 'MS', 'Management Information System', 'Fall ', '2014', '93', '49', '142', '3.5', '113', 'University of Mumbai', 'IT', '6.6', '100', '8')
(2478, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical and computer science', 'Fall ', '2007', '800', '530', '1330', '3.5', '102', 'Manipal Institue of Technology', 'Electrical and Electronics', '7.58', '10', '0')
(2479, 'Syracuse University', '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2012', '770', '500', '1270', '4', '109', 'VIT', 'Information Technology', '8.52', '10', '0')
(2480, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '147', '308', '3.5', '109', 'VIT University', 'ECE', '8.45', '10', '0')
(2481, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '46', '27', '73', '6', 'None', 'GGSIPU', 'computer science', '8.4', '10', '0')
(2482, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '155', '152', '307', '3', '105', 'Reva Institute of Technology', 'Computer Science', '7.340000000000001', '100', '0')
(2483, 'Syracuse University', '4', 'Admit', 'MS', 'Engineering Management', 'Spring ', '2016', '156', '154', '310', '3.5', '106', 'SRM', 'MBA', '8.9', '10', '0')
(2484, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '150', '311', '3', '91', 'VIT', 'Computer Science', '8.72', '10', '0')
(2485, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '161', '148', '309', '3.5', '91', 'MVSR', 'CSE', '8', '100', '0')
(2486, 'Syracuse University', '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2014', '790', '560', '1350', '3.5', '104', 'Syracuse University', 'Information Management', '3.8', '4', '0')
(2487, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '500', '1300', '4', '97', 'Yeditepe University', 'Electrical-Electronics Engineering', '3.46', '4', '0')
(2488, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '49', '30', '79', '5', '100', 'Pune University', 'Mechanical', '5.8', '100', '0')
(2489, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'Bangalore Institute of Technology', 'Information Science', '7.88', '100', '0')
(2490, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '800', '730', '1530', '4.5', '118', 'Jaypee Institute of Information Technology', 'Information Technology', '8', '10', '0')
(2491, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '700', '270', '970', '3', '78', 'D J Sanghvi', 'Electronics', '7', '100', '0')
(2492, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '770', '490', '1260', '3.5', '95', 'RNSIT', 'Electronics and Comm', '7.7', '100', '0')
(2493, 'Syracuse University', '4', 'Admit', 'MS', 'Engineering Management', 'Spring ', '2013', '156', '150', '306', '3', '91', 'JSS Noida', 'EC', '6', '100', '0')
(2494, 'Syracuse University', '4', 'Admit', 'MS', 'Forensic Science', 'Fall', 'None', '153', '142', '295', '3.5', 'None', 'Nirma Institute of Technology', 'Pharmacy', '8.2', '10', '0')
(2495, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '164', '148', '312', 'None', '110', 'University of Mumbai', 'Information Technology', '7.640000000000001', '100', '0')
(2496, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '162', '156', '318', '3.5', '114', 'Sikkim Manipal Institute of Technology', 'electronics and communication', '8.15', '10', '0')
(2497, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '163', '156', '319', '4', '114', 'K J Somaiya College of Engiineering', 'Computer Engineering', '6.352', '100', '0')
(2498, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '770', '540', '1310', '3', 'None', 'None', '0', '0', '0', '0')
(2499, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '780', '660', '1440', '4', '287', 'MU', 'Computer engg', '6.1', '100', '0')
(2500, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '800', '600', '1400', '3.5', '106', 'University of Mumbai', 'Information Technology', '6.8', '100', '0')
(2501, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2011', '740', '400', '1140', '4', '106', 'VTU', 'e&c;', '0', '0', '0')
(2502, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '145', '306', '3', '92', 'Sreenidhi Institute of Science & Technology', 'ECM', '8.1', '100', '0')
(2503, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', 'None', 'None', '0', '3.5', '109', 'None', '0', '0', '0', '0')
(2504, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '152', '146', '298', 'None', '100', 'MU', 'I.T', '7.311', '100', '0')
(2505, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '680', '600', '1280', '3.5', '97', 'MU', 'I.T', '6.6', '100', '0')
(2506, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '161', '147', '308', '3.5', '113', 'MSRIT', 'Information Science', '9.31', '10', '24')
(2507, 'Syracuse University', '4', 'Admit', 'MS', 'Electronics & Communication', 'Fall ', '2012', '800', '570', '1370', '3.5', '108', 'Gujarat Technological University', 'Electronics and Communication', '7.7', '10', '0')
(2508, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '157', '157', '314', '4', '113', 'PICT', 'I.T.', '6', '100', '0')
(2509, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '510', '1300', '3', '91', 'K J Somaiya College of Engiineering', 'Electronics & Telecom', '6.1', '100', '0')
(2510, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '162', '150', '312', '4', '102', 'SRM', 'IT', '7.95', '10', '0')
(2511, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '430', '1210', '4', '105', 'VTU', 'CS', '7.5200000000000005', '100', '0')
(2512, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '770', '640', '1410', '5.5', '283', 'NIT Calicut', 'ECE', '9.2', '10', '0')
(2513, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '161', '158', '319', '4', '107', 'MU', 'Computer Engg', '3.14', '4', '0')
(2514, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '159', '144', '303', '3.5', '100', 'MU', 'Information Technology', '6.94', '100', '0')
(2515, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '157', '154', '311', '3', '86', 'Kakatiya University', 'Computer Science and Engineering', '7.7', '100', '0')
(2516, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '800', '590', '1390', '3.5', '105', 'Shah And anchor Kutchhi Engineering College', 'Computer', '6.95', '100', '0')
(2517, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '800', '600', '1400', '3.5', '108', 'University of Pune', 'Computer Science', '7.1', '100', '0')
(2518, 'Syracuse University', '4', 'Admit', 'MS', 'CS MIS', 'Fall ', '2013', '161', '152', '313', '3.5', '97', 'MU', 'Electrical & Electronics', '6.4', '100', '0')
(2519, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '157', '150', '307', '3', '95', 'Amity University', 'CSE', '8.35', '10', '0')
(2520, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '47', '37', '84', '5.5', '117', 'Amrita School of Engineering', 'ece', '8.1', '10', '0')
(2521, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '158', '150', '308', '4', '101', 'VTU', 'Electronics & Communication', '6.95', '100', '0')
(2522, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '160', '152', '312', '3', '108', 'NIT-Calicut', 'Computer Science', '7.93', '10', '0')
(2523, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '154', '314', '2.5', '91', 'SSN College of Engineering', 'IT', '7.92', '100', '0')
(2524, 'Syracuse University', '4', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Spring ', '2015', '159', '149', '308', '3', '95', 'Vaish College of Engineering', 'IT', '7.31', '100', '30')
(2525, 'Syracuse University', '4', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2012', '750', '510', '1260', '3.5', '116', 'VIT Mumbai University', 'EXTC', '6.3', '100', '0')
(2526, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'Pune University', 'Engineering(I.T)', '0', '0', '0')
(2527, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '156', '152', '308', '3', '100', 'MU', 'Computer Engineering', '0', '100', '0')
(2528, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '460', '1260', '3.5', 'None', 'MU', 'Computer Engineering', '7.212000000000001', '100', '0')
(2529, 'Syracuse University', '4', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2009', '800', '670', '1470', '5', '112', 'VTU', 'ECE', '68', '10', '0')
(2530, 'Syracuse University', '4', 'Admit', 'MS', 'Business Analytics and Project Management', 'Fall ', '2015', '157', '145', '302', '3', '87', 'Banasthali University', 'Computer Science', '7.9', '100', '88')
(2531, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '700', '570', '1270', '3.5', '107', 'PICT', 'Computer Engineering', '5.8', '100', '0')
(2532, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '167', '150', '317', '2.5', '96', 'BITS Pilani', 'Computer science', '7.8', '10', '0')
(2533, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '760', '640', '1400', '3', '98', 'Bharati Vidyapeeth', 'Comp Science', '5.4', '100', '0')
(2534, 'Syracuse University', '4', 'Admit', 'MS', 'Civil Engineering', 'Spring ', '2013', '156', '136', '292', '3', '96', 'Sarvajanik College of Engineering & Technology', 'civil engineering', '7.5', '10', '0')
(2535, 'Syracuse University', '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2014', '168', '156', '324', '3.5', '110', 'VESIT', 'Electronics and Telecommunication', '7.08', '100', '0')
(2536, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '580', '1340', '4.5', '105', 'Sardar Patel University', 'Computer Science', '7.7', '100', '0')
(2537, 'Syracuse University', '4', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(2538, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2011', '800', '550', '1350', '3.5', '102', 'VTU', 'CSE', '8.6', '100', '0')
(2539, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '790', '490', '1280', '4', '102', 'BMSCE', 'Telecommunication', '0', '0', '0')
(2540, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '710', '630', '1340', '3.5', '116', 'MU', 'Computer Engineering', '5.7', '100', '0')
(2541, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '170', '155', '325', '3.5', '109', 'Maharaja Surajmal Institute of Technology', 'Information Technology', '7.9', '100', '0')
(2542, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '152', '312', '3.5', '109', 'Gujarat Technological University', 'Computer Science', '7.8', '10', '0')
(2543, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '160', '323', '4.5', '112', 'UPTU', 'computer science', '8.08', '100', '0')
(2544, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '149', '314', '4', '114', 'Rajiv Gandhi Institute Of Technology', '0', '7.2', '100', '0')
(2545, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '151', '144', '295', '3', '102', 'MU', 'CS', '6.311', '100', '0')
(2546, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '730', '440', '1170', 'None', 'None', 'Valliammai Engineering College', 'Computers', '7.9', '100', '0')
(2547, 'Syracuse University', '4', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '165', '152', '317', '3', '112', 'BIT Mesra', 'Civil Engineering', '7.1', '10', '0')
(2548, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '420', '1200', '4', '110', 'Sinhgad College of Engineering', 'IT', '6.004', '100', '0')
(2549, 'Syracuse University', '4', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2013', '155', '155', '310', '3', 'None', 'Pune University', 'Civil Engineering', '5.4', '100', '0')
(2550, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2008', '800', '350', '1150', '2.5', '86', 'Koneru Lakshmaiah College of Engineering', 'Information Science And Technologyu', '8.92', '100', '0')
(2551, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '163', '155', '318', '3', '105', 'University of Pune', 'Computer Science', '8', '10', '43')
(2552, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '154', '162', '316', '3.5', '106', 'Sinhgad College of Engineering', 'IT', '6.3', '100', '0')
(2553, 'Syracuse University', '4', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '155', '145', '300', '3', '90', 'None', 'Mechanical Engineering', '7', '100', '0')
(2554, 'Syracuse University', '4', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(2555, 'Syracuse University', '4', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2014', '154', '149', '303', '3', '7', 'None', 'I.T', '6.7', '100', '0')
(2556, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '161', '148', '309', '3.5', '98', 'Anna University', 'ECE', '7.85', '10', '42')
(2557, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '161', '154', '315', '3.5', '101', 'Sardar Patel College of Engineering', 'Computers', '6.05', '100', '0')
(2558, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '450', '1220', '3', '95', 'MU', 'Computer', '7', '100', '0')
(2559, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '410', '1210', '3.5', '91', 'Rajiv Gandhi Institute Of Technology', 'COMPUTER SCIENCE', '6.3', '100', '0')
(2560, 'Syracuse University', '4', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2014', '159', '141', '300', '3', '90', 'Acharya Nagarjuna University', 'Electronics and communication', '7.1', '100', '0')
(2561, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Fall', 'None', '158', '142', '300', '3', '96', 'VTU', 'EC', '7.5', '100', '0')
(2562, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '147', '310', '3.5', '106', 'Sinhgad College of Engineering', 'Computer', '6.714', '100', '0')
(2563, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '750', '570', '1320', '3', '112', 'Galgotias College of Engineering & Technology(Uttar Pradesh Technical University)', 'Information Technology', '7', '100', '0')
(2564, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '157', '148', '305', '4', '96', 'Arya Institute of Engg and Tech', 'Computer Science', '7.7700000000000005', '100', '0')
(2565, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '730', '500', '1230', '3.5', '98', 'MU', 'electronics', '6.973999999999999', '100', '0')
(2566, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '730', '600', '1330', '3.5', '106', 'University of Mumbai', 'IT', '6.25', '100', '0')
(2567, 'Syracuse University', '4', 'Admit', 'MS', 'Management Information System', 'Fall ', '2013', '156', '151', '307', 'None', '94', 'Pune University', 'Computer', '0', '0', '0')
(2568, 'Syracuse University', '4', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2011', '770', '520', '1290', '3.5', '106', 'Vishwakarma Institute of Technology', 'E&Tc;', '8.9', '10', '0')
(2569, 'Syracuse University', '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2013', '750', '600', '1350', '3', '104', 'Lokmanya Tilak College of Engineering', 'Computer', '3.57', '4', '0')
(2570, 'Syracuse University', '4', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2009', '800', '640', '1440', 'None', '101', 'MNIT', 'Electrical Engineering', '7.1', '10', '0')
(2571, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '158', '152', '310', '4.5', '109', 'VTU', 'Telecomm', '6.6', '100', '0')
(2572, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '147', '136', '283', '3.5', '107', 'Dayananda Sagar College of Engineering', 'Electronics and communication', '6.5', '100', '0')
(2573, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '310', '1080', '2.5', '93', 'Amity University', 'Computer Science and Engineering', '7.5', '10', '0')
(2574, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '144', '302', '3.5', '102', 'None', '0', '7.75', '100', '0')
(2575, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '157', '154', '311', '3', '105', 'MU', 'Computer', '6', '100', '0')
(2576, 'Syracuse University', '4', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '162', '154', '316', '3', '99', 'GCET', 'Mechanical', '8.89', '10', '0')
(2577, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '168', '155', '323', '5', '115', 'MU', 'Computer Engineering', '7.65', '100', '0')
(2578, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '162', '152', '314', '3', '83', 'VIT', 'ECE', '8.21', '10', '0')
(2579, 'Syracuse University', '4', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '158', '162', '320', '4', '109', 'SASTRA', 'Bioinformatics', '8.68', '10', '32')
(2580, 'Syracuse University', '4', 'Admit', 'MS', 'Marketing Communication', 'Fall ', '2012', '760', '560', '1320', '3.5', '106', 'D J Sanghvi', 'Electronics', '6.07', '100', '0')
(2581, 'Syracuse University', '4', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '152', '146', '298', '3.5', '6', 'VTU', 'electronic and communication', '8.1', '100', '0')
(2582, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '800', '540', '1340', '3', '105', 'K J Somaiya College of Engiineering', 'Information Technology', '7.3', '100', '0')
(2583, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '139', '300', '3', '95', 'Guru Gobind Singh Indraprashta University', 'Information Technology', '7.5280000000000005', '100', '0')
(2584, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '156', '150', '306', '3.5', '116', 'CEG', 'Information Technology', '8.15', '10', '0')
(2585, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '159', '154', '313', '4', '111', "St Joseph's College of Engineering", 'Computer Science and Engineering', '8.6', '100', '0')
(2586, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '670', '540', '1210', '3', '103', 'D J Sanghvi', 'IT', '5.5', '100', '0')
(2587, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '710', '440', '1150', '3', '105', 'None', '0', '0', '0', '0')
(2588, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '151', '152', '303', '4', '111', 'B M S College of Engineering', 'Telecommunication engineering', '7.140000000000001', '100', '0')
(2589, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '152', '157', '309', '4', '107', 'Bharathiar University', 'Computer Science', '6.1', '100', '0')
(2590, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '161', '154', '315', '4', '106', 'SRM', 'Computer Science Engineering', '8.95', '10', '0')
(2591, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '640', '550', '1190', '3', '95', 'Anna University', 'CS', '7', '10', '0')
(2592, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '163', '145', '308', '3', '92', 'VTU', 'Electronics and Communication', '7.337999999999999', '100', '0')
(2593, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '157', '156', '313', '4.5', 'None', 'Nirma Institute of Technology', 'electronics and communications', '8.12', '10', '0')
(2594, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '163', '146', '309', 'None', '99', 'Global Academy Of Technology', 'Electronics and Communication', '7.2829999999999995', '100', '0')
(2595, 'Syracuse University', '4', 'Admit', 'MS', 'Management Information System', 'Fall ', '2014', '153', '152', '305', '4', '104', 'Nagpur University', 'BE in IT', '6.1', '100', '70')
(2596, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '153', '311', '3.5', '107', 'BIT Mesra', 'Computer Science Engineering', '7.42', '10', '0')
(2597, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '158', '144', '302', '3', '97', 'Valliammai Engineering College', 'Computer Science and Engineering', '8.14', '100', '0')
(2598, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '157', '318', '3.5', '104', 'GGSIPU', 'CSE', '7.328', '100', '0')
(2599, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '167', '154', '321', '3.5', '107', 'COEP', 'Computer Engineering', '7.78', '10', '0')
(2600, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '154', '314', '3', '107', 'Gujarat Technological University', 'Computer Engineering', '8.161', '100', '0')
(2601, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '720', '540', '1260', '3.5', '107', 'Fr.CRCE Bandra', 'CS', '0', '0', '0')
(2602, 'Syracuse University', '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2012', '730', '570', '1300', '3.5', '99', 'Pune University', 'Computer', '6', '100', '0')
(2603, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '800', '660', '1460', '3.5', '107', 'NITK Surathkal', 'EEE', '7.17', '10', '0')
(2604, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '144', '305', '3', '81', 'Osmania University', 'Computer Science', '8.456999999999999', '100', '0')
(2605, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '520', '1310', '4', '107', 'PESIT', 'Electronics and communication', '7.726999999999999', '100', '0')
(2606, 'Syracuse University', '4', 'Admit', 'MS', 'Management Information System', 'Fall ', '2015', '161', '152', '313', '4', '106', 'CEG', 'B.Tech Information Technology', '8.01', '10', '29')
(2607, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '680', '1450', '4', '115', 'RAIT', 'Electronics', '6.8420000000000005', '100', '0')
(2608, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '800', '650', '1450', '3', 'None', 'Chaitanya Bharathi Institute of Technology', 'Electronics and Communications', '8.55', '100', '0')
(2609, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '750', '430', '1180', '4', '107', 'Sathyabama University', 'Computer Science Engineering', '7.736', '100', '0')
(2610, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '720', '600', '1320', 'None', '108', 'Anna University', 'IT', '8.1', '100', '0')
(2611, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '156', '152', '308', '3.5', '101', 'Pune University', 'Computer', '5.4', '100', '0')
(2612, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '800', '470', '1270', '4', '109', 'BITS Pilani', 'B.Pharm (Hons.)', '8.71', '10', '0')
(2613, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '157', '150', '307', '3', '108', 'Madras Institute of Technology', 'ECE', '7.8', '10', '43')
(2614, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '730', '510', '1240', '3.5', '104', 'bombay University', 'Computer Science', '6.1', '100', '0')
(2615, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '151', '315', '3.5', '109', 'West Bengal University Of Technology', 'Computer Science and Engineering', '7.86', '10', '31')
(2616, 'Syracuse University', '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2014', '163', '157', '320', '4', '114', 'None', 'BE Computer Science', '6.62', '100', '0')
(2617, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '156', '151', '307', '3', '103', 'University of Mumbai', 'Computer Engg', '6.011', '100', '0')
(2618, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '800', '600', '1400', '4', '110', 'Manipal Institue of Technology', 'Electronics and Communication', '8.49', '10', '0')
(2619, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '159', '321', '4.5', '113', 'NIT Durgapur', 'Information Technology', '7.81', '10', '0')
(2620, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '780', '640', '1420', '4.5', '117', 'MU', 'Computer Engg', '5.9', '100', '0')
(2621, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '157', '146', '303', '3.5', '104', 'University of Mumbai', 'I.T', '6.5', '100', '0')
(2622, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '770', '380', '1150', '3.5', '100', 'Osmania University', 'CSE', '7.9', '100', '0')
(2623, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Spring ', '2012', '800', '560', '1360', '3', '111', 'MNNIT', 'IT', '7.55', '10', '0')
(2624, 'Syracuse University', '4', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '162', '159', '321', '4', '116', 'GGSIPU', 'Mechanical', '7.88', '100', '0')
(2625, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '159', '150', '309', '3', '104', 'MU', 'Computer', '7.12', '100', '0')
(2626, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '340', '1090', '3', '96', 'Jaya Engineering college', 'CSE', '8.8', '100', '0')
(2627, 'Syracuse University', '4', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2011', '800', '570', '1370', '5', '110', 'University of Mumbai', 'Mechanical Engineering', '7.133', '100', '0')
(2628, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '152', '315', '4.5', '109', 'Amity School of Engineering and Technology', 'Computer Science', '8', '10', '58')
(2629, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '161', '157', '318', '3.5', '112', 'Sinhgad College of Engineering', 'MBA', '6.8', '100', '0')
(2630, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '157', '321', '3.5', '104', 'Pune University', 'B.E.(Information Technology)', '6.42', '100', '0')
(2631, 'Syracuse University', '4', 'Admit', 'MS', 'Electronics and Communication', 'Spring ', '2016', '163', '158', '321', '5.5', 'None', 'University of Calicut', 'Electronics and Communication Engineering', '6.5', '100', '54')
(2632, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '780', '340', '1120', '3', '93', 'ITM Gurgaon', 'Computer Science Engineering', '7.2', '100', '0')
(2633, 'Syracuse University', '4', 'Admit', 'MS', 'Management Information System', 'Fall ', '2015', '158', '167', '325', '3', '105', 'Cochin University of Science and Technology', 'Electrical and Electronics Engineering', '6.75', '100', '57')
(2634, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '162', '143', '305', '3', '101', 'VTU', 'Telecommunication Engineering', '6.513', '100', '0')
(2635, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2007', '800', '670', '1470', '4.5', '290', 'VJTI', 'Electronics', '7.109999999999999', '100', '0')
(2636, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '720', '320', '1040', '3', '99', 'Amrita School of Engineering', 'CSE', '7.64', '10', '0')
(2637, 'Syracuse University', '4', 'Admit', 'MS', 'Telecom management', 'Fall ', '2013', '160', '149', '309', '2.5', '107', 'Maharishi Dayanand University', 'Computer Science', '7', '100', '0')
(2638, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '168', '147', '315', '3', '91', 'Gujarat Technological University', 'Computer Engineering', '7.96', '10', '29')
(2639, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '450', '1230', '5', '113', 'Amrita School of Engineering', 'Computer Science', '8.08', '10', '0')
(2640, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '159', '153', '312', '3', '110', 'MU', 'Information Technology', '3.79', '4', '0')
(2641, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '740', '440', '1180', '3', '88', 'Sinhgad College of Engineering', 'Electronics and Telecommunications', '6.213', '100', '0')
(2642, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '159', '155', '314', '4', '108', 'University of Pune', 'Computer Engineering', '6.1', '100', '0')
(2643, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Fall', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(2644, 'Syracuse University', '4', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2012', '780', '470', '1250', '4', '107', 'VIT Pune', 'EnTc', '8.55', '10', '0')
(2645, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '1390', '620', '2010', '770', '104', 'MU', 'Computer Engineering', '6.8', '100', '0')
(2646, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '700', '630', '1330', '4.5', '270', 'VESIT', 'Info Tech', '6.43', '100', '0')
(2647, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '168', '155', '323', '4.5', '101', 'VTU', 'Telecommunication', '7.5', '100', '0')
(2648, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '165', '149', '314', '3', '99', 'NIT Bhopal', 'Computer Science', '3.11', '4', '0')
(2649, 'Syracuse University', '4', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '157', '143', '300', '3', '91', 'Nitte Meenakshi Institute of Technology (Autonomous) / VTU', 'Mechanical Engineering', '8.71', '10', '0')
(2650, 'Syracuse University', '4', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2015', '157', '152', '309', '4', '106', 'MSRIT', 'Mechanical Engineering', '8.92', '10', '33')
(2651, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '570', '1330', '3', '110', 'COEP', 'Computer Science', '6.790000000000001', '100', '0')
(2652, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2012', '750', '500', '1250', '2.5', '98', 'VIT University', 'I.T', '8.2', '10', '0')
(2653, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall', 'None', '161', '150', '311', '3', '98', 'University of Mumbai', 'IT', '6', '100', '0')
(2654, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '163', '155', '318', '4', '112', 'University of Mumbai', 'Information Technology', '5.813000000000001', '100', '0')
(2655, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '800', '540', '1340', '3.5', '107', 'D J Sanghvi', 'Computer', '6.4', '100', '0')
(2656, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2009', '800', '360', '1160', '3', '95', 'Anna University', 'ECE', '7.3', '100', '0')
(2657, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '160', '155', '315', '3', '109', 'VIT', 'ECE', '6.9', '100', '0')
(2658, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '161', '146', '307', '3', 'None', 'Ganpat University', 'Computer', '7.251', '100', '42')
(2659, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '162', '150', '312', '3.5', '105', 'PESIT', 'Computer Science', '7.93', '100', '0')
(2660, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '166', '160', '326', '3.5', '113', 'Manipal Institue of Technology', 'Computer Science & Engineering', '7.14', '10', '0')
(2661, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '156', '151', '307', '4', '115', 'BPUT', 'Electronics and Communication', '8.39', '10', '29')
(2662, 'Syracuse University', '4', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2013', '154', '147', '301', '3', '95', 'VTU', 'Computer Science', '6.4', '100', '0')
(2663, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '600', '1370', '4', '110', 'None', '0', '7.46', '10', '0')
(2664, 'Syracuse University', '4', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '161', '152', '313', '3.5', '107', 'VESIT', 'Computer Engineering', '6.5', '100', '0')
(2665, 'Syracuse University', '4', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2015', '162', '151', '313', '4.5', '106', 'VIT', 'Electronics and Communication', '8.57', '10', '18')
(2666, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'Syracuse University', 'Electrical Engiineering', '3.4', '4', '0')
(2667, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '157', '143', '300', '4', '91', 'MVSR', 'computer science engineering', '7.2299999999999995', '100', '0')
(2668, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '155', '318', '3.5', '106', 'Cochin University of Science and Technology', 'Computer Science and Engineering', '7.279999999999999', '100', '66')
(2669, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '530', '1300', '3', '102', 'GITAM', 'IT', '8.09', '10', '0')
(2670, 'Syracuse University', '4', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2011', '790', '620', '1410', '4.5', '117', 'SASTRA', 'Information & Communication technology', '8.6', '10', '0')
(2671, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '156', '320', '4', '114', 'Manipal Institue of Technology', 'Computer Science', '8.09', '10', '0')
(2672, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '150', '313', '3', '103', 'NIT Surathkal', 'Computer Science', '7.1', '10', '0')
(2673, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '760', '570', '1330', '4', '111', 'University of Pune', 'Computer Engineering', '5.9', '100', '0')
(2674, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '155', '148', '303', '4', '111', 'JSSATE VTU', 'Instrumentation Tech', '6.5', '100', '0')
(2675, 'Syracuse University', '4', 'Admit', 'MS', 'software engineering', 'Fall ', '2014', '162', '150', '312', '4', '107', 'SSN College of Engineering', 'Information Technology', '7.8', '10', '0')
(2676, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '157', '143', '300', '3.5', '110', 'SCSVMV University', 'Computer Science', '8.06', '10', '0')
(2677, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '161', '151', '312', '3.5', '107', 'Shah And anchor Kutchhi Engineering College', 'IT', '6.029999999999999', '100', '0')
(2678, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '560', '1360', 'None', 'None', 'NIT-Bhopal', 'Information Technology', '8.49', '10', '0')
(2679, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '150', '310', '3', '114', 'University of Pune', 'Conputer Science', '5.9', '100', '15')
(2680, 'Syracuse University', '4', 'Admit', 'MS', 'Information Science', 'Fall ', '2012', '770', '620', '1390', '3', '109', 'Kalinga Institute of Industrial Technology', 'Electronics &Telecom;', '7.1', '10', '0')
(2681, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '740', '320', '1060', '2.5', '86', 'Anna University', 'CSE', '7.5', '100', '0')
(2682, 'Syracuse University', '4', 'Admit', 'MS', 'MIS-management related courses', 'Fall ', '2012', '640', '620', '1260', '3.5', '105', 'None', '0', '0', '0', '0')
(2683, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '162', '150', '312', '3', '99', 'Atharva College', 'ELECTRONICS', '7', '100', '0')
(2684, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '164', '159', '323', '5.5', '117', 'Manipal Institue of Technology', 'E&C;', '8.2', '10', '0')
(2685, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '520', '1310', '3', '100', 'IIIT Allahabad', 'IT', '7.5', '10', '0')
(2686, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '165', '149', '314', '3', '101', 'VTU', 'Computer Science', '7.5', '100', '0')
(2687, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '340', '1100', '3', '80', 'Faculty of technology & Engg. MSU', 'Computer Science & Enggineering', '3.55', '4', '0')
(2688, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '760', '620', '1380', '3', '96', 'Panjab University', 'Computer Science', '8.067', '100', '0')
(2689, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '152', '313', '4', '105', 'VTU', 'Computer Sciece and Engineering', '7.1', '100', '0')
(2690, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '168', '153', '321', '5', '106', 'None', '0', '0', '0', '0')
(2691, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '690', '660', '1350', '3', '102', 'Sri Venkateswara College of Engineering', 'Computer science Engg', '8.3', '100', '0')
(2692, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '165', '152', '317', '4', '104', 'None', '0', '7.2', '100', '0')
(2693, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '149', '312', '3.5', '111', 'JNTU', 'CSE', '7.83', '100', '12')
(2694, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '161', '322', '3.5', '108', 'C.S.V.T.U.', 'Computer Science and Engg', '8.56', '10', '0')
(2695, 'Syracuse University', '4', 'Admit', 'MS', 'Management Information System', 'Fall ', '2014', '163', '153', '316', '4.5', '108', 'H B T I Kanpur India', 'Food Tech', '0.73', '100', '0')
(2696, 'Syracuse University', '4', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'Nirma Institute of Technology', '0', '0', '0', '0')
(2697, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '780', '660', '1440', '4', '283', 'MU', 'Computers', '6.2', '100', '0')
(2698, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '164', '152', '316', '4', '115', 'VIT Pune', 'e&tc;', '7.5', '10', '0')
(2699, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '144', '304', '3.5', '113', 'CITM Faridabad', 'CSE', '6.4', '100', '0')
(2700, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '158', '146', '304', '3', '96', 'Don Bosco Institute of Technology', 'IT', '6.7', '100', '24')
(2701, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2006', '750', '560', '1310', '3.5', '260', 'SVIT Vasad (Gujarat University)', 'IT', '6.3', '100', '0')
(2702, 'Syracuse University', '4', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2008', '800', '640', '1440', '5', 'None', 'SVNIT Surat', 'Electronics', '7.6', '100', '0')
(2703, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '151', '148', '299', '3', '93', 'S.S.P.M college of Engineering-mumbai university', 'E&TC;', '0', '0', '0')
(2704, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2011', '700', '450', '1150', '3', '99', 'Walchand College Of Engineering', 'Electronics Engineering', '6.6', '100', '0')
(2705, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '162', '153', '315', '3.5', '100', 'MU', 'Computer Engineering', '6.044', '100', '0')
(2706, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '790', '560', '1350', '3', '110', 'Rajiv Gandhi Institute Of Technology', 'Computer Science', '7.1', '100', '0')
(2707, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '164', '157', '321', '4.5', '109', 'Amrita Vishwa Vidhyapeetham', 'Information Technology', '8.8', '10', '24')
(2708, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '145', '304', '3', '100', 'MU', 'Computer Engineering', '7', '100', '0')
(2709, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '800', '630', '1430', '5', '277', 'MANIT', 'Electrical', '7.6', '100', '0')
(2710, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2', '159', '149', '308', 'None', '109', 'Rajiv Gandhi Institute Of Technology', 'BE EXTC', '6.3', '100', '0')
(2711, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '156', '152', '308', '3', '104', 'University of Pune', 'Information Technology', '8.74', '10', '0')
(2712, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '155', '146', '301', '3', '101', 'SASTRA', 'ECE', '7', '10', '0')
(2713, 'Syracuse University', '4', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2012', '156', '149', '305', '3.5', '99', 'SASTRA', 'Information Technology', '7.47', '10', '0')
(2714, 'Syracuse University', '4', 'Admit', 'MS', 'Management Information System', 'Fall ', '2015', '49', '26', '75', '5', '99', 'Amrita Vishwa Vidhyapeetham', 'EEE', '0.8460000000000001', '100', '0')
(2715, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '720', '530', '1250', '3.5', '104', 'Pune University', 'Computers', '6.227', '100', '0')
(2716, 'Syracuse University', '4', 'Admit', 'MS', 'Management Information System', 'Fall ', '2015', '167', '154', '321', '4', '112', 'IIT Kharagpur', 'Architecture', '8.05', '10', '0')
(2717, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '800', '590', '1390', '2.5', '107', 'TSEC', 'Computer Engineering', '6.1', '100', '0')
(2718, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '141', '301', '4', '98', 'Jaya Engineering College', 'Computer Science and Engineering', '8', '100', '29')
(2719, 'Syracuse University', '4', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '790', '410', '1200', '4', '107', 'Nirma Institute of Technology', 'mechanical engg', '8.51', '10', '0')
(2720, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '162', '152', '314', '3', '104', 'University of Mumbai', 'Electronics and Telecommunication', '5.88', '100', '0')
(2721, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2007', '710', '620', '1330', '4.5', '283', 'Maharishi Dayanand University', 'IT', '8', '100', '0')
(2722, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '50', '31', '81', '3.5', '100', 'None', '0', '3.14', '4', '0')
(2723, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '160', '152', '312', '3.5', '112', 'Pune University', 'Information Technology', '6.5', '100', '0')
(2724, 'Syracuse University', '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2013', '720', '650', '1370', '4', '113', 'MU', 'Chemical', '6', '100', '0')
(2725, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '161', '155', '316', 'None', '113', 'MU', 'Computer Engineering', '6', '100', '0')
(2726, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '148', '142', '290', '3', '86', 'GITAM', 'cse', '8.15', '10', '0')
(2727, 'Syracuse University', '4', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2006', '780', '680', '1460', '4.5', '290', 'MU', 'Computer Engg', '5.9', '100', '0')
(2728, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '142', '159', '301', '3.5', '98', 'SRM', 'ECE', '9.5', '10', '0')
(2729, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2012', '760', '720', '1480', '4', '102', 'University of Mumbai', 'Computer', '6.837999999999999', '100', '0')
(2730, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '161', '153', '314', '3.5', '117', 'Pune University', 'Computer Science', '5.5', '100', '0')
(2731, 'Syracuse University', '4', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '159', '143', '302', '3.5', '85', 'None', 'ECE', '7.9', '100', '0')
(2732, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '156', '151', '307', '3.5', '106', 'MU', 'IT', '6.9', '100', '0')
(2733, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '640', '600', '1240', 'None', '107', 'Pune University', 'Computer', '6.1', '100', '0')
(2734, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '600', '1400', '4.5', '112', 'SGGS institute of engg nanded', 'Electronics and Telecommunications', '8.53', '10', '0')
(2735, 'Syracuse University', '4', 'Admit', 'MS', 'Management Information System', 'Fall ', '2014', '162', '152', '314', '3.5', '106', 'Punjab Technical University', 'Computer Science', '7.81', '100', '0')
(2736, 'Syracuse University', '4', 'Admit', 'MS', 'Management Information System', 'Fall ', '2014', '161', '158', '319', '3', '101', 'MG University', 'ECE', '6.94', '100', '0')
(2737, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '520', '1320', '3.5', '94', 'Sona College', 'Information Technology', '8', '100', '0')
(2738, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '168', '158', '326', '4', '119', 'University of Pune', 'InformationTechnology', '6.2', '100', '0')
(2739, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2012', '730', '410', '1140', '3', '109', 'Guru Jambheshwar University of Science & Technology', 'ECE', '8.67', '10', '0')
(2740, 'Syracuse University', '4', 'Admit', 'MS', 'Management Information System', 'Fall ', '2013', '158', '140', '298', '3', '92', 'University of Pune', '0', '7.62', '100', '0')
(2741, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '770', '460', '1230', '3', '110', 'PESIT', 'Telecommunication', '6.790000000000001', '100', '0')
(2742, 'Syracuse University', '4', 'Admit', 'MS', 'CS / MSIS / ITM', 'Fall ', '2011', '690', '610', '1300', '3.5', '94', 'Priyadarshini College of Engineering', 'Comp.Tech', '6.296', '100', '0')
(2743, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '159', '151', '310', '3', '103', 'PESIT', 'C.S', '6.9', '100', '0')
(2744, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '162', '147', '309', '3.5', '97', 'Vasavi College of Engineering', 'Computer Science', '9.1', '100', '0')
(2745, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '156', '145', '301', '3', '104', 'BMSCE', 'Computer Science', '9.3', '10', '0')
(2746, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '144', '307', '3.5', '98', 'Nagarjuna University', 'ECE', '8.55', '10', '0')
(2747, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '156', '152', '308', '3.5', '105', 'VTU', 'EE', '7.8', '100', '0')
(2748, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '147', '307', '3.5', '104', 'JNTU', 'CSE', '7.95', '100', '0')
(2749, 'Syracuse University', '4', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '740', '480', '1220', '3', '100', 'University of Mumbai', 'Electronics and Telecommunication', '6.3', '100', '0')
(2750, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '166', '160', '326', '4', '114', 'Pondicherry Engineering College', 'Computer Science', '8.35', '10', '0')
(2751, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '162', '148', '310', '3', '108', 'VIT University', 'ECE', '8.15', '10', '0')
(2752, 'Syracuse University', '4', 'Admit', 'MS', 'Biotechnology', 'Fall ', '2013', '152', '152', '304', '3', '101', 'Anna University', 'Biotechnology', '8.5', '10', '0')
(2753, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '760', '520', '1280', '3.5', '113', 'JNTU', 'Computer Science', '6.7', '100', '0')
(2754, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '156', '147', '303', '3.5', '109', 'VTU', 'CS & E', '8.1', '100', '0')
(2755, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '165', '156', '321', '4', '112', 'MU', 'Electronics and Telecommunication Engineering', '5.99', '100', '0')
(2756, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '151', '315', '4', '105', 'VSS Univ of Technology', 'Computer Science', '8.05', '10', '0')
(2757, 'Syracuse University', '4', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '166', '160', '326', '4', '110', 'IIITDM-Jabalpur', 'Mechanical', '6.9', '10', '4')
(2758, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '157', '145', '302', 'None', '100', 'R V College of Engineering', 'cs', '7.09', '10', '0')
(2759, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '160', '150', '310', '3', '100', 'PICT', 'Computer Science', '3.2', '4', '0')
(2760, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '50', '34', '84', '5.5', '98', 'BESU Shibpur', 'Electrical Engineering', '6.1', '100', '0')
(2761, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Networking', 'Fall ', '2013', '161', '156', '317', '4', '105', 'Kerala University', 'Information Technology', '3.98', '4', '0')
(2762, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2011', '680', '640', '1320', '3', '106', 'None', 'Instrumentation', '7.3', '100', '0')
(2763, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '800', '470', '1270', '4.5', '104', 'K J Somaiya College of Engiineering', 'it', '6.7', '100', '0')
(2764, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '167', '155', '322', '3', '102', 'NIT Calicut', 'Computer Science and Engineering', '7.46', '10', '26')
(2765, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '161', '148', '309', '3', '7', 'GITAM', 'E.C.E', '9', '10', '0')
(2766, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '153', '312', '3', '105', 'BNMIT', 'Information Science and Engineering', '7.4', '100', '0')
(2767, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '163', '150', '313', '4', '99', 'NIT Jalandhar', 'Industrial Engineering', '7.65', '10', '0')
(2768, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2010', '770', '450', '1220', '3', '100', 'VTU', 'Electronics and Communication', '7', '100', '0')
(2769, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '800', '630', '1430', '4.5', '297', 'GITAM', 'Electronics & Communication', '9.023', '100', '0')
(2770, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '730', '550', '1280', '4', '115', 'PESIT', 'Computer Science', '7', '100', '0')
(2771, 'Syracuse University', '4', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(2772, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '163', '156', '319', '3', '105', 'Nagpur University', 'B.E electronics', '6.1', '100', '0')
(2773, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '147', '311', '3', '83', 'Pune University', 'Computer Science', '6.351', '100', '0')
(2774, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '160', '148', '308', '3', '103', 'Medicaps Institute of Science & Technology Indore', 'EE', '7.497', '100', '0')
(2775, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '161', '151', '312', '3', '93', 'ITM Gurgaon', 'CS', '6.5', '100', '0')
(2776, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '157', '148', '305', '4', '101', 'Ramrao Adik Institute of Technology', 'IT', '6.3', '100', '0')
(2777, 'Syracuse University', '4', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2013', '150', '143', '293', 'None', '94', 'Siddaganga Institue of Technology', 'Computer Science', '8.72', '10', '0')
(2778, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2008', '650', '390', '1040', '3', '97', 'Sardar Patel College of Engineering', 'Electronics', '7.123', '100', '0')
(2779, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '540', '1330', '4', '111', 'VTU', 'CSE', '7.4', '100', '0')
(2780, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2008', '750', '520', '1270', '5', '114', 'PESIT', 'CS', '7.6', '100', '0')
(2781, 'Syracuse University', '4', 'Admit', 'MS', 'Mechanical Engineering', 'Spring', 'None', '159', '150', '309', '3', '98', 'None', '0', '7.3', '100', '0')
(2782, 'Syracuse University', '4', 'Admit', 'MS', 'MIS/MS CS', 'Fall ', '2013', '161', '160', '321', '4', '118', 'CEG', 'IT', '7.6', '10', '0')
(2783, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '770', '710', '1480', '4', '110', 'MU', 'Electronics', '6.3', '100', '0')
(2784, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '160', '154', '314', '4', '117', 'MU', 'Information Technology', '6.3', '100', '0')
(2785, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '150', '309', '3.5', '93', 'Anna University', 'Computer Science', '8.2', '10', '0')
(2786, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '760', '480', '1240', '3.5', '102', 'JNTU', 'Computer Science and Engineering', '7.3950000000000005', '100', '0')
(2787, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '730', '430', '1160', '3', '92', 'rmdec/anna univ', 'ece', '7.5', '100', '0')
(2788, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '740', '400', '1140', '3', '97', 'MSRIT', 'IT', '6.8', '100', '0')
(2789, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '163', '159', '322', '4', '111', 'D J Sanghvi', 'Computer Science', '6.5', '100', '0')
(2790, 'Syracuse University', '4', 'Admit', 'MS', 'Management Information System', 'Fall ', '2014', '164', '153', '317', '4', '105', 'MU', 'Computer Engineering', '6.8', '100', '0')
(2791, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '157', '150', '307', '3', '98', 'SRM', 'EEE', '8.324', '10', '21')
(2792, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '800', '460', '1260', '4', '247', 'Sardar Patel College of Engineering', 'Information Technology', '6.786', '100', '0')
(2793, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '520', '1320', '3.5', '100', 'Pune University', 'I.T.', '6.709999999999999', '100', '0')
(2794, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '154', '316', '3.5', 'None', 'JNTU', 'Information Technology', '7.411', '100', '0')
(2795, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '161', '159', '320', '3.5', '110', 'University of Pune', 'Electronics', '6.4', '100', '0')
(2796, 'Syracuse University', '4', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2012', '163', '147', '310', '3.5', '106', 'U.P.T.U.', 'ECE', '7.33', '100', '0')
(2797, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '760', '520', '1280', '4', '102', 'MU', 'Information Technology', '6.2', '100', '0')
(2798, 'Syracuse University', '4', 'Admit', 'MS', 'Mechanical Engineering', 'Spring ', '2013', '163', '149', '312', '3.5', 'None', 'NIT Durgapur', 'Mechanical Engineering', '7.93', '10', '0')
(2799, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '540', '1340', '3', '110', 'UPTU', 'Computer Science and Engineering', '7', '100', '0')
(2800, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '150', '147', '297', '3.5', '110', 'PICT', 'Computer Engineering', '6.3', '100', '0')
(2801, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '800', '690', '1490', '3.5', '111', 'University of Mumbai', 'Electronics', '5.7', '100', '0')
(2802, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '162', '149', '311', '4', '112', 'UPTU', 'Information Technology', '7.51', '100', '0')
(2803, 'Syracuse University', '4', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Spring ', '2013', '163', '155', '318', '3.5', '115', 'Shivaji University', 'Information Technology', '6.5', '100', '0')
(2804, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '800', '500', '1300', '4', '283', 'University of Kerala', 'Electronics & Communication', '7.7', '100', '0')
(2805, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '163', '149', '312', '3', '76', 'VTU', 'Computer Science', '7', '100', '0')
(2806, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '168', '150', '318', '4', '108', 'SSN College of Engineering', 'EEE', '7.4', '100', '0')
(2807, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '800', '590', '1390', '4', '257', 'MU', 'IT', '6.5', '100', '0')
(2808, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '750', '570', '1320', '4', '112', 'PICT', 'Computer Engineering', '3.63', '4', '0')
(2809, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '570', '1320', '4', '112', 'PICT', 'CS', '3.63', '4', '0')
(2810, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '620', '1390', '4', '98', 'D J Sanghvi', 'IT', '6.6579999999999995', '100', '0')
(2811, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '170', '160', '330', '4', '112', 'Dr MGR College', 'Computer Science', '8.4', '10', '0')
(2812, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '790', '550', '1340', '3', '106', 'Punjabi University', 'University college of Engineering', '6.88', '100', '0')
(2813, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '148', '311', 'None', 'None', 'Manipal Institue of Technology', 'Computer Science and Engineering', '7.72', '10', '0')
(2814, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '147', '311', '3', '98', 'DSCE', 'CS', '7.194', '100', '0')
(2815, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '780', '550', '1330', '3', '101', 'Nagpur University', 'Computer Science', '7.356', '100', '0')
(2816, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2013', '157', '142', '299', '3.5', '88', 'NIT Kurukshetra', 'Electronics and Communication', '8.039', '10', '0')
(2817, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '155', '316', '3.5', '106', 'Punjab Technical University', 'Computer Science', '6.473000000000001', '100', '84')
(2818, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '740', '540', '1280', '3', '104', 'MU', 'IT', '7.1', '100', '0')
(2819, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '150', '313', '3', '92', 'VTU', 'ISE', '7.5', '100', '0')
(2820, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '168', '155', '323', '3.5', '109', 'SASTRA', 'CSE', '8.4', '10', '0')
(2821, 'Syracuse University', '4', 'Admit', 'MS', 'CS / MIS', 'Fall ', '2013', '163', '152', '315', 'None', '102', 'Amity University', 'CS', '7.07', '10', '0')
(2822, 'Syracuse University', '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '650', '630', '1280', '4', '112', 'univeristy of mumbai', 'information technology', '5.7', '100', '0')
(2823, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '164', '153', '317', '3', '102', 'JNTU', 'ECE', '7.4', '100', '0')
(2824, 'Syracuse University', '4', 'Admit', 'MS', 'Telecom management', 'Fall ', '2015', '157', '150', '307', '4', '107', 'GITAM', 'Electronics and Communications Engineering', '8.73', '10', '0')
(2825, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '720', '660', '1380', '3.5', '111', 'University of Mumbai', 'computers', '5.902', '100', '0')
(2826, 'Syracuse University', '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2012', '730', '640', '1370', '3.5', '115', 'BITS Goa', 'Information Systems', '7.4', '10', '0')
(2827, 'Syracuse University', '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2012', '780', '630', '1410', '4.5', '99', 'MU', 'computers', '5.9', '100', '0')
(2828, 'Syracuse University', '4', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2014', '170', '163', '333', '4', '111', 'COEP', 'Electrical Engineering', '8.51', '10', '0')
(2829, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '145', '308', '3', '96', 'Thapar University', 'Computer Science Engineering', '7.99', '10', '18')
(2830, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '167', '154', '321', '4', '114', 'SJCE', 'CS&E;', '8.69', '10', '0')
(2831, 'Syracuse University', '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2013', '164', '150', '314', '3.5', '113', 'VESIT', 'Computers', '3.5', '4', '0')
(2832, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '760', '510', '1270', '4.5', '102', 'Thadomal Shahani Engineering College', 'Computers', '6', '100', '0')
(2833, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '163', '153', '316', '4', '104', 'Shivaji University', 'Computer Science and Engineering', '5.8', '100', '0')
(2834, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '165', '148', '313', '3.5', '313', 'Nagpur University', 'Electronics', '7.45', '100', '0')
(2835, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '50', '34', '84', '5.5', '112', 'Nirma Institute of Technology', 'B.Tech Computer Engg.', '7.54', '10', '0')
(2836, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '750', '350', '1100', '3', '90', 'D J Sanghvi', 'telecomm', '7.1', '100', '0')
(2837, 'Syracuse University', '4', 'Admit', 'MS', 'mba', 'Fall ', '2011', '48', '28', '76', '4.5', '110', 'Anna University', 'ECE', '6.8', '100', '0')
(2838, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '39', '27', '66', '5', '108', 'Anna University', 'Information technology', '6.8', '100', '0')
(2839, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2015', 'None', 'None', '0', 'None', '108', 'RTM Nagpur University', 'Electronics and Telecommunication', '7.561', '100', '52')
(2840, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '780', '590', '1370', '3', '97', 'SDM', 'E&C;', '7.55', '100', '0')
(2841, 'Syracuse University', '4', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '750', '400', '1150', '3', '92', 'Coimbatore Insitute of Technology', 'Electronics and communication Engg', '8.7', '10', '0')
(2842, 'Syracuse University', '4', 'Admit', 'MS', 'Management Information System', 'Fall ', '2014', '155', '154', '309', '3', '105', 'Sri Venkateswara College of Engineering', 'Computer Science and Engineering', '7.24', '10', '6')
(2843, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '162', '148', '310', '3', '96', 'None', '0', '6.7', '100', '0')
(2844, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2008', '720', '580', '1300', 'None', '270', 'Bangalore Institute of Technology', 'Computer Science', '6.922', '100', '0')
(2845, 'Syracuse University', '4', 'Admit', 'MS', 'Management Information System', 'Fall ', '2015', '164', '155', '319', '3.5', '109', 'GGSIPU', 'CS', '7.2', '100', '12')
(2846, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '157', '150', '307', '3', '94', 'GITAM', 'Computer Science', '8.23', '10', '0')
(2847, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '800', '690', '1490', '5', '300', 'ICFAI', 'Electronics and Communication', '9.82', '10', '0')
(2848, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '163', '155', '318', '3', '106', 'MU', 'Information Technology', '6.8', '100', '0')
(2849, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '680', '460', '1140', '4', '97', 'VIT', 'IT', '0', '0', '0')
(2850, 'Syracuse University', '4', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2011', '750', '500', '1250', '3', '101', 'North Gujarat University', 'EC', '3.6', '4', '0')
(2851, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '780', '580', '1360', '4', '104', 'Vishwakarma Institute of Technology', 'Computer Science', '6.45', '100', '0')
(2852, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '165', '153', '318', '4', '111', 'TSEC', 'EXTC', '5.8', '100', '0')
(2853, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '780', '510', '1290', '3.5', '110', 'VESIT', 'Electronics and Telecommunications', '60', '5', '0')
(2854, 'Syracuse University', '4', 'Admit', 'MS', 'environmental engineering', 'Fall ', '2013', '680', '700', '1380', '3.5', '113', 'Anna University', 'Bio Technology', '8.7', '10', '0')
(2855, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall', 'None', '161', '159', '320', 'None', '108', 'Amrita School of Engineering', 'computer science', '7.56', '10', '0')
(2856, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2008', '690', '320', '1010', '3.5', '250', 'Atharva College', 'Electronics and telecommunication', '6.7', '100', '0')
(2857, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '730', '450', '1180', '2', 'None', 'A D Patel Institute Of Technology', 'Electronics & Communication', '8.15', '10', '0')
(2858, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2015', 'None', 'None', '0', 'None', '101', 'UPTU', 'Computer Science', '7.7', '100', '48')
(2859, 'Syracuse University', '4', 'Admit', 'MS', 'Information Security', 'Fall ', '2012', '760', '630', '1390', '3', '98', 'MU', 'Information Technology', '5.5', '100', '0')
(2860, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '156', '152', '308', '4', '104', 'JMIT Radaur(Kurukshetra University)', 'Electronics & Communications', '7.2', '100', '0')
(2861, 'Syracuse University', '4', 'Admit', 'MS', 'CS / MSIS / ITM', 'Fall ', '2013', '165', '157', '322', '4', '110', 'Anna University', 'IT', '8.2', '100', '0')
(2862, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '770', '650', '1420', '4', '112', 'University of Kerala', 'ECE', '7.55', '10', '0')
(2863, 'Syracuse University', '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '740', '450', '1190', 'None', '102', 'K.C college of engineering', 'I.T', '0', '0', '0')
(2864, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2008', '780', '410', '1190', '3', '1210', 'SRKNEC nagpur', 'elect & communication', '6.8', '100', '0')
(2865, 'Syracuse University', '4', 'Admit', 'MS', 'Neurosciences', 'Fall', 'None', '152', '158', '310', '3', '90', 'JIPMER', 'BIOCHEMISTRY', '7', '100', '0')
(2866, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '163', '154', '317', '3.5', '108', 'VJTI', 'Electrical Engineering', '8.4', '10', '0')
(2867, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '800', '490', '1290', '3', '105', 'Medicaps Institute of Science & Technology Indore', 'Computer Science', '7.925', '100', '0')
(2868, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '152', '316', '4', '113', 'RGPV', 'Information Technology', '8', '100', '0')
(2869, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '164', '154', '318', '4', '102', 'University of Mumbai', 'Computers', '6', '100', '18')
(2870, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '770', '570', '1340', '3', '107', 'BBSBEC', 'CSE', '7.609999999999999', '100', '0')
(2871, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2006', '800', '680', '1480', '4.5', '273', 'PICT', 'Computer Science', '6', '100', '0')
(2872, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '160', '148', '308', '3.5', 'None', 'BNMIT', 'Information Science', '6.9', '100', '0')
(2873, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '800', '580', '1380', '3', '101', 'None', '0', '8.5', '100', '0')
(2874, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '160', '153', '313', '3', '8', 'SSN College of Engineering', 'Information Technology', '7.9', '100', '38')
(2875, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2014', '730', '700', '1430', '4', '109', 'VTU', 'cs', '7.26', '100', '0')
(2876, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '155', '142', '297', '3', '82', 'Shivaji University', 'Computer Science', '6.58', '100', '0')
(2877, 'Syracuse University', '4', 'Admit', 'MS', 'None', 'Fall ', '2012', '800', '610', '1410', '4', '107', 'SUA Iran', 'Electrical Engineering', '0', '0', '0')
(2878, 'Syracuse University', '4', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2006', '750', '550', '1300', '4', '275', 'MU', 'EXTC', '6.7', '100', '0')
(2879, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '790', '460', '1250', '3', '107', 'RGPV', 'Electronica and Comm', '7.0280000000000005', '100', '0')
(2880, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '770', '570', '1340', '3.5', '116', 'Pune University', 'Electronics & Telecom', '6.5', '100', '0')
(2881, 'Syracuse University', '4', 'Admit', 'MS', 'Information Science', 'Fall ', '2011', '770', '570', '1340', '3.5', '116', 'Cummins College of Engineering Pune', 'Pune University', '6.442', '100', '0')
(2882, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '800', '660', '1460', '4.5', '293', 'MU', 'Electronics and Telecommunication', '6.8', '100', '0')
(2883, 'Syracuse University', '4', 'Admit', 'MS', 'CS', 'Fall ', '2013', '158', '152', '310', '3', '100', 'MSRIT', 'Information Science', '6.8', '100', '0')
(2884, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '165', '157', '322', '3', '105', 'National Taiwan University', 'Library and Information Science', '3.54', '4', '0')
(2885, 'Syracuse University', '4', 'Admit', 'MS', 'Engineering Management', 'Summer ', '2015', '161', '152', '313', '3.5', '96', 'University of Mumbai', 'Information Technology', '6.6', '100', '29')
(2886, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '730', '490', '1220', '3', '104', 'University of Mumbai', 'Electrical Engg.', '6.7', '100', '0')
(2887, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '149', '313', '3', '96', 'Global Institute of Technology(RTU)', 'IT', '7.140000000000001', '100', '0')
(2888, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '158', '148', '306', '3.5', '104', 'Anna University', 'ECE', '8.69', '10', '0')
(2889, 'Syracuse University', '4', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2013', '151', '141', '292', '3', '83', 'Anna University', 'Electronics & Instrumentation', '8.01', '10', '0')
(2890, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2011', 'None', 'None', '0', 'None', 'None', 'SVCE', 'ECE', '0', '0', '0')
(2891, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '163', '159', '322', '3.5', '113', 'Osmania University', 'CSE', '8.2', '10', '0')
(2892, 'Syracuse University', '4', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '770', '520', '1290', '3', '102', 'MU', 'ELECTRONICS & TELECOMMUNICATION', '6.5', '10', '0')
(2893, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '159', '144', '303', 'None', 'None', 'Pune University', 'CS', '7', '100', '0')
(2894, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '163', '154', '317', '3.5', 'None', 'Guru Gobind Singh Indraprashta University', 'Information Technology', '7.01', '100', '0')
(2895, 'Syracuse University', '4', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '700', '640', '1340', '3.5', '104', 'MU', 'electronics', '5.9', '100', '0')
(2896, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '660', '1440', '4', '111', 'MU', 'Computer Enginnering', '6.9', '100', '0')
(2897, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '800', '570', '1370', '3.5', '100', 'MU', 'Computer Engineering', '0', '0', '0')
(2898, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '153', '315', '3.5', '106', 'Maharishi Dayanand University', 'Computer Engineering', '7.66', '10', '24')
(2899, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '156', '147', '303', '3', '98', 'None', '0', '0', '0', '0')
(2900, 'Syracuse University', '4', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2012', '720', '450', '1170', '3.5', '90', 'University of Mumbai', 'Electronics & Telecommunication', '6.3', '100', '0')
(2901, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '156', '151', '307', '3.5', '106', 'Anna University', 'Information Technology', '7.12', '100', '58')
(2902, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '159', '150', '309', '3.5', '106', 'JNTU', 'ece', '7.1', '100', '0')
(2903, 'Syracuse University', '4', 'Reject', 'MS', 'Information Systems', 'Fall ', '2012', '740', '660', '1400', '3', '90', 'RGTU', 'ECE', '3.6', '4', '0')
(2904, 'Syracuse University', '4', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '750', '580', '1330', '3', '100', 'Bharati Vidyapeeth', 'Electrical', '5.8', '100', '0')
(2905, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '790', '430', '1220', '3.5', 'None', 'COEP', 'Information Technology', '7.94', '10', '0')
(2906, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '530', '1320', '3.5', '102', 'Sinhgad College of Engineering', 'Computer', '5.3', '100', '0')
(2907, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '155', '146', '301', '3.5', '97', 'UPTU', 'Computer Science & Engineering', '6.640000000000001', '100', '9')
(2908, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '156', '153', '309', '4', '105', 'YCCE', 'Computer Technology', '6.4', '100', '28')
(2909, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '49', '24', '73', 'None', 'None', 'Amrita School of Engineering', 'IT', '6.7', '10', '0')
(2910, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2008', '800', '520', '1320', '5', '287', 'D J Sanghvi', 'Computer Engineering', '6.2', '100', '0')
(2911, 'Syracuse University', '4', 'Reject', 'MS', 'CS', 'Fall ', '2015', '159', '146', '305', '3', '91', 'Pune University', 'Computer Engineering', '6.11', '100', '0')
(2912, 'Syracuse University', '4', 'Reject', 'MS', 'electronics', 'Fall ', '2012', '720', '590', '1310', '3', '96', 'MU', 'Electronics', '6.5', '100', '0')
(2913, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '164', '149', '313', '3.5', '109', 'FR. CRIT Vashi', 'Information Technology', '6.88', '100', '0')
(2914, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '156', '150', '306', '4', 'None', 'Anna University', 'Computer Science', '7.3', '100', '0')
(2915, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '710', '310', '1020', 'None', '86', 'University of Mumbai', 'BE Information Technology', '0', '0', '0')
(2916, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '159', '149', '308', '3.5', '97', 'JUET Guna', 'CSE', '7.2', '10', '0')
(2917, 'Syracuse University', '4', 'Reject', 'MS', 'International Affairs.', 'Fall ', '2013', '150', '148', '298', '4', '104', 'None', '0', '7.7', '100', '0')
(2918, 'Syracuse University', '4', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2010', '780', '560', '1340', '4', '104', 'VTU', '0', '6.1', '100', '0')
(2919, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '160', '148', '308', '3.5', '97', 'MU', 'Computers', '5.7', '100', '0')
(2920, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '165', '146', '311', '3.5', '95', 'IET DAVV', 'IT', '3.68', '4', '0')
(2921, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '156', '318', '3.5', '110', 'UPTU', 'Electronics', '6.473999999999999', '100', '42')
(2922, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '157', '143', '300', '3.5', '91', 'MU', 'Computer', '6.089', '100', '0')
(2923, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '157', '319', '5', '116', 'Symbiosis Institute of Technology', 'Computer Science and Information Technology', '2.8', '4', '24')
(2924, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '159', '148', '307', '3', '100', 'VTU', 'Computer Science', '7.01', '100', '70')
(2925, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '152', '314', '3', '100', 'West Bengal University Of Technology', 'Electronics and Communicatiion Engineering', '7.62', '10', '0')
(2926, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '150', '308', '3', '92', 'UPTU', 'IT', '6.3', '100', '42')
(2927, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2011', '740', '490', '1230', '3', '101', 'MU', 'I.T', '6.4', '100', '0')
(2928, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '155', '150', '305', '5.5', '106', 'University of Pune', 'Computer Science', '7.2', '100', '0')
(2929, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '510', '1310', '4', '100', 'VIT Mumbai University', 'Computer Engg', '5.738', '100', '0')
(2930, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '157', '151', '308', '3', '101', 'MU', 'IT', '5.875', '100', '0')
(2931, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '700', '480', '1180', '3', '111', 'MU', 'Computer Engg', '6.7219999999999995', '100', '0')
(2932, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '770', '370', '1140', '3', '87', 'K J Somaiya College of Engiineering', 'Electronics', '6', '100', '0')
(2933, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '490', '1260', '3', '101', 'MU', 'Computer Science', '6.3', '100', '0')
(2934, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '152', '315', '3.5', '97', 'University of Mumbai', 'Computer Engineering', '6.088', '100', '0')
(2935, 'Syracuse University', '4', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2012', '680', '600', '1280', '2.5', '102', 'VTU', 'Electronics & Communication', '6.1', '100', '0')
(2936, 'Syracuse University', '4', 'Reject', 'MS', 'Information Systems', 'Fall ', '2012', '167', '156', '323', '3.5', '104', 'Saboo Siddik Mumbai university', 'Computer Science', '5.7', '100', '0')
(2937, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '160', '155', '315', '3.5', '101', 'Manipal Institue of Technology', 'Information and Communication Technology', '6.94', '10', '0')
(2938, 'Syracuse University', '4', 'Reject', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '159', '146', '305', '3', '86', 'University of Pune', 'Computer Engineering', '6.167', '100', '33')
(2939, 'Syracuse University', '4', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2013', '710', '340', '1050', '3', '93', 'None', 'ECE', '6.3', '100', '0')
(2940, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '760', '530', '1290', '2.5', '98', 'Sri Sairam Engineering College', 'CS', '7.72', '10', '0')
(2941, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2016', '163', '147', '310', '2.5', '95', 'Gujarat Technological University', 'ECE', '7', '100', '77')
(2942, 'Syracuse University', '4', 'Reject', 'MS', 'software engineering', 'Fall ', '2014', '660', '350', '1010', '3', '92', 'University of Mumbai', 'Information Technology', '6.256', '100', '32')
(2943, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '150', '313', '3.5', '110', 'K.I.E.T.', 'Computer Science', '6.3', '100', '0')
(2944, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2007', '750', '530', '1280', '4', '95', 'Manipal Institue of Technology', 'Computer Science', '8.05', '10', '0')
(2945, 'Syracuse University', '4', 'Reject', 'MS', 'Information Assurance', 'Spring ', '2014', '158', '146', '304', '3', '98', 'Jaypee Institute of Information Technology', 'Computer Science', '6.3', '100', '0')
(2946, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2006', '760', '380', '1140', '3.5', '253', 'None', '0', '0', '0', '0')
(2947, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '620', '1420', 'None', '108', 'KIIT', 'Electrical', '7.31', '10', '0')
(2948, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '770', '640', '1410', '4.5', '114', 'MU', 'Computer Engineering', '6.3', '100', '0')
(2949, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2007', '670', '410', '1080', '3', '260', 'RMK Engineering College', 'Computer Science', '7', '100', '0')
(2950, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '770', '530', '1300', '3', '111', 'VIT', 'Information Technology', '6.4239999999999995', '100', '0')
(2951, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '159', '151', '310', '3.5', '98', 'SRKNEC', 'Electronics', '6.1', '100', '0')
(2952, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2015', '154', '146', '300', '3.5', '89', 'NMAMIT Nitte', 'EC', '8.38', '10', '0')
(2953, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '156', '323', '4', '116', 'University of Mumbai', 'Computer Engineering', '6.555', '100', '16')
(2954, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2010', '710', '390', '1100', '3', '105', 'Anna University', 'CSE', '7.4', '100', '0')
(2955, 'Syracuse University', '4', 'Reject', 'MS', 'Electrical and Electronics', 'Fall ', '2011', '710', '590', '1300', '4.5', '111', 'Veer Narmad South Gujarat University', 'Instrumentation & Control', '6.4', '100', '0')
(2956, 'Syracuse University', '4', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2014', '158', '149', '307', '4', '109', 'GITAM', 'ECE', '7.2', '10', '0')
(2957, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '350', '1120', '3', 'None', 'CSVTU', 'Information Technology', '8.65', '10', '0')
(2958, 'Syracuse University', '4', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2015', '164', '146', '310', 'None', 'None', 'None', 'Information Technology', '6.91', '10', '0')
(2959, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '156', '147', '303', '3', '90', 'Vishwakarma Institute of Technology', 'Computer', '6.7', '10', '0')
(2960, 'Syracuse University', '4', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2011', '750', '570', '1320', 'None', '101', 'MIT Pune', 'Electronics and telecommunication', '6.953', '100', '0')
(2961, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '157', '147', '304', '2.5', '87', 'Dharamsinh Desai University', 'Information Technology', '6.4670000000000005', '100', '0')
(2962, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '162', '151', '313', '4', '107', 'Anna University', 'Electronics and Instrumentation Engineering', '7', '10', '0')
(2963, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '157', '150', '307', '3.5', '111', 'VTU', 'Telecommunication', '5.7', '100', '0')
(2964, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '145', '304', '3', '98', 'Greater Noida Institute Of Technology', 'Comuter Science engineering', '6.840000000000001', '100', '0')
(2965, 'Syracuse University', '4', 'Reject', 'MS', 'Management Information System', 'Fall ', '2013', '158', '149', '307', '3.5', '96', 'Panjab University', 'Electrical and Electronics', '6.237', '100', '0')
(2966, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '150', '313', '3.5', '101', 'ITM University Gurgaon', 'Computer Science (B.Tech)', '6.66', '10', '0')
(2967, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '147', '305', '3', '82', 'VTU', 'Computer Science', '6.7', '100', '0')
(2968, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '680', '430', '1110', '3.5', '102', 'VCET', 'Computer Science', '6.3', '100', '0')
(2969, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '161', '145', '306', '3', '90', 'KITS Kakatiya University', 'Electrical & Electronics Engineering', '6.616', '100', '0')
(2970, 'Syracuse University', '4', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2011', '730', '470', '1200', '3', '100', 'University of Pune', 'Chemical Engineering', '6', '100', '0')
(2971, 'Syracuse University', '4', 'Reject', 'MS', 'CS', 'Fall ', '2015', '167', '145', '312', '3', 'None', 'University of Mumbai', 'Information Technology', '7.013', '100', '42')
(2972, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '730', '570', '1300', '3', '98', 'K J Somaiya College of Engiineering', 'Computer Engg', '6', '100', '0')
(2973, 'Syracuse University', '4', 'Reject', 'MS', 'Information Systems', 'Fall ', '2014', '157', '146', '303', '3', '95', 'University of Mumbai', 'Electronics', '5', '100', '0')
(2974, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '710', '680', '1390', '3.5', '106', 'VTU', 'Information Science', '7', '100', '0')
(2975, 'Syracuse University', '4', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '760', '640', '1400', '2.5', '87', 'VTU', 'ECE', '6.3', '100', '0')
(2976, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '720', '480', '1200', '3.5', '107', 'University of Pune', 'IT', '5.8', '100', '0')
(2977, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2015', '166', '149', '315', '3.5', '104', 'R.N.S.I.T / VTU', 'Electronics and communication', '6.8', '100', '15')
(2978, 'Syracuse University', '4', 'Reject', 'MS', 'Information Systems', 'Fall ', '2011', '710', '350', '1060', '3.5', '83', 'SIT', 'Information Technology', '5.7', '100', '0')
(2979, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '156', '144', '300', '3', '81', 'MU', 'BE in Electronics', '5.7', '100', '0')
(2980, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '157', '148', '305', '4', '88', 'University of Pune', 'Computer', '6.241', '100', '0')
(2981, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '169', '150', '319', '4', '112', 'Amrita School of Engineering', 'Electronics and Communication', '7.48', '10', '0')
(2982, 'Syracuse University', '4', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2006', '770', '710', '1480', '4', '280', 'MU', 'Electronics and Telecommunication', '5.7', '100', '0')
(2983, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '570', '1340', '4', '107', 'D J Sanghvi', 'Information Technology', '5.957', '100', '0')
(2984, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '720', '660', '1380', '3.5', 'None', 'VTU', 'computer science', '6', '100', '0')
(2985, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '155', '142', '297', '3', '6', 'None', 'I.T', '7', '100', '0')
(2986, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2011', '730', '470', '1200', '3', '81', 'S.R.K.N.E.C', 'Information Technology', '6.5', '100', '0')
(2987, 'Syracuse University', '4', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '730', '580', '1310', '3.5', '91', 'Pune University', 'Electrical engineering', '6.0409999999999995', '100', '0')
(2988, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '155', '146', '301', '3', '81', 'GITAM', 'Computer Science', '8.45', '10', '0')
(2989, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2012', '730', '580', '1310', '3', '96', 'Andhra University', 'Information Technology', '8', '10', '0')
(2990, 'Syracuse University', '4', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2012', '165', '149', '314', '4', '105', 'MU', 'Mechanical', '6', '100', '0')
(2991, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '164', '150', '314', '3.5', '105', 'SCOET', 'Computer Science', '6.8', '100', '0')
(2992, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '720', '430', '1150', '3.5', '105', 'MU', 'Information Technology', '6.4', '100', '0')
(2993, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '710', '330', '1040', '3', 'None', 'D Y Patil College of Engineering', 'Information Technology', '6.15', '100', '0')
(2994, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '160', '145', '305', '3', '100', 'VJTI', 'Electronics', '6', '10', '0')
(2995, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '730', '540', '1270', '3', '89', 'Manipal Institue of Technology', 'Computer Science', '7.03', '10', '0')
(2996, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '400', '1190', 'None', '85', 'BITS Pilani', 'CSE', '6.75', '10', '0')
(2997, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '155', '151', '306', '3', '105', 'Don Bosco Institute of Technology', 'Information Technology', '5.5', '100', '0')
(2998, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '440', '1220', '3', '104', 'JNTU', 'Computer Science', '6.627', '100', '0')
(2999, 'Syracuse University', '4', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '620', '580', '1200', '4', '115', 'VTU', 'ECE', '7.85', '100', '0')
(3000, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '160', '323', '3.5', '108', 'MU', 'Computer Engineering', '5.8', '100', '33')
(3001, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '158', '144', '302', '3', '98', 'NMIMS', 'Electronics and telecomm', '3.06', '4', '0')
(3002, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '740', '400', '1140', '3', '91', 'MU', 'Computers', '6.3', '100', '0')
(3003, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '165', '156', '321', '4', '108', 'BIT Mesra', 'ECE', '6.93', '10', '0')
(3004, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2015', '151', '147', '298', '3', '91', 'MU', 'Electronics Engg', '6.859999999999999', '100', '24')
(3005, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '690', '460', '1150', '3', '102', 'Pune University', 'IT', '3.6', '4', '0')
(3006, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '160', '146', '306', '3', '98', 'MU', 'EXTC', '6.5', '100', '0')
(3007, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '730', '500', '1230', '2.5', '87', 'St Francis Institute of Technology - Mumbai Unversity', 'Computers', '6', '100', '0')
(3008, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '159', '146', '305', '3.5', '99', 'RGIT', 'Comp', '5.3', '100', '0')
(3009, 'Syracuse University', '4', 'Reject', 'MS', 'Industrial Engineering', 'Spring ', '2013', '750', '450', '1200', '4.5', '110', 'Institute of Technology Nirma University', 'Instrumentation & Control Electrical Department', '6.56', '10', '0')
(3010, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '690', '540', '1230', '4', '115', 'VTU', 'Electronics and Communications Engineering', '6.876', '100', '0')
(3011, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '170', '154', '324', '3', '113', 'NIT Nagpur', 'Electronics and Communication Engineering', '7.4', '10', '24')
(3012, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '155', '146', '301', '3.5', '100', 'VKIT', 'CS', '6.5', '100', '32')
(3013, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '740', '600', '1340', '4', '115', 'MU', 'Computer Science', '5.7', '100', '0')
(3014, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2015', '154', '149', '303', '4', '108', 'Anna University', 'ECE', '7.4', '100', '38')
(3015, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '162', '147', '309', '3.5', '100', 'K J Somaiya College of Engiineering', 'I.T.', '6.4', '100', '0')
(3016, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '157', '147', '304', '3', '92', 'Rajasthan Technical University', 'Computer Science', '6.88', '100', '0')
(3017, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '160', '143', '303', '3', 'None', 'VRSEC', 'IT', '8.45', '10', '0')
(3018, 'Syracuse University', '4', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '570', '1370', '3.5', '98', 'IT BHU', 'Electrical Engg', '7.48', '10', '0')
(3019, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '152', '313', '3', '106', 'RGPV', 'cs', '6.956', '100', '0')
(3020, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2016', '156', '151', '307', '3', '101', 'UPTU', 'information technology', '7.44', '100', '0')
(3021, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '460', '1220', '3.5', '109', 'University College Of Engineering Kariavattom Trivandrum', 'Computer Science', '6.7', '10', '0')
(3022, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '153', '316', '4', '94', 'Medicaps Institute of Science & Technology Indore', 'Information Technology', '8.07', '10', '0')
(3023, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '380', '1130', '3', '90', 'PESIT', 'Information Scinece and Engineering', '6.7', '100', '0')
(3024, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '166', '150', '316', '2.5', '98', 'BITS Pilani', 'Computer Science', '5.5', '10', '0')
(3025, 'Syracuse University', '4', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '670', '450', '1120', '3', 'None', 'sbmjce', 'eee', '0', '0', '0')
(3026, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '161', '147', '308', '3', '98', 'Dr. Ambedkar Institute of technology', 'Information Science', '7.767', '100', '0')
(3027, 'Syracuse University', '4', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '157', '137', '294', '3.5', '87', 'CMRIT', 'ECE', '6.1', '100', '0')
(3028, 'Syracuse University', '4', 'Reject', 'MS', 'Management Information System', 'Fall ', '2013', '164', '150', '314', '3.3', '89', 'Wuhan University of Technology', '0', '0', '100', '0')
(3029, 'Syracuse University', '4', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2011', '770', '670', '1440', '3.5', '111', 'Pune University', 'Mechanical', '5.3', '100', '0')
(3030, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '710', '490', '1200', '3', '106', 'University', 'CSE', '7.89', '10', '0')
(3031, 'Syracuse University', '4', 'Reject', 'MS', 'Electronics and Communication', 'Spring ', '2011', '740', '590', '1330', '3', '100', 'Southeast University', 'Communication Engineering', '8', '100', '0')
(3032, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '450', '1230', '2.5', '84', 'SIET affliated to JNTU', 'IT', '6.825', '100', '0')
(3033, 'Syracuse University', '4', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2009', '730', '480', '1210', '3', '94', 'Osmania University', 'E.C.E', '6.866', '100', '0')
(3034, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2011', '730', '380', '1110', '3', '95', 'Velalar College of Engg & Tech Erode', 'Computer Science and Engineering', '7.5', '100', '0')
(3035, 'Syracuse University', '4', 'Reject', 'MS', 'Electronics & Communication', 'Fall ', '2011', '730', '340', '1070', 'None', '80', 'University of Mumbai', 'Electronics and Telecommunication', '6.9719999999999995', '100', '0')
(3036, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '710', '380', '1090', '2.5', '103', 'NMIMS', 'Electronics', '3.32', '4', '0')
(3037, 'Syracuse University', '4', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '168', '155', '323', '4', '110', 'MU', 'Mechanical engg.', '5.5', '100', '0')
(3038, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '157', '154', '311', '3', '104', 'VTU', 'ISE', '7.04', '10', '45')
(3039, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '790', '390', '1180', '3.5', '112', 'Gujarat Technological University', 'Computer', '3.82', '4', '0')
(3040, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '165', '155', '320', '3', 'None', 'PTU-Dav Institue of Engineering and Technology', 'Information Technology', '6.9', '100', '0')
(3041, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2012', '780', '460', '1240', '3', '101', 'None', '0', '0', '0', '0')
(3042, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '151', '312', '3', 'None', 'MU', 'Computer Engineering', '6.26', '100', '15')
(3043, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '165', '153', '318', '3.5', '108', 'GGSIPU', 'CSE', '7.3', '100', '44')
(3044, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '750', '510', '1260', '3.5', '106', 'MU', 'Computers', '5.976', '100', '0')
(3045, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '156', '150', '306', '3', '99', 'SSEC', 'CSE', '7.3', '100', '0')
(3046, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '157', '153', '310', '4', '108', 'VTU', 'Computer Science', '6.6', '100', '0')
(3047, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '161', '153', '314', '3', 'None', 'SASTRA', 'info and comm technology (ICT)', '7.3', '10', '24')
(3048, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '780', '680', '1460', '4.5', '105', 'University of Pune', 'Computer Engineering', '5.8', '100', '0')
(3049, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'Amrita School of Engineering', 'CSE', '7', '10', '0')
(3050, 'Syracuse University', '4', 'Reject', 'MS', 'Information Technology', 'Fall ', '2013', '50', '21', '71', '4', '88', 'ITM Gurgaon', 'CSE', '6.8', '100', '0')
(3051, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '159', '150', '309', '3', '106', 'Amity University', 'Computer Science and Engineering', '8.36', '10', '39')
(3052, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '160', '150', '310', '3', '102', 'MU', 'IT', '6.5', '100', '0')
(3053, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '790', '710', '1500', '2.5', '114', 'Anna University', 'CSE', '7.58', '10', '0')
(3054, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Spring ', '2012', '780', '520', '1300', '3', '100', 'DA-IICT', 'ICT - Information and Communication Technology', '6.4', '10', '0')
(3055, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '154', '147', '301', '3', '110', 'University of Mumbai', 'computer engineering', '3.7', '4', '0')
(3056, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '158', '151', '309', '3.5', '104', 'VTU', 'Computer Science and Engineering', '7.6', '100', '0')
(3057, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2011', 'None', 'None', '0', 'None', '105', 'Pune University', 'CS', '7', '10', '0')
(3058, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2015', '164', '145', '309', '3', '103', 'Amrita School of Engineering', 'Mechanical', '6.1', '10', '36')
(3059, 'Syracuse University', '4', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2013', '158', '150', '308', '3.5', 'None', 'RMK Engineering College', 'EEE', '7.2', '100', '0')
(3060, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '740', '620', '1360', '3', '92', 'Maharashtra Academy of Engineering / University of Pune', 'Computer Engineering', '6.279999999999999', '100', '0')
(3061, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '760', '450', '1210', 'None', '97', 'Anna University', 'Computer Science', '7.6', '100', '0')
(3062, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '740', '470', '1210', '2.5', '99', 'VTU', 'cs', '6.5', '100', '0')
(3063, 'Syracuse University', '4', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2013', '154', '154', '308', '3.5', '105', 'MU', 'IT', '6.3', '100', '0')
(3064, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '169', '146', '315', '3.5', '86', 'HUST', 'Information Technology', '7.82', '10', '0')
(3065, 'Syracuse University', '4', 'Reject', 'MS', 'Computational Science', 'Fall ', '2012', '790', '650', '1440', '3', '100', 'Jaypee Institute of Information Technology', 'CSE', '6.9', '10', '0')
(3066, 'Syracuse University', '4', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2014', '163', '153', '316', '4', '113', 'MU', 'Civil Engineering', '5.1', '100', '22')
(3067, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '156', '147', '303', '3', '89', 'Atharva College', 'computer', '6', '100', '0')
(3068, 'Syracuse University', '4', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '730', '580', '1310', '3.5', '91', 'Pune University', 'Electrical engineering', '5.851', '100', '0')
(3069, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2007', '780', '660', '1440', '4.5', '283', 'Sri Venkateswara College of Engineering', 'Computer Science', '7.2', '100', '0')
(3070, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '157', '149', '306', '3', '103', 'KIIT', 'EEE', '8', '10', '0')
(3071, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '160', '143', '303', '3', '91', 'GITAM', 'CSE', '7.87', '10', '0')
(3072, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '153', '149', '302', '3', 'None', 'University of Mumbai', 'Management', '6.1', '100', '36')
(3073, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2016', '166', '155', '321', '3.5', '101', 'Uttarakhand Technical University', 'Computer Science', '7.26', '100', '56')
(3074, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '170', '168', '338', '4.5', '116', 'Pune University', 'B.E (Computer Science)', '5.7', '100', '15')
(3075, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '160', '148', '308', '3', 'None', 'BPUT', '0', '7.4', '10', '0')
(3076, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '680', '580', '1260', '3.5', '104', 'University of Mumbai', 'Computer Engineering', '5.9', '100', '0')
(3077, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '770', '530', '1300', '3.5', '100', 'None', 'Computer engineering', '6.9', '100', '0')
(3078, 'Syracuse University', '4', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2013', '158', '145', '303', '3.5', '93', 'JNTU', 'Electronics and Instrumentation', '6.656000000000001', '100', '0')
(3079, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Summer ', '2013', '159', '152', '311', '4', '102', 'K J Somaiya College of Engiineering', 'Mechanical Engg.', '5.5', '100', '0')
(3080, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '690', '520', '1210', 'None', '93', 'MU', 'Information Technology', '5.7', '100', '0')
(3081, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '146', '304', '4', 'None', 'University of Mumbai', 'COMPUTER ENGINEERING', '6.048', '100', '0')
(3082, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '730', '620', '1350', '4', '111', 'Bangalore Institute of Technology', 'Electronics and Communication', '5.85', '100', '0')
(3083, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2006', '540', '620', '1160', '3.5', '273', 'MU', 'Computer Engg', '0', '0', '0')
(3084, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2006', '790', '460', '1250', '4.5', '283', 'Pune University', 'Computer Engg.', '5.7', '100', '0')
(3085, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2015', '158', '144', '302', '3', '90', 'Thadomal Shahani Engineering College', 'CS', '7', '10', '0')
(3086, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '690', '500', '1190', '3.5', '101', 'MU', 'Computer', '6.6', '100', '0')
(3087, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '147', '310', '3', '99', 'K J Somaiya College of Engiineering', 'Computers', '6.2', '100', '0')
(3088, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '160', '150', '310', '3.5', '102', 'Kurukshetra University', 'Information Technology', '7', '100', '0')
(3089, 'Syracuse University', '4', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2013', '770', '580', '1350', '3', '98', 'D j Sanghvi', 'Chemical Engineering', '5.9', '100', '0')
(3090, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2015', '154', '142', '296', '3', '86', 'Anna University', 'CS', '0.7', '100', '29')
(3091, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2007', '740', '400', '1140', '3.5', '99', 'Bharat Institute of Engineering and Technology', 'Instrumentation and Control', '7.9', '100', '0')
(3092, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '166', '140', '306', '3', '85', 'VTU', 'Computer Science', '7.24', '100', '36')
(3093, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '145', '308', '2.5', '87', 'Panimalar Engineering College', 'ECE', '8.2', '100', '0')
(3094, 'Syracuse University', '4', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2013', '710', '460', '1170', '3', '105', 'VTU', 'E & C', '6', '100', '0')
(3095, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '560', '1360', '3.5', '108', 'RAIT', 'Computer', '5.8', '100', '0')
(3096, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2009', '780', '450', '1230', '3.5', '101', 'University of Mumbai', 'CS', '0', '0', '0')
(3097, 'Syracuse University', '4', 'Reject', 'MS', 'Management of Technology', 'Fall ', '2013', '158', '147', '305', '3', '92', 'VTU', 'ECE', '8.13', '10', '0')
(3098, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '710', '390', '1100', '3', '103', 'University of Pune', 'Information Technology', '5.8', '100', '0')
(3099, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '158', '322', '4', '105', 'Fr. agnels vashi', 'Information technology', '5.6450000000000005', '100', '0')
(3100, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '710', '530', '1240', '3', '95', 'Vishwakarma Institute of Technology', 'Electronics', '6.82', '100', '0')
(3101, 'Syracuse University', '4', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '730', '400', '1130', '3', '97', 'VTU', 'electronics and communication', '7.1', '100', '0')
(3102, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '550', '1320', '3.5', '91', 'Walchand College Of Engineering', 'Computer Science & Engineering', '6.371', '100', '0')
(3103, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2013', '158', '142', '300', '3', '95', 'Rajasthan Technical University', 'ECE', '6.2', '100', '0')
(3104, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '157', '152', '309', '3.5', '100', 'Rajasthan Technical University', 'Computer Science', '7.5', '100', '0')
(3105, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '160', '145', '305', '3.5', '96', 'Thadomal Shahani Engineering College', 'EXTC', '6.5', '100', '0')
(3106, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2015', '154', '142', '296', '3', '80', 'UPTU', 'CSE', '6.1', '100', '0')
(3107, 'Syracuse University', '4', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '157', '146', '303', '3', '96', 'Anna University', 'Mechanical Engineering', '7', '10', '0')
(3108, 'Syracuse University', '4', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '730', '400', '1130', '3', '96', 'Anna University', 'ECE', '7.5', '10', '0')
(3109, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '156', '145', '301', '3', '97', 'VTU', 'CSE', '3.34', '4', '0')
(3110, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '148', '310', '2.5', '92', 'University of Pune', 'IT', '6', '100', '25')
(3111, 'Syracuse University', '4', 'Reject', 'MS', 'Engineering Management', 'Summer ', '2014', '152', '152', '304', '3', 'None', 'PESIT', 'MECHANICAL', '6.13', '10', '0')
(3112, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '155', '145', '300', '3', '100', 'MU', 'IT', '6', '100', '8')
(3113, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2006', '750', '440', '1190', '4', '283', 'J.S.S.A.T.E. Noida', 'Computer Science', '6.9', '100', '0')
(3114, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '149', '312', '3', '93', 'GGSIPU', 'CSE', '7', '100', '36')
(3115, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '380', '1160', '2.5', '91', 'Pondicherry University', 'CSE', '7.45', '10', '0')
(3116, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2011', '660', '530', '1190', '3.5', '96', 'Pune University', 'B.E.Computer', '7.4', '100', '0')
(3117, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '157', '149', '306', '3', '103', 'Thakur College of Engineering and Technology', 'IT', '5.8', '100', '12')
(3118, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '155', '318', '3.5', '103', 'St.Francis Institute of Technology', 'Computer Engineering', '5.74', '100', '0')
(3119, 'Syracuse University', '4', 'Reject', 'MS', 'Electronic and Telecommunication Engineering', 'Fall ', '2012', '690', '330', '1020', '3.5', '92', 'Shivajirao S. Jondhale College of Engineering', 'Electronics & Telecomm', '5.75', '100', '0')
(3120, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '167', '143', '310', '3', 'None', 'GITAM', 'ECE', '9', '100', '0')
(3121, 'Syracuse University', '4', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2007', '790', '420', '1210', '3.5', '257', 'MU', 'Electronics', '6', '100', '0')
(3122, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '153', '148', '301', 'None', '87', 'Anna University', 'Computer Science', '7.5', '100', '0')
(3123, 'Syracuse University', '4', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', 'None', 'None', '0', 'None', 'None', 'VTU', 'Electronics & Communication', '7.05', '100', '77')
(3124, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '720', '510', '1230', '3', '106', 'MU', 'Computer Engineering', '6.9', '100', '0')
(3125, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '730', '580', '1310', '3', '87', 'CBIT', 'Mechanical', '7.220000000000001', '100', '0')
(3126, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '159', '151', '310', '4', '107', 'Bangalore Institute of Technology', 'ISE', '7.176', '100', '28')
(3127, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '420', '1200', '3', '91', 'K J Somaiya College of Engiineering', 'Computer Science', '0', '0', '0')
(3128, 'Syracuse University', '4', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2011', '730', '340', '1070', '3', '80', 'University of Mumbai', 'Electronics & Telecommunication', '6.9719999999999995', '100', '0')
(3129, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '159', '145', '304', '3', '98', 'MU', 'E&TC;', '6.4', '100', '0')
(3130, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '730', '410', '1140', '3.5', '101', 'Rajasthan Technical University', 'Computer Science', '6.3', '100', '0')
(3131, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '156', '144', '300', 'None', 'None', 'Vidyalankar Institute of Technology', 'Computer Engg', '6.5', '100', '0')
(3132, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2006', '760', '670', '1430', '4.5', '280', 'None', 'Comp Sc.', '7.4', '100', '0')
(3133, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '800', '640', '1440', '4', '109', 'Pune University', 'Computer Engg', '5.4', '100', '0')
(3134, 'Syracuse University', '4', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '720', '470', '1190', '3.5', '90', 'Gautam Buddh Technical University', 'Electrical Engineering', '6.6', '100', '0')
(3135, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '150', '312', '3', '105', 'Dharamsinh Desai University', 'Information Technology', '8.17', '10', '9')
(3136, 'Syracuse University', '4', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2011', '800', '360', '1160', '3.5', '108', 'Dr. B.A.M.U.', 'MECHANICAL', '6.5', '100', '0')
(3137, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '730', '460', '1190', '3.5', '108', 'MU', 'Computer', '6.3', '100', '0')
(3138, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '580', '1380', '3', '92', 'None', '0', '0', '0', '0')
(3139, 'Syracuse University', '4', 'Reject', 'MS', 'Entrepreneurship', 'Fall ', '2014', '151', '149', '300', '3', '97', 'VIT', 'ECE', '6.45', '10', '0')
(3140, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '160', '146', '306', '3.5', '106', 'Madras Institute of Technology', 'Information Technology', '8.2', '10', '54')
(3141, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '730', '530', '1260', '3', '105', 'K J Somaiya College of Engiineering', 'Information Technology', '7', '100', '0')
(3142, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '158', '141', '299', '3.5', 'None', 'JNTU', 'CSE', '7.256', '100', '0')
(3143, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '570', '1330', '4', '107', 'RMK Engineering College', 'Computer science', '7', '100', '0')
(3144, 'Syracuse University', '4', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2007', '770', '470', '1240', '3.5', '253', 'VJTI', 'Mechanical', '6.590000000000001', '100', '0')
(3145, 'Syracuse University', '4', 'Reject', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2009', '700', '340', '1040', '3.5', '106', 'MU', 'Electronics', '5.8', '100', '0')
(3146, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring', 'None', '730', '510', '1240', '3.5', 'None', 'University of Pune', '0', '7', '100', '0')
(3147, 'Syracuse University', '4', 'Reject', 'MS', 'Information Systems', 'Fall ', '2014', '155', '153', '308', '3', '106', 'University of Pune', 'Information Technology', '5.93', '100', '7')
(3148, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '770', '520', '1290', '3', '118', 'SSN College of Engineering', 'Information Technology', '7.2', '100', '0')
(3149, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2006', '760', '670', '1430', '5.5', '287', 'University of Mumbai', 'Computer Science', '6.6', '100', '0')
(3150, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2015', '165', '154', '319', '3.5', '107', 'R V College of Engineering', 'Telecom', '6.29', '100', '60')
(3151, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '159', '149', '308', '3', '105', 'MPSTME NMIMS', 'CS', '3', '4', '0')
(3152, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '160', '144', '304', '2.5', '93', 'MU', 'Computer Engineering', '5.3', '100', '42')
(3153, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '500', '1260', '4', '98', 'Xavier Institute of Engineering University of Mumbai', 'Computer Engineering', '6.0084', '100', '0')
(3154, 'Syracuse University', '4', 'Reject', 'MS', 'Electronics and Communication', 'Spring ', '2015', '159', '150', '309', '3.5', '108', 'VTU', 'ECE', '6.9', '100', '0')
(3155, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '150', '314', 'None', '107', 'MU', 'Information Technology', '5.4', '100', '0')
(3156, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '149', '313', '3.5', '100', 'University of Dhaka', 'Computer Science & Engineering', '3.44', '4', '40')
(3157, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '144', '302', '2.5', '92', 'Gujarat Technological University', 'computer', '7.39', '10', '0')
(3158, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '155', '150', '305', '3', '108', 'MU', 'Information Technology', '6.6', '100', '0')
(3159, 'Syracuse University', '4', 'Reject', 'MS', 'Data Informatics', 'Fall ', '2015', '158', '151', '309', '4', '109', 'Manipal Institue of Technology', 'Computer Science and Engineering', '8.28', '10', '0')
(3160, 'Syracuse University', '4', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '154', '148', '302', '3', '107', 'Jain University', 'EC', '6.9', '100', '0')
(3161, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '162', '152', '314', '4', '106', 'NMIMS', 'IT', '3.04', '4', '0')
(3162, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '710', '1510', '3.5', '112', 'MU', 'Computer Engg', '6.15', '100', '0')
(3163, 'Syracuse University', '4', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2012', '157', '144', '301', '3', '91', 'VIT Pune', 'Instrumentation', '6.1', '100', '0')
(3164, 'Syracuse University', '4', 'Reject', 'MS', 'MIS-management related courses', 'Fall ', '2013', '160', '148', '308', 'None', '104', 'Symbiosis Institute of Technology', 'Computer Science', '2.68', '4', '0')
(3165, 'Syracuse University', '4', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '790', '550', '1340', '4', '105', 'VTU', 'Electronics and Comunication', '6.9', '100', '0')
(3166, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '159', '147', '306', '3.5', '101', 'Sardar Vallabhbhai National Institute of Technology', 'Information Technology', '7.74', '10', '0')
(3167, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '152', '315', '3', '105', 'Biju Patnaik University of Technology', 'CSE', '7.65', '10', '31')
(3168, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '800', '350', '1150', '2.5', '89', 'Gujarat Technological University', 'Computer Engineering', '7', '100', '0')
(3169, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '740', '470', '1210', '3.5', '108', 'VTU', 'Computer Science', '7.4', '100', '0')
(3170, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '162', '149', '311', '3', 'None', 'JNTU', 'Computer Science and Engineering', '7.3', '100', '36')
(3171, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '158', '146', '304', '3', '95', 'SIES Graduate School of Technology', 'Electronics and Telecommunication', '5.87', '100', '0')
(3172, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '154', '144', '298', '3.5', '93', 'APSCE VTU', 'Information Science', '6.45', '100', '0')
(3173, 'Syracuse University', '4', 'Reject', 'MS', 'Information Systems', 'Fall ', '2014', '48', '34', '82', '4.5', '103', 'Manipal Institue of Technology', 'Electrical and Electronics', '6.58', '10', '0')
(3174, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '166', '159', '325', '3.5', '107', 'ITM Gurgaon', 'CS', '6.1', '100', '0')
(3175, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '570', '1370', '3', '97', 'IIIT Allahabad', 'IT', '6.71', '10', '0')
(3176, 'Syracuse University', '4', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '168', '146', '314', '3', '103', 'Keio', 'electrical engineering', '3.6', '4', '96')
(3177, 'Syracuse University', '4', 'Reject', 'MS', 'CS', 'Fall ', '2015', '163', '153', '316', '3', '101', 'GGSIPU', 'CSE', '7.56', '100', '18')
(3178, 'Syracuse University', '4', 'Reject', 'MS', 'CS', 'Fall ', '2013', '159', '146', '305', '3', '91', 'University of Pune', 'Computer Science', '6.3', '100', '0')
(3179, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2007', '750', '640', '1390', '4', '267', 'SIES Graduate School of Technology', 'COMPUTER', '6', '100', '0')
(3180, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2013', '161', '154', '315', '3', '96', 'VTU', 'EC', '6.7', '100', '0')
(3181, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '690', '380', '1070', '2.5', '89', 'K J Somaiya College of Engiineering', 'IT', '7.3', '100', '0')
(3182, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '730', '510', '1240', '3', '104', 'Sri Siddhartha Institute of technology', 'Information Science', '9.24', '10', '0')
(3183, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2011', '750', '410', '1160', '4', '106', 'Anna University', 'Computer Science', '7.3', '100', '0')
(3184, 'Syracuse University', '4', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2013', '161', '143', '304', '3', 'None', 'SUNY buffalo', 'EE', '7.3', '100', '0')
(3185, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '710', '430', '1140', '3', '95', "St Joseph's College of Engineering", 'cse', '7', '100', '0')
(3186, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '159', '321', '3', '104', 'U.P.Technical University', 'Information Technology', '6.8', '100', '0')
(3187, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '143', '304', '3', '85', 'MU', 'Information Technology', '5.8', '100', '0')
(3188, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '700', '350', '1050', '3.5', '103', 'Pune University', 'IT', '0', '0', '0')
(3189, 'Syracuse University', '4', 'Reject', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2014', '162', '143', '305', '3', '91', 'VIT', 'CSE', '8.11', '10', '0')
(3190, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '155', '152', '307', '2.5', '94', 'Sri Venkateswara College of Engineering', 'ECE', '6.82', '10', '0')
(3191, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '460', '1260', '3', '112', 'SJCE', 'Electronics and Communication', '6.8', '100', '0')
(3192, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '770', '460', '1230', '3', '100', 'Shivaji University', 'Mechanical Engineering', '6.047', '100', '0')
(3193, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '157', '161', '318', '3.5', '115', 'Punjabi University', 'Electronics and Communication', '7.06', '100', '0')
(3194, 'Syracuse University', '4', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2011', '770', '580', '1350', '4', '109', 'Pune University', 'Electronics & Telecommunication', '3.16', '4', '0')
(3195, 'Syracuse University', '4', 'Reject', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '158', '145', '303', '3.5', '92', 'SASTRA', 'Mechatronics', '7.66', '10', '24')
(3196, 'Syracuse University', '4', 'Reject', 'MS', 'Engineering Management', 'Spring ', '2014', '156', '149', '305', '4', '107', 'Osmania University', 'Mechanical', '6.1', '100', '0')
(3197, 'Syracuse University', '4', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '160', '153', '313', '3.5', '105', 'MRCE - affiliated to MDU', 'electronics and communication', '6', '100', '0')
(3198, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '155', '318', '3.5', '103', 'MU', 'CE', '5.74', '100', '0')
(3199, 'Syracuse University', '4', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '160', '144', '304', '3', '102', 'University of Pune', 'Electronics and Telecommunication', '7.140000000000001', '100', '0')
(3200, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '165', '326', '3.5', '112', 'BITS Pilani', 'E.E.E', '5.73', '10', '0')
(3201, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '167', '145', '312', '3.5', '103', 'GNIT (JNTU-H)', 'Computer Science and Engineering', '6.8', '100', '0')
(3202, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '680', '490', '1170', '3', '93', 'SRM', 'CS', '8.69', '10', '0')
(3203, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '170', '152', '322', '3', '101', 'BIT Mesra', 'Computer Science Enggineering', '6.21', '10', '24')
(3204, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '750', '510', '1260', '3', '104', 'SNIST', 'electronics and computers', '7.1', '100', '0')
(3205, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '156', '148', '304', 'None', '102', 'MGM CoET Noida', 'CS', '6.1', '100', '0')
(3206, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '159', '139', '298', '2', 'None', 'None', 'Computer Science', '8.37', '10', '0')
(3207, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '160', '146', '306', '2.5', '92', 'SGGSIE&T; Nanded', 'Information Technology', '7.8', '10', '0')
(3208, 'Syracuse University', '4', 'Reject', 'MS', 'Computer engineering VLSI CAD', 'Fall ', '2012', '156', '149', '305', '3.5', '104', 'University of Mumbai', 'Electronics', '5.9', '100', '0')
(3209, 'Syracuse University', '4', 'Reject', 'MS', 'Management Information System', 'Fall ', '2015', '162', '151', '313', '3.5', '105', 'Kurukshetra University', 'Information Technology', '6.14', '100', '31')
(3210, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '160', '159', '319', '4.5', '108', 'COEP', 'Electrical Engineering', '6.54', '10', '9')
(3211, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '700', '390', '1090', '4', '103', 'St Francis Institute of Technology - Mumbai Unversity', 'IT', '6', '100', '0')
(3212, 'Syracuse University', '4', 'Reject', 'MS', 'Electrical and computer science', 'Fall ', '2012', '740', '610', '1350', 'None', '112', 'University of Pune', 'ENTC', '6.0200000000000005', '100', '0')
(3213, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '167', '156', '323', '4', '110', 'MU', 'Electronics and Telecommunication', '6.7', '100', '0')
(3214, 'Syracuse University', '4', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2011', '780', '440', '1220', '3', '98', 'MU', 'Electronics and telecommunication', '5.3', '100', '0')
(3215, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Spring ', '2011', '760', '660', '1420', '3.5', '109', 'Devi Ahilya University', 'Computer Science', '7.76', '10', '0')
(3216, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '730', '540', '1270', '4', '110', 'None', '0', '0', '0', '0')
(3217, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '139', '302', 'None', '81', 'MU', 'Computer Engineering', '6.4', '100', '0')
(3218, 'Syracuse University', '4', 'Reject', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '155', '145', '300', '3', '101', 'MU', 'Computer Science', '6.1', '100', '0')
(3219, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '1350', '560', '1910', '790', '105', 'MGMCET Mumbai University', 'Computer Engineering', '5.8', '100', '0')
(3220, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '800', '530', '1330', '3.5', '104', 'Vidyalankar Institute of Technology', 'Computer Engineering', '5.8', '100', '0')
(3221, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '157', '149', '306', '3.5', '94', 'BVBCET', 'Computer Science', '7.26', '10', '0')
(3222, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '157', '147', '304', '3', '7', 'Pune University', 'computer', '5.45', '100', '0')
(3223, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '740', '600', '1340', '3.5', '103', 'JNTU', 'Computer science', '6.9', '100', '0')
(3224, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '600', '1390', '4', '113', 'MU', 'Computer Engineering', '6', '100', '0')
(3225, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '152', '149', '301', '3.5', '82', 'Goa University', 'Electronics & Telecom', '6.9', '100', '0')
(3226, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '154', '149', '303', '3', '98', 'Biju Patnaik University of Technology', 'Applied Electronics & Instrumentation', '7.827', '10', '48')
(3227, 'Syracuse University', '4', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '160', '153', '313', '3', '103', 'Gujarat Technological University', 'ECE', '3.42', '4', '0')
(3228, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '153', '315', '4', '109', 'NIT Tirchy', 'Computer Science and Engineering', '6.82', '10', '19')
(3229, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '770', '480', '1250', '2.5', '96', 'MU', 'information technology', '0.5700000000000001', '100', '0')
(3230, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '154', '149', '303', '4', '105', 'University of Pune', 'Information Technology', '5.536', '100', '0')
(3231, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Engineering/Comp Science', 'Spring ', '2013', '158', '151', '309', '3', '102', 'VIT', 'CSE', '7.87', '10', '0')
(3232, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '163', '149', '312', '3', '94', 'MU', 'Information Technology', '6.2', '100', '0')
(3233, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '157', '146', '303', '3.5', '97', 'University of Mumbai', 'Information Technology', '0', '0', '0')
(3234, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '740', '290', '1030', '3', '86', 'Pune University', 'Computer Engg', '6.859999999999999', '100', '0')
(3235, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '159', '159', '318', '3', '106', 'JNTU', 'CS', '5.8', '100', '0')
(3236, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '151', '146', '297', '3', '85', 'VIIT', 'Computer Engg', '5.9', '100', '0')
(3237, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2013', '158', '140', '298', '2.5', '84', 'Kurukshetra University', 'Computer Science engineering', '6.7', '100', '0')
(3238, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '520', '1300', '3', '109', 'MU', 'Information Technology', '6.2', '100', '0')
(3239, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '158', '147', '305', '3', '96', 'MU', 'computer engg', '6.1', '100', '0')
(3240, 'Syracuse University', '4', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2014', '159', '144', '303', '2.5', '7', 'Amrita School of Engineering', 'Electronics and communication', '6.47', '10', '0')
(3241, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '160', '144', '304', '4', '88', 'RGMCET', 'CSE', '7.38', '100', '0')
(3242, 'Syracuse University', '4', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '730', '420', '1150', '3.5', '105', 'College of Engineering and Technology', 'Electronics and telecommunications', '0', '0', '0')
(3243, 'Syracuse University', '4', 'Reject', 'MS', 'Information Systems', 'Fall ', '2011', '680', '480', '1160', '3.5', '99', 'MU', 'computer science', '6.9', '100', '0')
(3244, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '155', '319', '3.5', '105', 'NMIMS', 'Computer Science', '3.26', '4', '0')
(3245, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '156', '154', '310', '3', '105', 'Fr. Conceicao Rodrigues College of Engineering', 'Computer', '6.2', '100', '0')
(3246, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '157', '152', '309', '3.5', '97', 'MU', 'Computer Science', '5.607', '100', '0')
(3247, 'Syracuse University', '4', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '155', '152', '307', '3.5', '110', 'UMIT SNDT UNIVERSITY', 'ELECTRONICS AND COMMUNICATION', '6.83', '10', '0')
(3248, 'Syracuse University', '4', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2011', '780', '480', '1260', '3.5', '103', 'MU', 'EXTC', '5.5', '100', '0')
(3249, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '161', '148', '309', '3.5', '102', 'St. vincent pallotti college iof engineering and technology', 'Computer Engineering', '7.023000000000001', '100', '0')
(3250, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '161', '146', '307', '3', '92', 'Sreenidhi Institute of Science & Technology', 'Computer Science', '6.9', '100', '0')
(3251, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '158', '153', '311', '3.5', '107', 'Anna University', 'ECE', '7.3', '100', '0')
(3252, 'Syracuse University', '4', 'Reject', 'MS', 'CS MIS', 'Fall ', '2012', '168', '147', '315', '3.5', '91', 'VTU', 'Electronics & Communication', '6.7', '100', '0')
(3253, 'Syracuse University', '4', 'Reject', 'MS', 'Computational Science', 'Fall ', '2011', '740', '310', '1050', '3', '84', 'Saveetha Engineering College', 'Information Technology', '7.3', '100', '0')
(3254, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '160', '324', '4', '103', 'Atharva College', 'Information Technology', '5.86', '100', '0')
(3255, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '164', '149', '313', '3', '92', 'Lovely Professional Univesity', 'Computer Science', '7.459999999999999', '100', '39')
(3256, 'Syracuse University', '4', 'Reject', 'MS', 'Management of Technology', 'Fall ', '2015', '158', '146', '304', '4', '100', 'VESIT', 'Electronics', '6.16', '100', '0')
(3257, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '157', '154', '311', '3.5', '104', 'None', '0', '7.09', '10', '0')
(3258, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '770', '380', '1150', '3', '90', 'K J Somaiya College of Engiineering', 'I.T.', '6.6', '100', '0')
(3259, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '340', '1110', '3.5', '93', 'Sinhgad College of Engineering', 'Information Technology', '6.4', '100', '0')
(3260, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '370', '1120', '3', '91', 'St thomas college of engg & tech(under West Bengal University of technology)', 'Information Technology', '8.37', '10', '0')
(3261, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '154', '162', '316', '4.5', '113', 'Walchand College Of Engineering', 'CSE', '8.06', '10', '16')
(3262, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '760', '440', '1200', '3', '88', 'Coimbatore Insitute of Technology', 'Computer Science and engineering', '7.23', '10', '0')
(3263, 'Syracuse University', '4', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2014', '159', '150', '309', '2.5', '94', 'SVITS', 'Electronics & Communication', '7', '100', '0')
(3264, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '720', '470', '1190', '3.5', '94', 'K J Somaiya College of Engiineering', 'IT', '6.1', '100', '0')
(3265, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2008', '800', '430', '1230', '3.5', '97', 'Amrita School of Engineering', 'computer science', '6.43', '10', '0')
(3266, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '700', '440', '1140', '3.5', '99', 'R V College of Engineering', 'ISE', '8.56', '10', '0')
(3267, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '530', '1290', '3.5', '102', 'NIT Surat', 'Computer Engineeing', '7.61', '10', '0')
(3268, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '740', '300', '1040', '3.5', '107', 'JNTU', 'Electronics & Communication', '6.7', '100', '0')
(3269, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '720', '570', '1290', '3.5', '116', 'MU', 'Computer Science', '7.804', '100', '0')
(3270, 'Syracuse University', '4', 'Reject', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2007', '550', '790', '1340', '4', '267', 'MU', 'Electronics', '5.9', '100', '0')
(3271, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2008', '750', '470', '1220', '3', '102', 'IET DAVV', 'ELECTRONICS', '6.7', '100', '0')
(3272, 'Syracuse University', '4', 'Reject', 'MS', 'Engineering Management', 'Summer ', '2014', '163', '153', '316', '4', '114', 'MU', 'Electrical Engineering', '6', '100', '0')
(3273, 'Syracuse University', '4', 'Reject', 'MS', 'MIS-management related courses', 'Fall ', '2015', 'None', 'None', '0', 'None', '99', 'None', '0', '0', '0', '51')
(3274, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2007', '760', '500', '1260', '3.5', '280', 'SFIT', 'Computer', '5.9', '100', '0')
(3275, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2016', '167', '156', '323', '3.5', '104', 'SGSITS', 'IT', '6.58', '10', '0')
(3276, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2011', '770', '380', '1150', '3.5', '92', 'MU', 'Computer', '6.5', '100', '0')
(3277, 'Syracuse University', '4', 'Reject', 'MS', 'software engineering', 'Fall ', '2013', '157', '152', '309', '3.5', 'None', 'SRM', 'Electronics and Communications', '7.7', '10', '0')
(3278, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '150', '313', '3', '100', 'Jaypee Institute of Information Technology', 'Computer Science', '5.6', '10', '43')
(3279, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '750', '370', '1120', '3', '98', 'MU', 'Computers', '7.9670000000000005', '100', '0')
(3280, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2011', '750', '460', '1210', '4', '92', 'MU', 'IT', '6.8', '100', '0')
(3281, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '740', '530', '1270', '4', '110', 'VTU', 'Computer Science', '5.95', '100', '0')
(3282, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '730', '480', '1210', '4', '114', 'MU', 'Electronics and Telecommunication', '6.487', '100', '0')
(3283, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '151', '314', '4', '107', 'PESIT', 'CS', '7.69', '10', '0')
(3284, 'Syracuse University', '4', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '156', '151', '307', '4', '100', 'Pondicherry University', 'Electronics and Instrumentation', '8.2', '10', '0')
(3285, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '710', '560', '1270', '3', '94', 'MU', 'computer', '6.3', '100', '0')
(3286, 'Syracuse University', '4', 'Reject', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '800', '580', '1380', '4.5', '104', 'MU', 'Computer Engineering', '5.986', '100', '0')
(3287, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '750', '450', '1200', '3.5', '85', 'PICT', 'Computer Engineering', '0', '0', '0')
(3288, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall', 'None', '156', '144', '300', '3', '91', 'Rajasthan Technical University', 'computer science', '3.3', '4', '24')
(3289, 'Syracuse University', '4', 'Reject', 'MS', 'Information Systems', 'Fall ', '2013', 'None', 'None', '0', '3.5', '101', 'MU', 'Computer engineering', '6.4', '100', '36')
(3290, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2015', '156', '146', '302', '3.5', '101', 'Sapthagiri College of Engineering', 'Computer Science', '7.6129999999999995', '100', '26')
(3291, 'Syracuse University', '4', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2011', '780', '690', '1470', '3', '98', 'CEG', 'electrical and electronics', '6.25', '10', '0')
(3292, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '166', '152', '318', '3', '112', 'MU', 'EXTC', '6.3', '100', '42')
(3293, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Engineering/Comp Science', 'Fall ', '2015', '156', '151', '307', '3', '90', 'DMI College of Engineering', 'I.T', '6.53', '10', '22')
(3294, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '760', '520', '1280', '3', '97', 'Institute of Engineering & Technology DAVV Indore', 'Computer Engineering', '7.7', '100', '0')
(3295, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '151', '312', '3', '97', 'PESIT', 'IS', '6.648000000000001', '100', '0')
(3296, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '560', '1310', '4', '105', 'MU', 'Information Technology(B.E. I.T)', '5.88', '100', '0')
(3297, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '720', '530', '1250', '3', '91', 'University of Pune', 'information technology', '6.5', '100', '0')
(3298, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '158', '146', '304', '4', '101', 'Malnad College Of Engineering', 'CS and E', '7.991', '100', '0')
(3299, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2007', '770', '580', '1350', '4', '270', 'University of Mumbai', 'Computer Engineering', '5.95', '100', '0')
(3300, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '158', '152', '310', '3.5', '102', 'University of Pune', 'Computer Engineering', '5.8', '100', '0')
(3301, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '158', '148', '306', '3.5', '102', 'Thakur College of Engineering and Technology', 'Computer Science', '6.529999999999999', '100', '0')
(3302, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '166', '149', '315', '3', 'None', 'CEG', 'Computer Science', '7.88', '10', '0')
(3303, 'Syracuse University', '4', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2015', '161', '147', '308', '3', '96', 'Gayatri Vidya Parishad College of Engineering', 'computer science and engineering', '7.470000000000001', '100', '0')
(3304, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '760', '430', '1190', '3.5', '111', 'JNTU', 'Computer Science', '7', '100', '0')
(3305, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '720', '550', '1270', '3', '81', 'Anna University', 'Computer Science and Engineering', '8', '100', '0')
(3306, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '740', '570', '1310', '4', '105', 'Rajiv Gandhi Univ of Tech', 'Mechanical Engineering', '7.537999999999999', '100', '0')
(3307, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '750', '570', '1320', '4', '109', 'MU', 'IT', '6.7', '100', '0')
(3308, 'Syracuse University', '4', 'Reject', 'MS', 'Supply chain management', 'Fall ', '2015', '161', '155', '316', '3.5', 'None', 'Vidyalankar Institute of Technology', 'Electronics', '6.221', '100', '0')
(3309, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '158', '148', '306', '3.5', '102', 'VTU', 'Computer Science and Engineering', '7.1', '100', '0')
(3310, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '145', '304', '4', '105', 'Lakshmi Narain College of Technology', 'Information Technology', '7.779999999999999', '100', '0')
(3311, 'Syracuse University', '4', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '530', '1330', '4', '102', 'Anna University', 'Electronics and Communication Engg.', '7.12', '10', '0')
(3312, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '157', '146', '303', '3', '99', 'VTU', 'Information Science', '7', '100', '0')
(3313, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '156', '147', '303', 'None', 'None', 'CMRIT', 'IT', '6.3', '100', '0')
(3314, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2008', '710', '370', '1080', '3', '102', 'Sree Sastha Institute of Engineering and Technology', 'Computer Science and Engineering', '7.529000000000001', '100', '0')
(3315, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '710', '680', '1390', '4', '109', 'MU', 'Computer Science', '6.16', '100', '0')
(3316, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '740', '510', '1250', '4', '104', 'MU', 'computer science', '5.5', '100', '0')
(3317, 'Syracuse University', '4', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2013', '156', '152', '308', '4', '109', 'NIT Tirchy', 'Chemical Engineering', '6.2', '10', '0')
(3318, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '770', '640', '1410', '3.5', 'None', 'GITAM', 'Computer Science and Engineering', '7.9', '10', '0')
(3319, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '710', '410', '1120', '3', '108', 'MU', 'Information Technology', '5.8', '100', '0')
(3320, 'Syracuse University', '4', 'Reject', 'MS', 'Textile Science & Technology', 'Fall ', '2013', '152', '149', '301', '3', '101', 'Anna University', 'textile', '8.24', '10', '0')
(3321, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2011', '670', '500', '1170', '2.5', '89', 'Pune University', 'Computer Engineering', '6.24', '100', '0')
(3322, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '700', '600', '1300', '3.5', '110', 'MU', 'Computer Engineering', '6.2', '100', '0')
(3323, 'Syracuse University', '4', 'Reject', 'MS', 'Electrical and Electronics', 'Fall ', '2013', '155', '145', '300', '3', '99', 'Osmania University', 'EEE', '6.6', '100', '0')
(3324, 'Syracuse University', '4', 'Reject', 'MS', 'Electrical and Electronics', 'Fall ', '2012', '730', '570', '1300', '3.5', '103', 'MU', 'EXTC', '3.4', '4', '0')
(3325, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '150', '312', '3.5', '102', 'NIT Calicut', 'CSE', '7.74', '10', '0')
(3326, 'Syracuse University', '4', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2012', '157', '146', '303', '3.5', '99', 'MU', 'Mechanical engineering', '5.7', '100', '0')
(3327, 'Syracuse University', '4', 'Reject', 'MS', 'CS / SE / IT / MIS', 'Fall ', '2014', '157', '147', '304', '3', '97', 'Pune University', 'Computer Engg', '5.74', '100', '57')
(3328, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '144', '303', '3.5', '93', 'Fr.C. Rodrigues Institute of Technology Vashi Navi Mumbai', 'Computer Science', '6.433', '100', '0')
(3329, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '690', '410', '1100', '3', 'None', 'RAIT', 'Computer Engineering', '6.5', '100', '0')
(3330, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Engineering / Electrical Computer Engineering', 'Fall ', '2014', '161', '150', '311', '3.5', '96', 'K J Somaiya College of Engiineering', 'Electronics Engineering', '7.420999999999999', '100', '24')
(3331, 'Syracuse University', '4', 'Reject', 'MS', 'CS/MIS', 'Fall ', '2012', '800', '640', '1440', '4', '115', 'None', 'Computer Engineering', '6.85', '10', '0')
(3332, 'Syracuse University', '4', 'Reject', 'MS', 'Information Systems', 'Fall ', '2015', '157', '145', '302', '3', '97', 'ASIET', 'IT', '7.06', '100', '42')
(3333, 'Syracuse University', '4', 'Reject', 'MS', 'MIS/CS', 'Fall ', '2014', '158', '149', '307', '2.5', '93', 'MU', 'IT', '5.8', '100', '0')
(3334, 'Syracuse University', '4', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '560', '1360', '3.5', '105', 'RAIT', 'Instrumentation', '6', '100', '0')
(3335, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '163', '149', '312', '3', 'None', 'Amrita School of Engineering', 'EEE', '7.43', '10', '27')
(3336, 'Syracuse University', '4', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '159', '150', '309', '3', '105', 'None', '0', '0', '0', '0')
(3337, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '162', '150', '312', '3.5', '96', 'Narsee Monjee Institute of Management studies', 'Computer Science', '3.1', '4', '0')
(3338, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2016', '160', '144', '304', '3.5', 'None', 'Reva Institute of Technology', 'Electronics and communication', '7.2', '100', '12')
(3339, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '730', '480', '1210', '3.5', '108', 'VTU', 'Information Science', '6.720000000000001', '100', '0')
(3340, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '149', '153', '302', '3', '105', 'SASTRA', 'ELECTRICAL AND ELECTRONICS ENGINEERING', '7.7', '10', '49')
(3341, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '163', '154', '317', '3.5', '109', 'Amrita School of Engineering', 'Information Technology', '7.81', '10', '60')
(3342, 'Syracuse University', '4', 'Reject', 'MS', 'Mechanical Engineering', 'Spring ', '2013', '170', '153', '323', '3', '104', 'BITS Goa', 'Mechanical', '6', '10', '0')
(3343, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '147', '313', '3', '107', 'JNTU', 'Information Technology', '6.544', '100', '0')
(3344, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '159', '150', '309', '4', '98', 'B M S College of Engineering', 'CS', '8.28', '10', '0')
(3345, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '162', '155', '317', 'None', '97', 'JNTU', 'CSE', '6.5', '100', '0')
(3346, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '730', '520', '1250', '3.5', '105', 'University of Pune', 'Information Technology', '6.4', '100', '0')
(3347, 'Syracuse University', '4', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2013', '156', '146', '302', '4', '115', 'Anna University', 'Biomedical Engineering', '6.5', '100', '0')
(3348, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2011', '780', '420', '1200', '3.5', '91', 'COEP', 'Material Science', '6.46', '10', '0')
(3349, 'Syracuse University', '4', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '154', '152', '306', '4', '106', 'VTU', 'Electronics & Communication', '6.5', '100', '0')
(3350, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science/ Mgmt', 'Fall ', '2011', '770', '480', '1250', '3.5', '109', 'MU', 'Computer Engineering', '0', '0', '0')
(3351, 'Syracuse University', '4', 'Reject', 'MS', 'None', 'Fall ', '2012', '158', '149', '307', '3.5', '99', 'None', '0', '0.6599999999999999', '100', '0')
(3352, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '154', '313', '3.5', '97', 'SVCE', 'EEE', '7.5040000000000004', '100', '0')
(3353, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '149', '313', '3.5', '104', 'D j Sanghvi', 'IT', '6.2', '100', '0')
(3354, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '156', '151', '307', '3', '91', 'WIT Solapur', 'ECE', '6.265', '100', '0')
(3355, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '163', '152', '315', '3.5', '108', 'MU', 'Computer Engineering', '6.026', '100', '0')
(3356, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2007', '750', '350', '1100', '4', '253', 'Pune University', 'Computer Engineering', '5.4', '100', '0')
(3357, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '143', '309', '3', '98', 'MSU', 'Computer Science', '3.64', '4', '24')
(3358, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '151', '317', '3.5', '101', 'CEG', 'Information Technology', '7.1', '10', '30')
(3359, 'Syracuse University', '4', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2007', '610', '500', '1110', '4.5', '293', 'K J Somaiya College of Engiineering', 'Computer', '6.1', '100', '0')
(3360, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '690', '460', '1150', '4.5', '109', 'Datta Meghe College of Engineering', 'Computer Engineering', '5.720000000000001', '100', '0')
(3361, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2009', '800', '320', '1120', '3.5', '105', 'JNTU', 'CSE', '7.5', '100', '0')
(3362, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '740', '590', '1330', '3.5', '103', 'MU', 'information technology', '6.1450000000000005', '100', '0')
(3363, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2008', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(3364, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '167', '156', '323', '2.5', '88', 'Northeast Dianli Univ.', 'Electrical Engineering', '7.8', '100', '0')
(3365, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '158', '153', '311', '3', '93', 'RGTU', 'Computer Science', '7.6', '100', '0')
(3366, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2006', '790', '690', '1480', '5', '300', 'Vidylankar Institute of Technology', 'Computer Engineering', '5.7', '100', '0')
(3367, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '710', '340', '1050', '3', '92', 'Pune University', 'IT', '7.3', '100', '0')
(3368, 'Syracuse University', '4', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '450', '1250', '2.5', 'None', 'MU', 'Electronics and Telecommunication', '5.8', '100', '0')
(3369, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2008', '780', '540', '1320', '3.5', '105', 'MDU', 'Computer science', '6.6', '100', '0')
(3370, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '158', '319', '3.5', '102', 'IIT Kharagpur', 'Chemistry', '6.39', '10', '0')
(3371, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '165', '159', '324', '3', '101', 'BITS Pilani', 'Electronics', '4.93', '10', '0')
(3372, 'Syracuse University', '4', 'Admit', 'MS', 'Engineering Management', 'Spring', '2017', '153', '151', '304', '3', '107', 'Gvp College Of Engineering', 'Information Technology', '7.7', '100', '0')
(3373, 'Syracuse University', '4', 'Admit', 'MS', 'Electronics & Communication', 'Fall', '2012', '159', '143', '302', '3.5', '85', '-1', 'ECE', '7.9', '100', '0')
(3374, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '630', '1390', '4.5', '115', 'Anna University', 'EE', '8.2', '100', '0')
(3375, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '170', '153', '323', '3.5', '105', 'CoE Trivandrum', 'CSE', '7.9', '10', '0')
(3376, 'Arizona State University', '6', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '164', '158', '322', '4', '108', 'TSEC', 'Information Technology', '6.42', '100', '0')
(3377, 'Arizona State University', '6', 'Admit', 'MS', 'Business Analytics', 'Fall ', '2014', '169', '151', '320', '3', '101', 'NIET', 'ECE', '7.1', '100', '0')
(3378, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '150', '312', '3.5', '110', 'Dr. M.G.R. EDUCATIONAL AND RESEARCH INSTITUTE UNIVERSITY', 'ELECTRICAL AND ELECTRONICS ENGINEERING', '9.37', '10', '24')
(3379, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '163', '150', '313', '3.5', '100', 'R V College of Engineering', 'Mechanical', '9.19', '10', '0')
(3380, 'Arizona State University', '6', 'Admit', 'MS', 'Business Analytics', 'Fall ', '2015', '170', '150', '320', '3', '100', 'IIIT Gwalior', 'Information Technology', '7', '10', '21')
(3381, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '170', '155', '325', '4', '118', 'M.S.U.', 'Electronics engineering', '3.98', '4', '0')
(3382, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics Instrumentation and Control', 'Fall ', '2013', '160', '144', '304', '4', '100', 'Anna University', 'Electronics and instrumentation', '8.6', '10', '0')
(3383, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2013', '160', '150', '310', '3', 'None', 'VIT', 'Civil', '8.69', '10', '0')
(3384, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '170', '150', '320', '3', '104', 'BITS Goa', 'Mechanical', '6.32', '10', '48')
(3385, 'Arizona State University', '6', 'Admit', 'MS', 'CS', 'Fall ', '2014', '164', '152', '316', '3.5', '100', 'R V College of Engineering', 'INFORMATION TECHNOLOGY', '8.39', '10', '0')
(3386, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '700', '590', '1290', '2', '102', 'National Institute Of Engineering', 'Computer Science', '8.86', '10', '0')
(3387, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '790', '690', '1480', '3.5', '98', 'Vishwakarma Institute of Technology', 'Electronics and Telecommunications', '8.77', '10', '0')
(3388, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '163', '148', '311', '3', '98', 'SPCE', 'Electrical', '7.6', '100', '0')
(3389, 'Arizona State University', '6', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(3390, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '159', '150', '309', '3', '105', 'None', '0', '0', '0', '0')
(3391, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '590', '1370', '3.5', '114', 'Manipal Institue of Technology', 'ECE', '8.3', '10', '0')
(3392, 'Arizona State University', '6', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2011', '780', '590', '1370', '3.5', '105', 'VTU', 'ECE', '8.2', '100', '0')
(3393, 'Arizona State University', '6', 'Admit', 'MS', 'computer science / MIS', 'Fall ', '2015', '163', '150', '313', '3.5', 'None', 'K J Somaiya College of Engiineering', 'Information Technology', '6.6', '100', '48')
(3394, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '165', '147', '312', '3.5', '96', 'IIT Patna', 'Electrical Engineering', '8.62', '10', '0')
(3395, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '164', '150', '314', '4', '102', 'Sri Venkateswara College of Engineering', 'Information Technology', '7.968', '10', '0')
(3396, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '160', '152', '312', '3.5', '100', 'CSVTU', 'Computer Science', '7.3', '100', '0')
(3397, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '400', '1200', '3.5', '102', 'NIT-K Surathkal', 'Electrical', '8.1', '10', '0')
(3398, 'Arizona State University', '6', 'Admit', 'MS', 'renewable energy', 'Fall', 'None', '161', '151', '312', '4.5', 'None', 'None', '0', '0', '0', '0')
(3399, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Spring ', '2015', '167', '150', '317', '3', '102', 'COEP', 'Instrumentation & Control Engineering', '8.03', '10', '0')
(3400, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '155', '323', '4.5', '114', 'UPTU', 'CSE', '7.08', '100', '0')
(3401, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '520', '1300', '3', '95', 'Acharya Nagarjuna University', 'cse', '8.76', '100', '0')
(3402, 'Arizona State University', '6', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2012', '750', '530', '1280', '3.5', '103', 'WBUT', 'Mechanical', '8.38', '10', '0')
(3403, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '165', '151', '316', '4', '107', 'NIT Hamirpur', 'Mechanical Engineering', '7.42', '10', '6')
(3404, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '800', '500', '1300', '3', '97', 'Panjab University', 'BE(CS)', '6.74', '100', '0')
(3405, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '156', '315', '4', '112', 'Cochin University of Science and Technology', 'INFORMATION TECHNOLOGY', '8.415000000000001', '100', '63')
(3406, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '170', '150', '320', '3.5', '102', 'NIT Rourkela', 'Electronics And Communication Engg', '9.06', '10', '40')
(3407, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '166', '145', '311', '3', '95', 'IP University Delhi', 'Information Technology', '7.340000000000001', '100', '24')
(3408, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2008', '800', '680', '1480', '5', '113', 'University of Mumbai', 'Computer Engineering', '7.087999999999999', '100', '0')
(3409, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering / Electrical Computer Engineering', 'Fall ', '2015', '162', '152', '314', '3', '104', 'MU', '0', '6.2', '100', '0')
(3410, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '164', '159', '323', '3.5', '116', 'VIT University', 'Computer Sc & Engg', '8.8', '10', '0')
(3411, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '660', '1440', '4', '111', 'MU', 'Computer Enginnering', '6.9', '100', '0')
(3412, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '540', '1310', '3.5', '108', 'Anna University', 'Computer Science', '8.6', '10', '0')
(3413, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '680', '1470', '3.5', '105', 'Manipal Institue of Technology', 'ECE', '7.08', '10', '0')
(3414, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '165', '152', '317', '3', '101', 'B M S College of Engineering', 'Computer Science', '9.5', '10', '33')
(3415, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '560', '1350', '3.5', '110', 'Pune University', 'Electronics Engineering', '3.25', '4', '0')
(3416, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '800', '410', '1210', '3.5', '105', 'GITAM', 'Electronics and Communication', '8.01', '10', '0')
(3417, 'Arizona State University', '6', 'Admit', 'MS', 'Materials Science & Engineering', 'Fall ', '2014', '166', '157', '323', '3.5', '111', 'IIT (BHU) Varanasi', 'Metallurgical Engineering', '8.37', '10', '0')
(3418, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '153', '315', '3.5', '106', 'Maharishi Dayanand University', 'Computer Engineering', '7.66', '10', '24')
(3419, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', 'None', 'None', '0', 'None', '117', 'Symbiosis Institute of Technology', 'Mechanical', '3.511', '4', '0')
(3420, 'Arizona State University', '6', 'Admit', 'MS', 'electronics', 'Fall ', '2012', '790', '360', '1150', '3', '102', 'VIT Pune', 'Electronics', '9', '10', '0')
(3421, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '770', '660', '1430', '3', '111', 'Motilal Nehru National Institute of Technology', 'ECE', '8.65', '10', '0')
(3422, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '162', '156', '318', '3', '101', 'Pune University', 'INDUSTRIAL ENGG.', '8.49', '10', '0')
(3423, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '710', '1500', '3.5', '107', 'COEP', 'Computers', '6.89', '10', '0')
(3424, 'Arizona State University', '6', 'Admit', 'MS', 'CS', 'Fall ', '2012', '800', '700', '1500', '4', 'None', 'University of Mumbai', 'Computer', '6.4', '100', '0')
(3425, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '780', '570', '1350', '4', '117', 'PESIT', 'Telecommunication Engineering', '8.68', '10', '0')
(3426, 'Arizona State University', '6', 'Admit', 'MS', 'Construction Management', 'Fall ', '2015', '154', '148', '302', '3', '92', 'Chhattisgarh Swami Vivekanand Technical University', 'Civil', '7.7', '10', '12')
(3427, 'Arizona State University', '6', 'Admit', 'MS', 'CS', 'Fall ', '2015', '162', '156', '318', '3.5', '109', 'Anna University', 'CS', '7.33', '10', '0')
(3428, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '148', '309', '3', '106', 'University Vishweriah College of Engineering', 'Computer Science', '7.51', '100', '0')
(3429, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '790', '710', '1500', '4', '115', 'VTU', 'Electronics & Communication', '8.25', '100', '0')
(3430, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '170', '155', '325', '4', '110', 'IIIT Hyderabad', 'Information Technology', '8.9', '10', '29')
(3431, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '158', '321', '3.5', '104', 'VTU', 'Electrical & Electronics', '6.9', '100', '27')
(3432, 'Arizona State University', '6', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(3433, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '157', '324', '4', '114', 'SRM', 'EEE', '8.5', '10', '0')
(3434, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '750', '310', '1060', '3', '90', 'Dharamsinh Desai University', 'Electronics and Communications', '6.8', '100', '0')
(3435, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '730', '420', '1150', '4', '100', 'VTU', 'Electronics & Communications', '7.837999999999999', '100', '0')
(3436, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '790', '430', '1220', '3.5', 'None', 'COEP', 'Information Technology', '7.94', '10', '0')
(3437, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '165', '162', '327', '4', '103', 'R V College of Engineering', 'Telecommunication', '9.01', '10', '0')
(3438, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Spring ', '2014', '162', '144', '306', '2', 'None', 'VTU', 'electronics and communication', '8.715', '100', '0')
(3439, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '153', '314', '3.5', '108', 'VTU', 'Computer Science', '8.45', '10', '0')
(3440, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '600', '1380', '3.5', '115', 'VTU', 'Electrical and Electronics Engineering', '7.74', '100', '0')
(3441, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '167', '157', '324', '3.5', '102', 'Sardar Vallabhbhai National Institute of Technology', 'Production Department', '7.66', '10', '34')
(3442, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '690', '1460', '3', '104', 'MU', 'CS', '6.35', '100', '0')
(3443, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '800', '670', '1470', '2.5', '96', 'VIT University', 'ECE', '8.1', '10', '0')
(3444, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '640', '1440', '4', '109', 'PSG College of Technology', 'ECE', '8.4', '10', '0')
(3445, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '159', '146', '305', '3', '104', 'MSRIT', 'Mechanical', '9.66', '10', '0')
(3446, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '161', '152', '313', '4', '111', 'SRM', 'Mechanical', '9.1', '10', '0')
(3447, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '600', '1400', '4', '103', 'University of Mumbai', 'Information Technology', '6.8', '100', '0')
(3448, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '165', '150', '315', '3', '100', 'NIT Jamshedpur', 'COMPUTER SCIENCE AND ENGINEERING', '8.4', '10', '0')
(3449, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '157', '153', '310', '4', '109', 'VTU', 'Computer Science', '6.83', '100', '0')
(3450, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2016', '165', '154', '319', '3.5', '105', 'NIT-warangal', 'EEE', '7.01', '10', '27')
(3451, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2014', '165', '152', '317', '3.5', '105', 'VIT', 'School of Electrical Engineering', '8.65', '10', '0')
(3452, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '770', '440', '1210', '4.5', '108', 'SJCE', 'Electronics and Communication', '9.78', '10', '0')
(3453, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '760', '500', '1260', '4', '90', 'VTU', 'ISE', '7.8', '100', '0')
(3454, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '740', '510', '1250', '3', 'None', 'Maharashtra Institute of Technology', 'Electronics and telecommunications', '6.212', '100', '0')
(3455, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '164', '154', '318', '3.5', '100', 'NIT Hamirpur', 'Mechanical Engineering', '7.34', '10', '0')
(3456, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '152', '310', '3.5', '107', 'MU', 'COMP ENGG', '6', '100', '0')
(3457, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '167', '152', '319', '4', '116', 'Vishwakarma Institute of Technology', 'Mechanical Engineering', '9.47', '10', '22')
(3458, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '153', '315', '3.5', '111', 'Nagpur University', 'Computer Tech', '6.7', '100', '0')
(3459, 'Arizona State University', '6', 'Admit', 'MS', 'Instrumentation and Control', 'Fall ', '2008', '770', '460', '1230', '3.5', '110', 'VIT', 'E&I;', '8.76', '10', '0')
(3460, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2012', '770', '390', '1160', '3.5', '107', 'VTU', 'Electronics and Communication', '7.645999999999999', '100', '0')
(3461, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', 'None', 'None', '0', 'None', 'None', 'VIT', 'Telecommunication Engineering', '8.17', '10', '0')
(3462, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2014', '162', '150', '312', '3', '108', 'University of Petroleum and Energy Studies', 'Civil Engineering', '3.13', '4', '0')
(3463, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '690', '1490', '4.5', '113', 'TCET MU', 'Computer Engineering', '6.9', '100', '0')
(3464, 'Arizona State University', '6', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2011', '770', '460', '1230', '3', '88', 'Anna University', 'Electronics and communication enginnering', '8.1', '10', '0')
(3465, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '161', '156', '317', '4', '106', 'Coimbatore Insitute of Technology', 'Computer Science', '9.4', '10', '30')
(3466, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '800', '580', '1380', '3.5', '106', 'PICT', 'Computer Engg', '3.56', '4', '0')
(3467, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'SVCE', 'Electronics and Communication Engineering', '7.7', '10', '0')
(3468, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and computer engineering electrical engineering telecommunications engineering', 'Fall ', '2015', '170', '157', '327', '4.5', '114', 'Jamia Millia Islamia', 'Electronics and Communication', '8.89', '10', '3')
(3469, 'Arizona State University', '6', 'Admit', 'MS', 'Biomedical Engineering', 'Fall', 'None', '157', '148', '305', '3.5', '93', 'Vidyalankar Institute of Technology', 'biomedical', '7.15', '100', '0')
(3470, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2016', '165', '147', '312', '3', '105', 'VNIT Nagpur', 'Electrical and Electronics', '8.86', '10', '14')
(3471, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '158', '149', '307', '3', '102', 'Sri Sairam Engineering College', 'CSE', '8.4', '100', '0')
(3472, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '640', '1440', '4', '107', 'VTU', 'Telecommunication', '7.7', '100', '0')
(3473, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '147', '310', '3.5', '105', 'ITME', 'Computer Science Engg', '8.08', '10', '0')
(3474, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '760', '460', '1220', '3', '108', 'Sri Sairam Engineering College', 'Mechanical Engineering', '8.15', '10', '0')
(3475, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '730', '490', '1220', '3.5', '101', 'Anna University', 'Mechanical Engineering', '8.53', '10', '0')
(3476, 'Arizona State University', '6', 'Admit', 'MS', 'renewable energy', 'Fall ', '2015', '160', '154', '314', '4', '114', 'BMSCE', 'ECE', '8.1', '10', '0')
(3477, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2011', '790', '650', '1440', '2.5', '106', 'NIT Jalandhar', 'Civil Engineering', '6.22', '10', '0')
(3478, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '146', '308', '3', '102', 'University of Pune', 'Information Tech.', '7.223000000000001', '100', '36')
(3479, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '165', '157', '322', '3.5', '109', 'University of Pune', 'Electronics and Telecommunication', '7.3', '100', '0')
(3480, 'Arizona State University', '6', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2013', '158', '144', '302', '2.5', '81', 'Gujarat Technological University', 'Mechanical Engineeirng', '8.4', '10', '0')
(3481, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '650', '1430', '4.5', '112', 'Dr Ambedkar Institute of Technology', 'Electronics and Communications Engineering', '7.6', '100', '0')
(3482, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '170', '149', '319', '3', '102', 'MSRIT', 'Mechanical', '9.51', '10', '0')
(3483, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '740', '510', '1250', '3.5', '100', 'PSG College of Technology', 'Computer Science and Engineering', '8.94', '10', '0')
(3484, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '168', '161', '329', '4', '110', 'BITS Pilani', 'El', '8.7', '10', '0')
(3485, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '158', '147', '305', '3', '95', 'JNTU', 'ece', '8', '100', '0')
(3486, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '164', '152', '316', '3', '106', 'IIT Hyderabad', 'Electrical Engineering', '8.5', '10', '0')
(3487, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '167', '154', '321', '3', '108', 'FRCRCE-Mumbai University', 'Information Technology', '6.720000000000001', '100', '0')
(3488, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '570', '1370', '4', '113', 'VIT Pune', 'Electronics & Telecom', '8.93', '10', '0')
(3489, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '149', '308', '3.5', '97', 'JUET Guna', 'CSE', '7.2', '10', '0')
(3490, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '168', '152', '320', '3.5', '106', 'Maharashtra Institute of Technology', 'electronics and telecommunication', '7', '100', '0')
(3491, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '170', '158', '328', '4', '108', 'BITS Goa', 'Mechanical', '8.56', '10', '0')
(3492, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '164', '152', '316', '4', '109', 'MU', 'EnT', '7.1', '100', '0')
(3493, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics & Communication', 'Fall ', '2013', '163', '145', '308', '3', 'None', 'Future Institute of Engineering and Management', 'E.C.E', '7.98', '10', '0')
(3494, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '157', '150', '307', '4', '100', 'ssec anna university', 'cse', '8.1', '10', '0')
(3495, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '158', '324', '3', '106', 'MU', 'Computers', '6.6', '100', '0')
(3496, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '149', '307', '3.5', '96', 'MU', 'Information Technology', '7.1', '100', '42')
(3497, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '730', '530', '1260', '3', 'None', 'Anna University', 'Mechanical', '7.133', '100', '0')
(3498, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '167', '155', '322', '4.5', '109', 'Maharaja Agrasen Institute Of Technology', 'B.Tech (Computer Science)', '7.6', '100', '0')
(3499, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2006', '7990', '650', '8640', '5', '297', 'MVSR', 'Mechanical Engg', '7.959999999999999', '100', '0')
(3500, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '165', '154', '319', '3.5', '103', 'PESIT', 'Mechanical', '9.55', '10', '0')
(3501, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '160', '148', '308', 'None', 'None', 'COEP', 'Electrical', '6.2', '10', '0')
(3502, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '165', '155', '320', '3', '103', 'JSS Noida', 'electrical', '6.5', '100', '0')
(3503, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '156', '318', '3.5', '110', 'UPTU', 'Electronics', '6.473999999999999', '100', '42')
(3504, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '590', '1390', '3.5', '110', 'NIT Surat', 'Computer Engg.', '7.54', '10', '0')
(3505, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', 'None', 'None', '0', 'None', 'None', 'COEP', 'mechanical engineering', '7.98', '10', '6')
(3506, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '166', '144', '310', '3.5', '110', 'Pune University', 'Computer Engineerinmg', '9.17', '10', '0')
(3507, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '162', '150', '312', '3', '94', 'GITAM', 'ECE', '7.909999999999999', '100', '0')
(3508, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '162', '151', '313', '3', '104', 'PICT', 'CS', '3.5', '4', '0')
(3509, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '157', '319', '5', '116', 'Symbiosis Institute of Technology', 'Computer Science and Information Technology', '2.8', '4', '24')
(3510, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '168', '159', '327', '4', '116', 'University of Mumbai', 'EXTC', '7.248', '100', '0')
(3511, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '540', '1300', '3.5', '102', 'VJTI', 'Information Technology', '8.4', '10', '0')
(3512, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '167', '143', '310', '3.5', '98', 'St Francis Institute of Technology - Mumbai Unversity', 'Computer Engineering', '7', '100', '0')
(3513, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '154', '317', '4', '104', 'VTU', 'Information Science and engineering', '7.8', '100', '0')
(3514, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '161', '153', '314', '4.5', '103', 'PESIT', 'Mechanical Engineering', '0.857', '100', '0')
(3515, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2011', '800', '670', '1470', '4', '111', 'Manipal Institue of Technology', 'ECE', '9.7', '10', '0')
(3516, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '720', '1510', '4.5', 'None', 'NIT Durgapur', 'Computer Science and Engineering', '8.28', '10', '0')
(3517, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '161', '149', '310', '3.5', '110', 'PESIT', 'ECE', '0.8640000000000001', '100', '0')
(3518, 'Arizona State University', '6', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2013', '164', '151', '315', '5', '110', 'None', 'Biomedical Engg', '8.1', '10', '0')
(3519, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '163', '153', '316', '4', '114', 'Anna University', 'EEE', '9.25', '10', '12')
(3520, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '151', '317', '3.5', 'None', 'VJTI', 'computer science', '8.4', '10', '0')
(3521, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '590', '1390', '4', '109', 'Manipal Institue of Technology', 'Computer Science and Engineering', '7.71', '10', '0')
(3522, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '163', '163', '326', '4.5', '112', 'None', '0', '0', '0', '0')
(3523, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '165', '149', '314', '4', '106', 'IIITDM Kancheepuram', 'Computer Engineering', '8.61', '10', '0')
(3524, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '155', '167', '322', '3.5', '102', 'NIT Hamirpur', 'Electrical Engg', '7.38', '10', '56')
(3525, 'Arizona State University', '6', 'Admit', 'MS', 'energy', 'Fall ', '2012', '760', '450', '1210', '3', '104', 'VIT Pune', 'Instrumentation & Control', '8.61', '10', '0')
(3526, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2014', '168', '154', '322', '3.5', '105', 'PSG College of Technology', 'Electrical and Electronics Engineering', '9.23', '10', '0')
(3527, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '590', '1390', '3', '111', 'K J Somaiya College of Engiineering', 'Computer Engineering', '7.5120000000000005', '100', '0')
(3528, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '166', '154', '320', '3.5', '104', 'VNIT Nagpur', 'Electrical and Electronics Engg.', '8.52', '10', '0')
(3529, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '164', '147', '311', '3', '102', 'PICT', 'EnTC', '3', '4', '0')
(3530, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2009', '800', '550', '1350', '4.5', '109', 'K J Somaiya College of Engiineering', 'computer', '7.2', '100', '0')
(3531, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '170', '157', '327', '4', 'None', 'LNMIIT', 'COMPUTER SCIENCE', '8.2', '10', '0')
(3532, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '580', '1360', '3.5', '114', 'Osmania University', 'IT', '7.3', '100', '0')
(3533, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering/Comp Science', 'Fall ', '2014', '167', '149', '316', '3', '98', 'NIT Hamirpur', 'Computer Science and Engineering', '8.11', '10', '0')
(3534, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '560', '1360', '3.5', '107', 'IIT BHU', 'Electrical Engineering', '7.3', '10', '0')
(3535, 'Arizona State University', '6', 'Admit', 'MS', 'CS', 'Fall ', '2014', '164', '146', '310', '3', '91', 'VTU', 'CSE', '7.18', '100', '0')
(3536, 'Arizona State University', '6', 'Admit', 'MS', 'Metallurgy and Materials Engineering', 'Fall ', '2013', '167', '151', '318', '4', '106', 'Delhi College Of Engineeing', 'Mechanical Engineering', '7', '100', '0')
(3537, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '165', '147', '312', '3', '91', 'B V Bhoomaraddi College of Engg & Tech (Affiliated to VTU)', 'ELECTRONICS AND COMMUNICAION', '9.48', '10', '0')
(3538, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '162', '147', '309', '3.5', '90', 'JSS Noida', 'INDUSTRIAL ENGINEERING AND MANAGEMENT', '7.140000000000001', '100', '16')
(3539, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '550', '1350', '3', '102', 'PEC University of Technology', 'Computer Science', '7.46', '10', '0')
(3540, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '640', '1440', '3.5', '97', 'IIIT Hyderabad', 'Computer Science', '8.22', '10', '0')
(3541, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '151', '315', '3.5', '105', 'SASTRA', 'ICT', '9.11', '10', '0')
(3542, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '154', '317', '3', '107', 'University of Mumbai', 'Computer Engineering', '6.968000000000001', '100', '0')
(3543, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics & Communication', 'Fall ', '2012', '800', '400', '1200', '3.5', '108', 'YCCE', 'Electronics and Telecommunication', '7.891', '100', '0')
(3544, 'Arizona State University', '6', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall', 'None', '154', '146', '300', 'None', '94', 'None', '0', '0', '0', '0')
(3545, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2007', '790', '640', '1430', '5', '117', 'PESIT', 'Electronics and Communication', '8.5', '100', '0')
(3546, 'Arizona State University', '6', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '163', '153', '316', '4', '111', 'RNSIT', 'Computer Science', '8.417', '100', '0')
(3547, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', 'None', 'None', '0', 'None', 'None', 'Pondicherry University', 'ELECTRONICS & COMMUNICATION', '7.8', '10', '0')
(3548, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '158', '151', '309', '3', '101', 'PSG College of Technology', 'MECHANICAL ENGINEERING', '8', '10', '0')
(3549, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '780', '580', '1360', '3', '98', 'SRM', 'Mechanical Engineering', '7.74', '10', '0')
(3550, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2016', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(3551, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '163', '160', '323', '4', '115', 'SRM', 'ECE', '9.157', '10', '0')
(3552, 'Arizona State University', '6', 'Admit', 'MS', 'Computational Science', 'Spring ', '2015', '164', '148', '312', '3.5', '106', 'Amrita School of Engineering', 'CSE', '7.81', '10', '36')
(3553, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '155', '317', '4', '111', 'Mahatma Gandhi University Kerala', 'Computer Science And Engineering', '7.5', '100', '0')
(3554, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2006', '800', '650', '1450', '4', '283', 'CEG', 'ECE', '8.6', '10', '0')
(3555, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '165', '145', '310', '3', '95', 'CEG', 'Computer Science', '8.33', '10', '60')
(3556, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '167', '149', '316', '3', '99', 'Northern India Engg College (GGSIPU)', 'Information Technology', '7.745', '100', '29')
(3557, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2013', '770', '440', '1210', '3', '97', 'Valliammai Engineering College', 'ELECTRONICS AND INSTRUMENTATION ENGINEERING', '8.59', '10', '0')
(3558, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2013', '160', '146', '306', '3.5', '101', 'Osmania University', 'Mechanical(Industrial Production Engineering)', '7', '100', '0')
(3559, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '780', '450', '1230', '3', '92', 'SASTRA', 'ECE', '7.39', '10', '0')
(3560, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '168', '160', '328', '3.5', '108', 'Walchand College Of Engineering', 'Computer Science and Engg', '7.5', '10', '0')
(3561, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '162', '158', '320', '3', '111', 'NIT Warangal', 'Electronics and Communication Engineering', '8.19', '10', '30')
(3562, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '800', '350', '1150', '3.5', '273', 'Anna University', 'Electronics and Communication', '7.8', '100', '0')
(3563, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '750', '570', '1320', '3.5', '97', 'SASTRA', 'ELECTRONICS AND COMMUNICATION', '8.47', '10', '0')
(3564, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '168', '335', '4', '115', 'VNIT Nagpur', 'ECE', '8.83', '10', '0')
(3565, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '550', '1350', '4', '107', 'VESIT', 'Instrumentation engg', '7.202', '100', '0')
(3566, 'Arizona State University', '6', 'Admit', 'MS', 'Business Analytics', 'Fall ', '2015', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(3567, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '790', '640', '1430', '3.5', '104', 'Mar Athanasius College of Engineering Kerala', 'Electronics and Communication', '7.1', '100', '0')
(3568, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '170', '154', '324', '4', '110', 'GGSIPU', 'Computer Science', '7.8', '100', '0')
(3569, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '161', '158', '319', '3.5', '106', 'Chaitanya Bharathi Institute of Technology', 'MECHANICAL', '8.391', '100', '0')
(3570, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '156', '317', '3', '110', 'VJTI', 'Computer', '8.1', '10', '0')
(3571, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '167', '148', '315', '3.5', '90', 'COEP', 'Mechanical engineering', '7.45', '10', '30')
(3572, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '159', '161', '320', '3.5', '113', 'West Bengal University Of Technology', 'ECE', '8.7', '10', '0')
(3573, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '156', '148', '304', '3', '101', 'PICT', 'Information Technology', '3.63', '4', '0')
(3574, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '780', '550', '1330', '3.5', '103', 'Sardar Patel College of Engineering', 'Mechanical', '6.8', '100', '0')
(3575, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', 'None', 'None', '0', '4', 'None', 'VTU', 'Information Science', '8.5', '100', '0')
(3576, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '155', '317', '3.5', '115', 'Biju Patnaik University of Technology', 'Electronics and Telecommunication', '9.07', '10', '0')
(3577, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2007', '770', '460', '1230', '1230', '270', 'VTU', 'Instrumentation Technology', '8.24', '100', '0')
(3578, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '570', '1350', '3', '98', 'WBUT', 'CSE', '8.46', '10', '0')
(3579, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '149', '312', '3', '86', 'CBIT', 'CSE', '8.08', '100', '0')
(3580, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '153', '314', '4', '111', 'SASTRA', 'Information Technology', '7.99', '10', '0')
(3581, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '168', '154', '322', '3', '103', 'IIT Guwahati', 'Mechaanical', '8.6', '10', '3')
(3582, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '159', '148', '307', '3', '307', 'Osmania University', 'CSE', '8.5', '100', '0')
(3583, 'Arizona State University', '6', 'Admit', 'MS', 'Sustainable enrgy and environment', 'Fall ', '2012', '161', '152', '313', '3.5', '97', 'NIT Nagpur', 'Mechanical', '6.9', '10', '0')
(3584, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '157', '322', '4', '110', 'NITK Surathkal', 'Computer Engineering', '0', '0', '0')
(3585, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '760', '530', '1290', '2.5', '98', 'Sri Sairam Engineering College', 'CS', '7.72', '10', '0')
(3586, 'Arizona State University', '6', 'Admit', 'MS', 'Embedded systems', 'Fall ', '2013', '168', '152', '320', '3.5', '106', 'None', '0', '8.56', '10', '0')
(3587, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '165', '148', '313', '2.5', '97', 'NIT Allahabad', 'Mechanical Engineering', '7.26', '10', '0')
(3588, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '147', '145', '292', '2.5', '90', 'Bharati Vidyapeeth', 'Mechanical', '6.765000000000001', '100', '0')
(3589, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '740', '510', '1250', 'None', 'None', 'Jaypee Institute of Information Technology', 'ECE', '8.2', '10', '0')
(3590, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '590', '1390', '3', '106', 'NIT Calicut', 'ECE', '8.34', '10', '0')
(3591, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '760', '550', '1310', '4', '110', 'Pune University', 'Computer Engineering', '6.339', '100', '0')
(3592, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '163', '157', '320', '3', '97', 'YMCA', 'Electronics & Instrumentation & Control', '8.44', '10', '36')
(3593, 'Arizona State University', '6', 'Admit', 'MS', 'MEMS & NANOTECHNOLOGY', 'Fall ', '2012', '680', '620', '1300', '4.5', '115', 'Mahrishi Dayanand University', 'Instrumentation and controls engg.', '6.958', '100', '0')
(3594, 'Arizona State University', '6', 'Admit', 'MS', 'Chemical Engineering', 'Fall ', '2015', '166', '158', '324', '4', '115', 'Panjab University', 'Dr SSB university Inst. of Chemical Engg. and Tech.', '9.098', '10', '0')
(3595, 'Arizona State University', '6', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2013', '156', '150', '306', '2.5', '98', 'Manipal Institue of Technology', 'Electrical and Electronics', '8.76', '10', '0')
(3596, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '800', '600', '1400', '4', '108', 'Delhi College Of Engineeing', 'Mechanical Engineering', '7.433', '100', '0')
(3597, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '166', '143', '309', '3', '92', 'VTU', 'Electronics and Communication', '8.7', '100', '0')
(3598, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '800', '620', '1420', '3.5', '103', 'MSRIT', 'Mechanical', '9.34', '10', '0')
(3599, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall', 'None', '800', '440', '1240', '3', '97', 'MU', 'mech', '7.1', '100', '0')
(3600, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '760', '480', '1240', 'None', '113', 'GGSIPU', 'Mechanical and Automation', '0', '0', '0')
(3601, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '170', '148', '318', '3', '112', 'NIT Delhi', 'CSE', '8.23', '10', '0')
(3602, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '167', '155', '322', '3', '101', 'IP University Delhi', 'Computer Science', '8.3', '100', '0')
(3603, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '770', '510', '1280', '4.5', '273', 'Atharva College', 'Computer Engineering', '6.011', '100', '0')
(3604, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '148', '309', '3.5', '105', 'VTU', 'Computer Science', '7.2', '100', '6')
(3605, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '570', '1360', '4', '110', 'PESIT', 'Telecommunications', '8.33', '10', '0')
(3606, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '520', '1320', '4.5', '112', 'VTU', 'ECE', '7.5', '100', '0')
(3607, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '650', '1450', '4.5', '111', 'MU', 'Electronics & Telecommunication', '7.234', '100', '0')
(3608, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '550', '1330', '4.5', '112', 'University of Kerala', 'Electronics and Communication Engineering', '8.4', '100', '0')
(3609, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '790', '560', '1350', '3', '100', 'Panjab University', 'Mechanical Engineering', '6.563', '100', '0')
(3610, 'Arizona State University', '6', 'Admit', 'MS', 'Business Analytics', 'Fall ', '2015', '159', '151', '310', '3', '99', 'GGSIPU', 'Chemical Engineering', '7.253', '100', '26')
(3611, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '168', '148', '316', '3', '102', 'VIT', 'ECE', '9.14', '10', '0')
(3612, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '530', '1300', '3', '111', 'VIT', 'Information Technology', '6.4239999999999995', '100', '0')
(3613, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '660', '1410', '4', '113', 'NIT', 'computer', '8.92', '10', '0')
(3614, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '167', '152', '319', '3.5', '108', 'Amrita School of Engineering', 'EEE', '9.01', '10', '24')
(3615, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '164', '152', '316', '3', '97', 'BITS Pilani', 'Mechanical', '7.35', '10', '0')
(3616, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '800', '640', '1440', '3.5', '108', 'IIT Roorkee', 'Industrail Eng', '0.71', '100', '0')
(3617, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '146', '306', '4.5', '100', 'Chandigarh Engineering College Landran', 'Information Technology', '7.3', '100', '0')
(3618, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '160', '152', '312', '4', '101', 'MU', 'Mechanical Engg.', '6.8', '100', '0')
(3619, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '159', '150', '309', '4', '114', 'VTU', 'CSE', '7.459999999999999', '100', '24')
(3620, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '720', '1520', '4', '103', 'KIIT', 'Electronics and Electrical', '8.82', '10', '0')
(3621, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '167', '153', '320', '3.5', '110', 'NIT Kurukshetra', 'Electronics and Communication', '8.847', '10', '12')
(3622, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '740', '620', '1360', '3.5', '104', 'MU', 'Mechanical', '5.929', '100', '0')
(3623, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2014', '165', '152', '317', '4.5', '112', 'GITAM', 'Civil engineering', '7.48', '10', '0')
(3624, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '317', '155', '472', '3', '106', 'MS uni', 'electronics', '3.91', '4', '0')
(3625, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '167', '156', '323', '4', '116', 'University of Mumbai', 'Computer Engineering', '6.555', '100', '16')
(3626, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Spring ', '2012', '760', '380', '1140', '3', '97', 'VITU', 'SENSE', '8.7', '10', '0')
(3627, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '164', '152', '316', '3.5', '100', 'University of Kerala', 'Electrical & Electronics Engineering', '9.06', '10', '0')
(3628, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '164', '147', '311', '2.5', '99', 'Osmania University', 'mechanical engineering', '8.3', '10', '0')
(3629, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '165', '149', '314', '3', '95', 'RGPV', 'Mechanical Engineering', '7', '10', '0')
(3630, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '159', '319', '4.5', '118', 'SSN College of Engineering', 'CSE', '8.6', '10', '0')
(3631, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '166', '157', '323', '3.5', '115', 'PESIT', 'Electronics and Communication', '9.03', '10', '0')
(3632, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '660', '1460', '3.5', '104', 'None', '0', '7.22', '10', '0')
(3633, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '510', '1310', '3.5', '94', 'CVRCE', 'ECE', '8.4', '100', '0')
(3634, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '156', '316', '3.5', '100', 'VTU', '0', '7.9', '100', '0')
(3635, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '163', '151', '314', '3.5', '116', 'Sri Jayachamarajendra College of Engineering', 'Electronics and Communication', '9.17', '10', '0')
(3636, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '142', '303', '3.5', '95', 'VTU', 'CS', '8.57', '10', '0')
(3637, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '700', '1450', '4', '110', 'VTU', 'CS', '7.9', '100', '0')
(3638, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '151', '311', '3', 'None', 'VTU', 'Computer Science', '8.18', '100', '0')
(3639, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '167', '161', '328', '4', '108', 'IIT Kharagpur', 'Industrial Engineering', '8.09', '10', '0')
(3640, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Spring ', '2012', '800', '560', '1360', '4.5', '111', 'None', '0', '0', '0', '0')
(3641, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '163', '155', '318', '3', '109', 'VIT University', 'Mechanical Engineering', '8.64', '10', '0')
(3642, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '152', '311', '4', '110', 'MU', 'Computer engg', '6.2', '100', '0')
(3643, 'Arizona State University', '6', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '157', '165', '322', '4', '110', 'PESIT', 'CSE', '8.34', '10', '0')
(3644, 'Arizona State University', '6', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '800', '650', '1450', '4', '115', 'University of Mumbai', 'Computer Engg', '7', '100', '0')
(3645, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '750', '630', '1380', '3', '97', 'University of Enngineering and Technology Taxila', 'Electrical', '9.05', '100', '0')
(3646, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '154', '322', '4', '112', 'VTU', 'Computer Science', '7', '100', '45')
(3647, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '800', '680', '1480', '4.5', '277', 'PESIT', 'EC', '7.7', '100', '0')
(3648, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '740', '440', '1180', '3', '103', 'Anna University', 'ece', '8.2', '100', '0')
(3649, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '640', '1440', '3.5', '110', 'University of Mumbai', 'Computer Engineering Department', '6.1', '100', '0')
(3650, 'Arizona State University', '6', 'Admit', 'MS', 'Materials Science & Engineering', 'Fall ', '2011', '800', '540', '1340', '4', '107', 'NIT Nagpur', 'Metallurgy and Material Science', '8.86', '10', '0')
(3651, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '160', '324', '4.5', '115', 'K J Somaiya College of Engiineering', 'Computer Science', '7.45', '100', '0')
(3652, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '170', '161', '331', '4.5', '115', 'BITS Pilani', 'Electrical and Electronics', '8.04', '10', '0')
(3653, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and computer science', 'Fall ', '2011', '740', '520', '1260', 'None', '86', 'BMSCE', 'E&C;', '7.945', '100', '0')
(3654, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '155', '321', '3.5', '111', 'None', 'Computer Science', '9.06', '10', '0')
(3655, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '159', '150', '309', '3', '92', 'New Horizon College of Engineering', 'computer science', '7.9', '100', '48')
(3656, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '166', '156', '322', '4', '109', 'WBUT', 'CSE', '8.18', '10', '62')
(3657, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '160', '150', '310', '3.5', '104', 'VTU', 'Computer Science', '7.6', '100', '0')
(3658, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2006', '710', '510', '1220', '4', '270', 'Punjab Technical University', 'PRODUCTION ENGINEERING', '7.6', '100', '0')
(3659, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Spring ', '2012', '770', '530', '1300', '4', '93', 'Punjab Engineering College', 'Mechanical Engineering', '8.04', '10', '0')
(3660, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '160', '155', '315', '4', '101', 'Guru Gobind Singh Indraprashta University', 'Mechanical & Automation Engineering', '7.5', '100', '0')
(3661, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '154', '320', '4', '107', 'WBUT', '0', '7.7', '10', '0')
(3662, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '168', '154', '322', '3', '103', 'Institute of Engineering & Management', 'Computer Science & Engineering', '8.2', '10', '0')
(3663, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '530', '1330', '3', '94', 'Uttarakhand Technical University', 'Computer Science Engineering', '7.5200000000000005', '100', '0')
(3664, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '168', '162', '330', '3', '111', 'BIT Mesra', 'Electronics and Communication', '7.72', '10', '0')
(3665, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '157', '318', '3', '105', 'UPTU', 'IT', '7.1', '100', '0')
(3666, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '170', '148', '318', '3', '100', 'PEC University of Technology', 'Electrical Engg.', '7', '10', '0')
(3667, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '166', '156', '322', '4', '114', 'RMK Engineering College', 'BE CSE', '7.85', '10', '15')
(3668, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '166', '334', '3.5', '107', 'University School of Technology IP Univ Delhi', 'Information Technology', '7.4', '100', '0')
(3669, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '660', '1460', '3', 'None', 'SSN College of Engineering', 'CSE', '7.7299999999999995', '100', '0')
(3670, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '154', '321', '4', '113', 'The LNM Institute of Information Technology', 'Electrocnics and Communication', '9.2', '10', '0')
(3671, 'Arizona State University', '6', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2011', '700', '360', '1060', 'None', '105', 'Softvision College', 'Bioinformatics', '7.8', '100', '0')
(3672, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '164', '156', '320', '3.5', '110', 'Graphic Era University', 'Computer Science', '8.3', '100', '24')
(3673, 'Arizona State University', '6', 'Admit', 'MS', 'Materials Science', 'Fall ', '2015', '166', '151', '317', '3', '108', 'BITS Pilani', 'Mechanical &Physics;', '6.26', '10', '0')
(3674, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '162', '158', '320', '4', '115', 'Amrita Vishwa Vidhyapeetham', 'CSE', '8.1', '10', '0')
(3675, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '147', '308', '3.5', '91', 'Manipal Institue of Technology', 'Computer Science', '8.54', '10', '0')
(3676, 'Arizona State University', '6', 'Admit', 'MS', 'Management Information System', 'Fall ', '2014', '800', '540', '1340', '3', '106', 'RTM Nagpur University', 'Electronics', '7.3629999999999995', '100', '0')
(3677, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '760', '440', '1200', '4', '107', 'Rajarshi Shahu College of Enginneering', 'Computer Science', '6.6', '100', '0')
(3678, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '760', '630', '1390', '3', 'None', 'VJTI', 'IT', '7.7', '10', '0')
(3679, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '154', '314', '3', '107', 'SIES Graduate School of Technology', 'CE', '6.7', '100', '0')
(3680, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '170', '159', '329', '4.5', '113', 'MSRIT', 'EC', '9.1', '10', '0')
(3681, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '168', '159', '327', '3.5', '115', 'Anna University', 'Electronics and Communication Engineering', '7.9', '10', '0')
(3682, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '160', '163', '323', '4', '109', 'None', 'EC', '7.775', '100', '0')
(3683, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '151', '311', '3.5', '103', 'GNDU', 'CS', '7.1', '100', '0')
(3684, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '166', '152', '318', '3', '110', 'Sikkim Manipal Institute of Technology', 'Computer Science', '7.19', '10', '51')
(3685, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '157', '316', '3.5', '104', 'MNMJEC', 'CSE', '8.48', '10', '0')
(3686, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '152', '314', '3.5', 'None', 'SASTRA', 'ICT', '0.717', '100', '0')
(3687, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Fall', 'None', '165', '157', '322', '3.5', '110', 'None', 'Civil Engineering', '8.19', '10', '0')
(3688, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '165', '154', '319', '4', '115', 'DA-IICT', 'ICT ( Information and Communication Technology)', '7.75', '10', '0')
(3689, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Summer ', '2013', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(3690, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '540', '1340', '4', '112', 'RNSIT', 'Electronics and Communication', '7.5', '100', '0')
(3691, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '146', '308', '3', 'None', 'CEG', 'Computer Science', '8.59', '10', '0')
(3692, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '158', '146', '304', '3.5', 'None', "St Joseph's College of Engineering", 'electronics and instrumentation engg', '8.92', '10', '0')
(3693, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '690', '510', '1200', '4', '102', 'PESIT', 'CS', '0', '0', '0')
(3694, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2016', '157', '145', '302', '3.5', '103', 'VIT University', 'Computer Science & Engineering', '7.85', '10', '0')
(3695, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '146', '307', 'None', '95', 'Govt. College of Engg Amravati(Autonomous Institute)', 'Computer Science & Engineering', '7.99', '10', '0')
(3696, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '163', '159', '322', '4.5', '115', 'MSRIT', 'Telecommunications Engineering', '9.07', '10', '0')
(3697, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '164', '153', '317', '3', '102', 'DSCE', 'CS', '7.7', '100', '0')
(3698, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '159', '324', '4', '112', 'Maharaja Sayajirao University Of Baroda', 'Computer Science and Engineering', '3.74', '4', '0')
(3699, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2012', '680', '470', '1150', '3.5', '99', 'Anna University', 'EIE', '8', '100', '0')
(3700, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '460', '1260', '3.5', '99', 'Mahatma Gandhi University Kerala', 'Electronics & Communication', '7.95', '100', '0')
(3701, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2008', '800', '560', '1360', '5.5', '117', 'University of Calicut', 'Electronics and Communication Engg', '7.9', '100', '0')
(3702, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2013', '168', '154', '322', '3.5', '108', 'VTU', 'Electronics and Communication', '8.5', '100', '0')
(3703, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '165', '164', '329', '4', '113', 'JSSATE', 'IT', '7.2', '100', '0')
(3704, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '760', '440', '1200', '3', '110', 'University of Pune', 'Computer Science', '6.681', '100', '0')
(3705, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '152', '313', '4', '101', 'Goa University', 'Information Technology', '7.4', '100', '0')
(3706, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '770', '550', '1320', '4', '105', 'Coimbatore Insitute of Technology', 'EEE', '8.4', '10', '0')
(3707, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '520', '1310', '3', '113', 'SJCE', 'EEE', '7.4', '100', '0')
(3708, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '167', '165', '332', '4', '107', 'NIT Calicut', 'Electrical and Electronics Engineering', '7.54', '10', '0')
(3709, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '163', '154', '317', '4', '100', 'BITS Hyderabad', 'Mechanical Engineering', '9.35', '10', '0')
(3710, 'Arizona State University', '6', 'Admit', 'MS', 'MSIM', 'Fall', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(3711, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '660', '1460', '3.5', '103', 'JNTU', 'CS', '7.6', '100', '0')
(3712, 'Arizona State University', '6', 'Admit', 'MS', 'physics', 'Fall ', '2011', '800', '530', '1330', '4.5', '115', 'BITS Pilani', 'Physics Electrical and Electronics', '9.17', '10', '0')
(3713, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2014', '170', '142', '312', '3', '92', 'NIT Surat', 'Mechanical engineering', '7.32', '10', '0')
(3714, 'Arizona State University', '6', 'Admit', 'MS', 'ASTRONOMY / ASTROPHYSICS', 'Fall ', '2013', '780', '610', '1390', 'None', '112', 'Univ of Mumbai', 'Mech. Eng.', '0', '0', '0')
(3715, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '730', '600', '1330', '3.5', '109', 'Amrita Vishwa Vidhyapeetham', 'Computer Science', '7.73', '10', '0')
(3716, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '166', '153', '319', '3.5', '115', 'COEP', 'Electronics and Telecommunication Engineering', '9.1', '10', '0')
(3717, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '700', '580', '1280', '3.5', '108', 'SSN College of Engineering', 'Computer Science', '7.85', '100', '0')
(3718, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '750', '500', '1250', '3.5', '112', 'VTU', 'Mechanical', '7.6659999999999995', '100', '0')
(3719, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '730', '490', '1220', '3', '93', 'Meenakshi Sundararajan Engineering College', 'cse', '8', '100', '0')
(3720, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '770', '610', '1380', '4.5', '287', 'RAIT', 'CE', '6.2', '100', '0')
(3721, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2006', '800', '510', '1310', '4', '270', 'Kerala University', 'Electronics and Communication', '7.9', '100', '0')
(3722, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '170', '162', '332', '3', '107', 'IIT Mandi', 'Computer Science', '6.74', '10', '16')
(3723, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '590', '1380', '3', '110', 'NIT Silchar', 'Computer Science', '7.52', '10', '0')
(3724, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '740', '620', '1360', '4', '106', 'Anna University', 'computer science', '8.1', '100', '0')
(3725, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '159', '326', '3.5', '114', 'R V College of Engineering', 'electrical and Electronics', '8.76', '10', '0')
(3726, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '760', '580', '1340', '4', '111', 'CEG', 'ECE', '8.47', '10', '0')
(3727, 'Arizona State University', '6', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '790', '510', '1300', 'None', '105', 'Thadomal Shahani Engineering College', 'Information Technology', '3.9', '4', '0')
(3728, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '166', '162', '328', '3', '103', 'None', 'computer science', '7.68', '10', '0')
(3729, 'Arizona State University', '6', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(3730, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '152', '316', '3', '91', 'CBIT', 'Computer Science', '8.43', '100', '12')
(3731, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '164', '151', '315', '4', 'None', 'None', 'CS', '9.26', '10', '0')
(3732, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '159', '321', '3', '110', 'SRM', 'Mechatronics', '8.57', '10', '0')
(3733, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '164', '153', '317', '4', '112', 'SSN College of Engineering', 'ECE', '8.72', '10', '0')
(3734, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '162', '143', '305', '3.5', '99', 'GITAM', 'ECE', '8.74', '10', '0')
(3735, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '168', '152', '320', '3.5', '113', 'PSG College of Technology', 'MEchanical', '8.4', '10', '4')
(3736, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '800', '640', '1440', '5', '114', 'COEP', 'Production Engineering', '7.88', '10', '0')
(3737, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '161', '156', '317', '4', 'None', 'BMSCE', 'Industrial Engineering', '7.1', '100', '0')
(3738, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '800', '580', '1380', '3', '112', 'BITS Pilani', 'Electronics and Instrumentation', '7.76', '10', '0')
(3739, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '163', '147', '310', '3', 'None', 'Osmania University', 'mechanical engineering', '8.7', '100', '1')
(3740, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '155', '157', '312', '3.5', '110', 'R V College of Engineering', 'Instrumentation Technology', '0.942', '100', '0')
(3741, 'Arizona State University', '6', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2013', '790', '430', '1220', '3', '93', 'VIT University', 'ECE', '8.62', '10', '0')
(3742, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '170', '160', '330', '4', 'None', 'BITS Pilani', 'EEE', '8.7', '10', '0')
(3743, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '163', '147', '310', '3.5', '104', 'SRM', 'Electronics and Communication', '7.72', '10', '35')
(3744, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '163', '149', '312', '2.5', '91', 'Institute of Technology Nirma University', 'Computer Science', '7.49', '10', '0')
(3745, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '168', '154', '322', '3', '90', 'VJTI', 'Mechanical', '8', '10', '0')
(3746, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '800', '630', '1430', '660', '293', 'Nirma Institute of Technology', 'Information Technology', '7.938', '100', '0')
(3747, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '162', '151', '313', '4', '109', 'Anna University', 'IT', '7.92', '10', '0')
(3748, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '155', '317', '3', '101', 'NIT Alld', 'CSE', '7.7', '10', '48')
(3749, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '160', '324', '3', '108', 'RGPV', 'Computer Science', '7.412999999999999', '100', '0')
(3750, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '164', '145', '309', '3', '97', 'PESIT', 'ECE', '8.72', '10', '0')
(3751, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '151', '312', '3', 'None', 'Medicaps Institute of Science & Technology Indore', 'CS', '7.7', '100', '0')
(3752, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '560', '1360', '3', '93', 'SLC', 'ECE', '8.42', '100', '0')
(3753, 'Arizona State University', '6', 'Admit', 'MS', 'Electronic and Telecommunication Engineering', 'Fall ', '2011', '800', '500', '1300', '3.5', '100', 'West Bengal University Of Technology', 'ECE', '8.53', '10', '0')
(3754, 'Arizona State University', '6', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2012', '800', '650', '1450', '4.5', '115', 'SSN College of Engineering', 'Biomedical Engineering', '8.38', '10', '0')
(3755, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2007', '800', '720', '1520', '5', '280', 'PESIT', 'Electronics and Communication', '8.6', '100', '0')
(3756, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2015', '166', '163', '329', '4', '117', 'Medicaps Institute of Science & Technology Indore', 'ECE', '8.040000000000001', '100', '24')
(3757, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2007', '800', '660', '1460', '3.5', '112', 'VTU', 'ECE', '0', '0', '0')
(3758, 'Arizona State University', '6', 'Admit', 'MS', 'Operations Research', 'Fall ', '2015', '165', '157', '322', '3', '111', 'BITS Pilani', 'MECHANICAL ENGINEERING', '7.56', '10', '0')
(3759, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '510', '1310', '3.5', '94', 'BITS Goa', 'E.E', '7.21', '10', '0')
(3760, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '162', '156', '318', '4', '112', 'VTU', 'Instrumentation Technology', '9.57', '10', '0')
(3761, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '800', '590', '1390', '4', '113', 'Amrita School of Engineering', 'ECE', '7.73', '10', '0')
(3762, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '166', '150', '316', '3.5', 'None', 'NITK Surathkal', '0', '8.73', '10', '0')
(3763, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '154', '317', '3', '108', 'VTU', 'Computer Science', '7.8', '100', '0')
(3764, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '730', '560', '1290', '4', '115', 'SSN College of Engineering', 'ECE', '8', '100', '0')
(3765, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '770', '590', '1360', '3', '102', 'Rajiv Gandhi Institute Of Technology', 'MECHANICAL ENGINEERING', '6.3', '100', '0')
(3766, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '163', '154', '317', '3.5', '100', 'Anna University', 'Electronics and Communication', '8.174', '100', '0')
(3767, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '580', '1380', '3.5', '109', 'NIT Karnataka', 'Electrical and Electronics', '7.81', '10', '0')
(3768, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '161', '156', '317', '4', '105', 'Sathyabama University', 'Mechanical Engineering', '7.456', '10', '0')
(3769, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '161', '151', '312', '3.5', '104', 'Anna University', 'IT', '6.82', '10', '24')
(3770, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '167', '151', '318', 'None', '98', 'BITS Pilani', 'EEE', '6.92', '10', '0')
(3771, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '162', '145', '307', '4', '102', 'VTU', 'telecommunication', '9.24', '10', '36')
(3772, 'Arizona State University', '6', 'Admit', 'MS', 'CS', 'Fall ', '2014', '161', '149', '310', '3.5', '102', 'Manipal Institue of Technology', 'Computer Science', '8.96', '10', '0')
(3773, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2012', '165', '149', '314', '3', '91', 'BITS Goa', 'EEE', '6.43', '10', '0')
(3774, 'Arizona State University', '6', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(3775, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '149', '312', '3.5', '102', 'Coimbatore Insitute of Technology', 'CSE', '8.6', '10', '20')
(3776, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '800', '630', '1430', '3.5', '112', 'BITS Pilani', 'Electrical and Electronics', '7.95', '10', '0')
(3777, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2006', '800', '610', '1410', '4.5', '277', 'Crescent Engineering College', 'ECE', '8.45', '100', '0')
(3778, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '165', '149', '314', '3.5', '107', 'CEG', 'Electronics and communication', '8.67', '10', '0')
(3779, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '161', '157', '318', '3', '103', 'Anna University', 'Mechanical Engineering', '8.31', '10', '0')
(3780, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '147', '311', '3', 'None', 'NIE', 'CSE', '8.87', '10', '0')
(3781, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2012', '800', '480', '1280', '3', '100', 'NIT Warangal', 'Mechanical', '8.08', '10', '0')
(3782, 'Arizona State University', '6', 'Admit', 'MS', 'Business Analytics', 'Fall ', '2014', 'None', 'None', '0', 'None', '108', 'IIT Guwahati', '0', '0', '0', '0')
(3783, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '500', '1260', '3', '102', 'VIT University', 'BTECH/CSE', '8.94', '10', '0')
(3784, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '450', '1230', '4', '105', 'VTU', 'CSE', '7.45', '100', '0')
(3785, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '161', '146', '307', '3', '93', 'VIT', 'ece', '7.23', '10', '18')
(3786, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '150', '311', '3', '106', 'SSN College of Engineering', 'EEE', '7.98', '10', '0')
(3787, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '164', '155', '319', '4.5', '115', 'VJTI', 'PRODUCTION', '8.3', '10', '0')
(3788, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2013', '165', '152', '317', '3', '102', 'SASTRA', 'ECE', '8.18', '10', '0')
(3789, 'Arizona State University', '6', 'Admit', 'MS', 'Aerospace Engineering', 'Spring ', '2014', '760', '600', '1360', '4', '112', 'SIT', 'Mech', '7.1', '100', '0')
(3790, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '510', '1260', '4', '108', 'Amrita Vishwa Vidhyapeetham', 'Computer Science and Engineering', '8.36', '10', '0')
(3791, 'Arizona State University', '6', 'Admit', 'MS', 'Chemical Engineering', 'Fall ', '2014', '165', '161', '326', '3.5', '113', 'VTU', 'Chemical Engineering', '7.59', '10', '0')
(3792, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '590', '1370', '4', '104', 'Kakatiya University', 'ECE', '7.4', '100', '0')
(3793, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '170', '153', '323', '3.5', '108', 'Gujarat Technological University', 'Electrical Engineering', '8.2', '10', '0')
(3794, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Spring ', '2014', '161', '144', '305', '3', 'None', 'Osmania University', 'production engineering', '7.5', '100', '0')
(3795, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '168', '156', '324', '3.5', '113', 'NITK Surathkal', 'ECE', '8.3', '10', '0')
(3796, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '168', '155', '323', '3.5', '110', 'VTU', 'Electronics and Communication', '8.74', '10', '0')
(3797, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '750', '460', '1210', '3.5', '113', 'Manipal Institue of Technology', 'E&C;', '8.7', '10', '0')
(3798, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '149', '314', '3', '100', 'Model Engineering College', 'Computer Science', '7.5', '100', '0')
(3799, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '160', '146', '306', '3', 'None', 'None', 'ECE', '7.4', '100', '0')
(3800, 'Arizona State University', '6', 'Admit', 'MS', 'Business Analytics', 'Summer ', '2015', '165', '148', '313', '2.5', '101', 'MU', 'Telecommunication', '6.6', '100', '49')
(3801, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '169', '159', '328', '3', '113', 'MSRIT', 'E & C', '9.23', '10', '0')
(3802, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '750', '500', '1250', '4', '110', 'VTU', 'Telecommunication', '7.4', '100', '0')
(3803, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2012', '750', '550', '1300', '4', '106', 'NIT Nagpur', 'Civil', '7.5', '10', '0')
(3804, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', 'None', 'None', '0', 'None', 'None', 'Cochin University of Science and Technology', 'Computer Science', '8.28', '100', '42')
(3805, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '166', '147', '313', '3', '99', 'SRM', 'ECE', '8.79', '10', '0')
(3806, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '640', '1440', '4', '108', 'NIT Nagpur', 'Electrical and Electronics', '8.25', '10', '0')
(3807, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', 'None', 'None', '0', 'None', 'None', 'None', 'Computer Engineering', '8.82', '10', '0')
(3808, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '168', '149', '317', '3.5', '109', 'BITS Pilani', 'Mechanical', '7.31', '10', '0')
(3809, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '670', '1470', '4', '112', 'NIT Silchar', 'EE', '0.85', '100', '0')
(3810, 'Arizona State University', '6', 'Admit', 'MS', 'Electronic and Telecommunication Engineering', 'Fall ', '2014', '167', '148', '315', '4', '106', 'Veermata Jijabai Technological Institute', 'Electronics and Telecommuniaction', '8.1', '10', '0')
(3811, 'Arizona State University', '6', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '790', '490', '1280', '3.5', '97', 'MU', 'Computer science', '7', '100', '0')
(3812, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '163', '145', '308', '3', '101', 'Nagarjuna University', 'Electronics and Computers', '8.66', '10', '0')
(3813, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '510', '1310', '3.5', '104', 'Jamia Millia Islamia', 'Computer Engineering', '7.95', '10', '0')
(3814, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '520', '1320', '3', '98', 'IEM/WBUT', 'CSE', '0.865', '100', '0')
(3815, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '169', '153', '322', '4.5', '114', 'MDU', 'Applied Electronics and Instrumentation', '7.4319999999999995', '100', '0')
(3816, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '166', '155', '321', '4', '110', 'VJTI', '0', '0', '0', '20')
(3817, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '160', '148', '308', '2.5', '95', 'GITAM', 'IT', '8.85', '10', '0')
(3818, 'Arizona State University', '6', 'Admit', 'MS', 'Business Analytics', 'Fall ', '2015', '161', '151', '312', '3', 'None', 'VTU', 'Electrical and Electronics Engineering', '7', '100', '42')
(3819, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '780', '650', '1430', '3', '101', 'M.I.T.M(RGTU)', 'Computer Science', '7', '100', '0')
(3820, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '165', '152', '317', '4.5', '111', 'SSN College of Engineering', 'CSE', '8.25', '10', '0')
(3821, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '153', '314', '4', '111', 'NIT', 'CSE', '8.37', '10', '0')
(3822, 'Arizona State University', '6', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '780', '510', '1290', '3', '95', 'MU', 'IT', '6.2', '100', '0')
(3823, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '161', '160', '321', '4', '110', 'NIT Delhi', 'EEE', '8.38', '10', '0')
(3824, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '161', '151', '312', '4', '98', 'BITS Pilani', 'computer science', '7.08', '10', '0')
(3825, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '154', '316', '4', '106', 'Bangalore University', 'CS', '7.999', '100', '0')
(3826, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '152', '316', 'None', '102', 'CoE Trivandrum', 'Computer Science', '8.3', '100', '0')
(3827, 'Arizona State University', '6', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '158', '151', '309', '3.5', '100', 'SRM', 'Computer science and engineering', '6.8', '10', '0')
(3828, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '161', '142', '303', '3.5', '101', 'College of Technology Pantnagar', 'production engineering', '7.15', '10', '0')
(3829, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '550', '1330', '3', '112', 'Manipal Institue of Technology', 'Computer Science', '8.01', '10', '0')
(3830, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '1330', '540', '1870', '3', '89', 'VESIT', 'E & TC', '7.5', '100', '0')
(3831, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '170', '158', '328', '4.5', '116', 'K J Somaiya College of Engiineering', 'Mechanical', '6.1', '100', '0')
(3832, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2014', '318', '157', '475', '4.5', '113', 'The LNM Institute of Information Technology', 'Electronics and Communication', '8.75', '10', '0')
(3833, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '166', '150', '316', '3', '104', 'K J Somaiya College of Engiineering', 'MECH', '7.214', '100', '0')
(3834, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Spring ', '2013', '163', '148', '311', 'None', '103', 'RNSIT', 'Electronics and Communicati', '8', '100', '0')
(3835, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall', 'None', '160', '151', '311', '4', '107', 'None', '0', '9', '100', '0')
(3836, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '168', '155', '323', '4', '116', 'MU', 'Information Technology', '7.937', '100', '36')
(3837, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '630', '1430', '3.5', '108', 'None', 'School of Management', '0', '0', '0')
(3838, 'Arizona State University', '6', 'Admit', 'MS', 'Business Analytics', 'Fall ', '2015', '162', '158', '320', '4', '116', 'Sardar Patel College of Engineering', 'Information Technology', '6.536', '100', '28')
(3839, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '760', '550', '1310', '3', '94', 'Sir MVIT', 'Information Science', '7', '100', '0')
(3840, 'Arizona State University', '6', 'Admit', 'MS', 'Embedded systems', 'Fall ', '2013', '800', '640', '1440', '4', '104', 'None', '0', '8.83', '10', '0')
(3841, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '164', '154', '318', '4', '112', 'VTU', 'Computer Science', '7.15', '100', '0')
(3842, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '510', '1310', '4.5', '98', 'CoE Trivandrum', 'CSE', '7.8', '100', '0')
(3843, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '690', '1490', '4.5', '107', 'Indraprastha University', 'Electronics and Communication', '7.1', '100', '0')
(3844, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '164', '148', '312', '3.5', '96', 'NIT ALLAHABAD', 'Electrical Engineering', '9.05', '10', '0')
(3845, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2013', '750', '450', '1200', '4.5', '110', 'Institute of Technology Nirma University', 'Instrumentation & Control Electrical Department', '6.56', '10', '0')
(3846, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2012', '750', '590', '1340', '3', '91', 'NIT Rourkela', 'CIVIL ENGINEERING', '7.81', '10', '0')
(3847, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '170', '153', '323', '4.5', '114', 'BIT Mesra', 'Computer Science Engineering', '7.5', '10', '30')
(3848, 'Arizona State University', '6', 'Admit', 'MS', 'MIS', 'Fall ', '2014', 'None', 'None', '0', 'None', 'None', 'GITAM', 'Electrical and Electronics', '3.95', '4', '0')
(3849, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '156', '317', '5', '115', 'PESIT', 'Information Science and Engineering', '8.5', '10', '0')
(3850, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '157', '321', '4', '110', 'Model Engineering College', 'Computer Science', '8.02', '100', '0')
(3851, 'Arizona State University', '6', 'Admit', 'MS', 'CS', 'Fall ', '2014', '163', '148', '311', '3', '96', 'MSRIT', 'CSE', '8.71', '10', '0')
(3852, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '166', '152', '318', '4', '91', 'Anna University', 'Computer Science', '8.17', '10', '30')
(3853, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Spring ', '2014', '162', '153', '315', '3.5', '97', 'VTU', 'Electronics and Communications', '8.3', '100', '0')
(3854, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '750', '580', '1330', '3', '101', 'Pune University', 'Electonics and telecommunication', '7.2', '100', '0')
(3855, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '800', '490', '1290', '3.5', '106', 'NIT Durgapur', 'electronics and communication engineering', '8.5', '10', '0')
(3856, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '167', '149', '316', '4', '96', 'Mahatma Gandhi University Kerala', 'MECHANICAL ENGINEERING', '7.42', '10', '0')
(3857, 'Arizona State University', '6', 'Admit', 'MS', 'Business Analytics and Project Management', 'Fall ', '2015', '162', '151', '313', '3', '91', 'Anna University', 'Mechanical', '7.26', '10', '30')
(3858, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '168', '157', '325', '4', '114', 'Sardar Patel College of Engineering', 'Electronics', '7.529999999999999', '100', '22')
(3859, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2009', '790', '500', '1290', '3.5', '113', 'University of Mumbai', 'Electronics Engineering', '6.6', '100', '0')
(3860, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '163', '142', '305', '3.5', '100', 'NIT Allahabad', 'Mechanical', '9.11', '10', '0')
(3861, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2015', '165', '147', '312', '3.5', '100', 'Lakshmi Narain College of Technology', 'Computer Science and Engineering', '7.475', '100', '52')
(3862, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '790', '620', '1410', '3.5', '118', 'Anna University', 'EEE', '8.1', '100', '0')
(3863, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '750', '600', '1350', '3.5', '113', 'Anna University', 'EEE', '8.274', '10', '0')
(3864, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '157', '146', '303', '3', '107', 'RNSIT', 'Electronics and communication', '7.65', '100', '0')
(3865, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '165', '149', '314', '3', '95', 'Swami Vivekananda Institute Of Technology', 'Computer science', '7.3', '100', '0')
(3866, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '690', '540', '1230', '4', '115', 'VTU', 'Electronics and Communications Engineering', '6.876', '100', '0')
(3867, 'Arizona State University', '6', 'Admit', 'MS', 'Management Information System', 'Fall ', '2013', '48', '32', '80', '5.5', '113', 'University of Pune', 'ENTC', '0', '0', '0')
(3868, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '170', '154', '324', '3', '113', 'NIT Nagpur', 'Electronics and Communication Engineering', '7.4', '10', '24')
(3869, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '153', '315', '3.5', '111', 'VIT', 'Computer Science and Engineering', '7.88', '10', '0')
(3870, 'Arizona State University', '6', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '49', '35', '84', '6', '112', 'BITS Pilani', 'Electronics & Instrumentation', '7.13', '10', '0')
(3871, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '710', '460', '1170', '3', '101', 'VTU', 'CSE', '8.05', '100', '0')
(3872, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '162', '151', '313', '4', '109', 'VTU', 'ECE', '7.7', '100', '0')
(3873, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2013', '162', '156', '318', '4', '114', 'Techno India College of Technology Rajarhat (West Bengal University of Technology)', 'Electronics and Communication', '8.29', '10', '0')
(3874, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '740', '720', '1460', '6', '293', 'NITK Surathkal', 'EnC', '8.8', '100', '0')
(3875, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '580', '1360', '4', '112', 'VTU', 'Information Science and Engineering', '7.7', '100', '0')
(3876, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '152', '311', '4.5', '111', 'Sir MVIT', 'Info Science', '7.981999999999999', '100', '0')
(3877, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '161', '152', '313', '3', '108', 'West Bengal University Of Technology', 'ECE', '8.85', '10', '0')
(3878, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '770', '570', '1340', '3', '100', 'WBUT', 'A.E.I.E', '0.8', '100', '0')
(3879, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '690', '1490', '3.5', '111', 'VTU', 'Mechanical Engineering', '8.85', '10', '0')
(3880, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '161', '145', '306', '3.5', '105', 'R V College of Engineering', 'Mechanical Engineering', '7.65', '10', '0')
(3881, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '800', '680', '1480', '4', '108', 'R V College of Engineering', 'Electronics & Comm', '9.25', '10', '0')
(3882, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '165', '154', '319', '3.5', '111', 'Sardar Patel College of Engineering', 'Information Technology', '6.82', '100', '17')
(3883, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '160', '150', '310', '3', '7', 'Anna University', 'Mechanical Engineering', '7.5', '10', '0')
(3884, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '161', '145', '306', '3', '104', 'Anna University', 'Mechanical Engineering', '8.41', '10', '0')
(3885, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Spring ', '2013', '760', '630', '1390', '4', '114', 'NIT Tirchy', 'Electrical & Electronics', '6.83', '10', '0')
(3886, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '161', '149', '310', '3', '102', 'Sri Venkateswara College of Engineering', 'Electrical and Electronics Engineering', '8.34', '10', '0')
(3887, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '147', '309', '3', '98', 'VIT', 'School of Electronics Engineering', '9.26', '10', '0')
(3888, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '161', '148', '309', '3', '99', 'West Bengal University Of Technology', 'CSE', '7.3', '10', '90')
(3889, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall', 'None', '160', '156', '316', '4', 'None', 'None', 'ECE', '8.87', '10', '0')
(3890, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '790', '650', '1440', '3', '109', 'SGSITS', 'mechanical', '7.8', '100', '0')
(3891, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '165', '158', '323', '3.5', 'None', 'MU', 'computer', '6.8', '100', '4')
(3892, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '0', '770', '3.5', '95', 'PESIT', 'Computer SCience', '7.7', '100', '0')
(3893, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '400', '1200', '4', '112', 'SRM', 'Computer Science', '9.4', '10', '0')
(3894, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '500', '1280', '3', '106', 'WBUT', 'Electrical Engineering', '8.39', '10', '0')
(3895, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '164', '149', '313', '3', '101', 'NIT Durgapur', 'Computer Science', '7.8', '10', '59')
(3896, 'Arizona State University', '6', 'Admit', 'MS', 'Biomedical Engineering', 'Fall', 'None', '163', '143', '306', 'None', '104', 'GGSIPU', 'biotechnology', '0', '0', '0')
(3897, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', 'None', 'None', '0', 'None', 'None', 'Guru Gobind Singh Indraprashta University', 'INDUSTRIAL AND PRODUCTION', '7.45', '100', '0')
(3898, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '164', '152', '316', '4.5', '110', 'BITS Pilani', 'MECHANICAL', '0.731', '100', '0')
(3899, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '162', '323', '4', '114', 'VTU', 'CSE', '9.23', '10', '0')
(3900, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '630', '1420', '3.5', '117', 'SSN College of Engineering', 'ece', '8', '100', '0')
(3901, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2009', '770', '540', '1310', '4.5', '104', 'UPTU', 'Computer Science', '7.6', '100', '0')
(3902, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '160', '153', '313', '3.5', '95', 'SDM', 'Electrical Engineering', '8.8', '10', '0')
(3903, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '170', '151', '321', '4', '102', 'GITAM', 'ECE', '9.72', '10', '0')
(3904, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '168', '154', '322', '3.5', '105', 'NIT Warangal', 'electrical and electronics', '9.43', '10', '0')
(3905, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '490', '1290', '3', '100', 'Osmania University', 'CSE', '8.3', '100', '0')
(3906, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '163', '326', '3.5', '116', 'Institue of Engineering And Management', 'Computer science and Engineering', '9.22', '10', '0')
(3907, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '165', '151', '316', '3', '103', 'NIT Allahabad', 'Computer Science and Engineering', '8.7', '10', '36')
(3908, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '800', '710', '1510', '4', '116', 'D J Sanghvi', 'Electronics', '5.85', '100', '16')
(3909, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '170', '155', '325', '4', '107', 'College of Technology Pantnagar', 'ECE', '7.244', '100', '9')
(3910, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '500', '1280', '3.5', '93', 'VTU', 'Electronics and communication', '7.9', '100', '0')
(3911, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '161', '147', '308', '3', '98', 'Dr. Ambedkar Institute of technology', 'Information Science', '7.767', '100', '0')
(3912, 'Arizona State University', '6', 'Admit', 'MS', 'Embedded systems', 'Fall ', '2012', '800', '580', '1380', '3.5', '110', 'University of Mumbai', 'Electronics and Telecommunication', '7.2', '100', '0')
(3913, 'Arizona State University', '6', 'Admit', 'MS', 'CS', 'Fall ', '2014', '161', '146', '307', '3', '100', 'BMSCE', 'CS', '7.414', '100', '0')
(3914, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '158', '151', '309', '3.5', '107', "Hautes Etudes d'Ingenieur", 'Electrical Engineering', '3.3', '4', '0')
(3915, 'Arizona State University', '6', 'Admit', 'MS', 'MIS', 'Spring ', '2016', '156', '148', '304', '3', 'None', 'RMK Engineering College', 'Electronics and Instrumentation', '8.97', '10', '19')
(3916, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '790', '530', '1320', '3', '114', 'Anna University', 'Mechanical Engineering', '8.1', '10', '0')
(3917, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '730', '1530', '3.5', '114', 'CEG', 'EEE', '8.66', '10', '0')
(3918, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '155', '314', '4.5', '108', 'VTU', 'IT', '6.970000000000001', '100', '0')
(3919, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2011', '800', '620', '1420', '3.5', '117', 'NIT Nagpur', 'civil engineering', '8.96', '10', '0')
(3920, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '162', '148', '310', '3.5', '108', 'Pune University', 'E&TC;', '7', '100', '0')
(3921, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '161', '148', '309', '4', '110', 'Kalpataru Institute of Technology', 'Computer Science', '7.2', '100', '0')
(3922, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '620', '1420', '4', '107', 'NIT Warangal', 'CIVIL ENGINEERING', '8.45', '10', '0')
(3923, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '152', '319', '3.5', '95', 'KIIT', 'ELECTRICAL ENGINEERING', '7.74', '10', '0')
(3924, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '159', '140', '299', '3', 'None', 'SCSVMV University', 'Mechanical engineering', '9.37', '10', '0')
(3925, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '150', '310', '3.5', '101', 'Charotar University of Science and Technology', 'Information Technology', '0.782', '100', '0')
(3926, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '600', '1370', '4', '104', 'MU', 'Electronics & Telecommunication', '7.1', '100', '0')
(3927, 'Arizona State University', '6', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2014', '157', '153', '310', '4', '109', 'Engineering', 'Computer Science', '0.37', '100', '0')
(3928, 'Arizona State University', '6', 'Admit', 'MS', 'Business Analytics', 'Fall ', '2014', '47', '35', '82', '4.5', '106', 'Bharati Vidyapeeth', 'Chemical Engineering', '6.8', '100', '0')
(3929, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '170', '153', '323', '3.5', '105', 'NIT Tirchy', 'Production Engg', '7.77', '10', '34')
(3930, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '12', '720', '530', '1250', '3', '101', 'Anna University', 'mechanical', '8.7', '10', '0')
(3931, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '159', '152', '311', '4', '103', 'JNTU', 'ECE', '8.275', '100', '0')
(3932, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '750', '620', '1370', '3.5', '93', 'Anna University', 'ECE', '7.8', '100', '0')
(3933, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '149', '311', 'None', '93', 'Anna University', 'CSE', '8.2', '10', '0')
(3934, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '163', '154', '317', '3.5', '95', 'Pune University', 'Mechanical Engineering', '7.8', '100', '0')
(3935, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '620', '1410', '3', '104', 'Pondicherry Engineering College', 'cse', '7.89', '10', '0')
(3936, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2015', '168', '160', '328', 'None', 'None', 'Anna University', 'Electrical and Electronics', '8.1', '100', '18')
(3937, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '155', '317', '4', '113', 'Anna University', 'EEE', '9', '10', '0')
(3938, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '169', '150', '319', '4', '105', 'UPTU', 'Electrical Engineering', '7.696', '100', '0')
(3939, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '164', '154', '318', '3', '103', 'MU', 'Electronics', '7.029999999999999', '100', '0')
(3940, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '166', '332', '4', '114', 'West Bengal University Of Technology', 'Information Technology', '8.16', '100', '0')
(3941, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2007', '800', '640', '1440', '5', '287', 'SVCE', 'EEE', '8.5', '100', '0')
(3942, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '800', '580', '1380', '3.5', '105', 'VJTI', 'Computer Engineering', '6.4', '10', '29')
(3943, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '390', '800', '1190', '4', '107', 'Gayatri Vidya Parishad College of Engineering', 'Comp Science Engg', '7.667', '100', '0')
(3944, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering / Electrical Computer Engineering', 'Spring ', '2016', '167', '155', '322', '4', '114', 'PEC University of Technology', 'Electronics and Electrical Communication', '7.82', '10', '0')
(3945, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '710', '1490', '4', '115', 'SASTRA', 'Computer Science', '9.6', '10', '0')
(3946, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '154', '316', '4', '111', 'LD Engineering Gujarat University', 'Computer Engineering', '7', '100', '0')
(3947, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2011', '720', '460', '1180', '3.5', '111', 'Pune University', 'Electronics and Telecommunication', '7', '100', '0')
(3948, 'Arizona State University', '6', 'Admit', 'MS', 'Chemical Engineering', 'Fall ', '2013', '159', '154', '313', '4', '113', 'Sri Venkateswara College of Engineering', 'Chemical Engg', '8.4', '10', '0')
(3949, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '165', '149', '314', '3.5', '104', 'VIT', 'BTech-EEE', '8.89', '10', '24')
(3950, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '164', '160', '324', '3.5', '107', 'Manipal Institue of Technology', 'Mechanical & Manufacturing (Mechatronics)', '6.96', '10', '0')
(3951, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '640', '1440', '4', '112', 'GGSIPU', 'ECE', '6.6', '100', '0')
(3952, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '600', '1380', '4', '102', 'VJCET (MG University)', 'CSE', '8.034', '100', '0')
(3953, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '750', '530', '1280', '3.5', '106', 'Coimbatore Insitute of Technology', 'Mechanical Engineering', '8.37', '10', '0')
(3954, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2011', '750', '340', '1090', '2.5', '93', 'Anna University', 'EEE', '7.991', '100', '0')
(3955, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '148', '309', '3.5', '110', 'None', '0', '8.1', '100', '0')
(3956, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '740', '550', '1290', '4', '107', 'Crescent Engineering College', 'Electronics & Communication', '0', '0', '0')
(3957, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '169', '161', '330', '4.5', '114', 'Rajasthan Technical University', 'Computer Science Engineering', '8.309999999999999', '100', '0')
(3958, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2010', '800', '580', '1380', '3.5', 'None', 'Anna University', 'Electronics and Communication', '0', '0', '0')
(3959, 'Arizona State University', '6', 'Admit', 'MS', 'Biomedical Engineering', 'Spring ', '2014', '156', '159', '315', '3.5', 'None', 'Chaitanya Bharathi Institute of Technology', 'Biotechnology', '7.7', '100', '0')
(3960, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '760', '600', '1360', '3.5', '110', 'RIT Shivaji University', 'Mechanical', '7.4', '100', '0')
(3961, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '170', '165', '335', '4.5', '109', 'None', '0', '7', '100', '0')
(3962, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2014', '165', '152', '317', '4', '104', 'COEP', 'Civil Engineering', '7.51', '10', '21')
(3963, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '168', '161', '329', '4.5', '116', 'Manipal Institue of Technology', 'electronics and communication', '8.71', '10', '0')
(3964, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '162', '159', '321', '3.5', '108', 'PSG College of Technology', 'Electrical and electronics engineering', '9.4', '10', '0')
(3965, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '780', '590', '1370', '4', '115', 'None', '0', '0', '0', '0')
(3966, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall', 'None', '162', '150', '312', '3.5', '100', 'None', 'Electronics', '9.6', '10', '0')
(3967, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '520', '1320', '4.5', '105', 'VTU', 'E&C;', '8.044', '100', '0')
(3968, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '157', '152', '309', '4.5', '111', 'SRM', 'ECE', '9.1', '10', '0')
(3969, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '153', '311', '3.5', '106', 'Anna University', 'Electrical and Electronics', '7.53', '10', '0')
(3970, 'Arizona State University', '6', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(3971, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '167', '155', '322', '3', '101', 'Kurukshetra University', 'Computer Science', '3.26', '4', '106')
(3972, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '162', '142', '304', '3.5', '92', 'None', '0', '9.02', '10', '0')
(3973, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '162', '153', '315', '3.5', 'None', 'Manipal Institue of Technology', 'Electronics and Communication Engineering Department', '9.3', '10', '0')
(3974, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '430', '1230', '3', '93', 'DA-IICT', 'Information & Comm. Tech', '8.27', '10', '0')
(3975, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '580', '1380', '3', '87', 'Sri Jayachamarajendra College of Engineering', 'Electronics and Communication', '9.57', '10', '0')
(3976, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '167', '148', '315', '3', '82', 'BITS Goa', 'Electrical and Electronics', '8.67', '10', '0')
(3977, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '550', '1340', '3', '97', 'VTU', 'Computer Science', '8.05', '100', '0')
(3978, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '163', '151', '314', '4.5', '108', 'SRM', 'Mechatronics', '7.932', '10', '0')
(3979, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '390', '1190', '3.5', '97', 'VIT', 'Computer Science', '8.2', '100', '0')
(3980, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '155', '314', '3', '106', 'Indraprastha University', 'Computer Science', '8.1', '100', '0')
(3981, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '164', '157', '321', '4', '114', 'Indira Gandhi Institute Of Technology', 'Electronics and Communication Engineering', '7.95', '100', '0')
(3982, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '168', '155', '323', '4.5', '108', 'The LNM Institute of Information Technology', 'Electronics and Communication Engineering', '8.51', '10', '4')
(3983, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2013', '162', '150', '312', '3.5', '103', 'Sardar Vallabhbhai National Institute of Technology', 'Civil Engineering', '6.95', '10', '0')
(3984, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '580', '1380', '3.5', '107', 'NIT Durgapur', 'Electronics and Communication Engineering', '7.78', '10', '0')
(3985, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '780', '730', '1510', '4', '113', 'COEP', 'Computer Engineering', '7.95', '10', '0')
(3986, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '169', '152', '321', '3.5', '105', 'National Institue Of Technology Karnataka Surathkal', 'Computer Engineering', '8.24', '10', '0')
(3987, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '650', '550', '1200', '3', '102', 'MU', 'electrical', '6.4', '100', '0')
(3988, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '154', '320', '3', '104', 'VIT University', 'IT', '9.12', '10', '0')
(3989, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '164', '152', '316', '4', '106', 'R V College of Engineering', 'TELECOMMUNICATIONS', '8.75', '10', '0')
(3990, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '168', '164', '332', '4', '110', 'TSEC', 'Electronics and Telecommunication', '6.4799999999999995', '100', '0')
(3991, 'Arizona State University', '6', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(3992, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '520', '1320', '3.5', '103', 'JNTU', 'EEE', '8.2', '100', '0')
(3993, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering/Comp Science', 'Fall ', '2013', '163', '146', '309', '3.5', '100', 'Sri Venkateswara College of Engineering', 'Computer Science and Engineering', '9.05', '10', '0')
(3994, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '164', '151', '315', '3', '92', 'PSG College of Technology', 'ECE', '8.96', '10', '0')
(3995, 'Arizona State University', '6', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2011', '690', '660', '1350', '3', '103', 'Anna University', 'Biomedical Engineering', '8.4', '100', '0')
(3996, 'Arizona State University', '6', 'Admit', 'MS', 'electronics', 'Fall ', '2011', '720', '490', '1210', '3', '109', 'Anna University', 'Electrical and Electronics Engineering', '8.519', '100', '0')
(3997, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '790', '640', '1430', '4.5', '112', 'Thapar University', 'Electrical Engineering', '9.23', '10', '0')
(3998, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '149', '309', '3.5', '104', 'Anna University', 'Computer Science', '7.49', '100', '0')
(3999, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '740', '1520', '4.5', 'None', 'NIT Calicut', 'Electronics & Communication', '7.49', '10', '0')
(4000, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2014', '159', '148', '307', '3.5', '98', 'Cochin University of Science and Technology', 'Computer Science And Engineering', '6.85', '100', '0')
(4001, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '157', '157', '314', '4', '110', 'MU', 'Computer Engineering', '6.9', '100', '0')
(4002, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '166', '153', '319', 'None', '100', 'NIT Allahabad', 'ECE', '9.08', '10', '36')
(4003, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '170', '160', '330', '4', '112', 'Jaypee Institute of Information Technology', 'Electronics and Communication', '8.6', '10', '0')
(4004, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '162', '155', '317', '3.5', '104', 'VITU', 'ECE', '7.81', '10', '0')
(4005, 'Arizona State University', '6', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2015', '164', '155', '319', '4', '110', 'None', 'Biomedical Engineering', '9.04', '10', '0')
(4006, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '167', '155', '322', '3.5', '106', 'NIT Patna', 'Computer Science', '8.24', '10', '36')
(4007, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '760', '640', '1400', '3.5', '103', 'GITAM', 'COMPUTER SCIENCE', '9.25', '10', '0')
(4008, 'Arizona State University', '6', 'Admit', 'MS', 'Computer engineering VLSI CAD', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'None', '0', '9.14', '10', '0')
(4009, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '730', '540', '1270', '3.5', '103', 'VTU', 'CS', '6.7', '100', '0')
(4010, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '340', '1130', '4', '103', 'None', '0', '0', '0', '0')
(4011, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '161', '152', '313', '3.5', '101', 'Punjab Technical University', 'Computer Science & Engineering', '7.1', '100', '0')
(4012, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '164', '152', '316', '3.5', 'None', 'JNTU', 'Mechanical', '8.309999999999999', '100', '0')
(4013, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '163', '151', '314', '4.5', '113', 'SRM', 'Electonrics and Communication', '9.52', '10', '0')
(4014, 'Arizona State University', '6', 'Admit', 'MS', 'Telecom management', 'Fall ', '2012', '790', '480', '1270', '3', '106', 'Anna University', 'ECE', '7.872', '10', '0')
(4015, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '470', '1220', '3', '92', 'CEG', 'CSE', '8.76', '10', '0')
(4016, 'Arizona State University', '6', 'Admit', 'MS', 'Business Analytics', 'Fall ', '2015', '161', '144', '305', '3.5', '95', 'SSN College of Engineering', 'Computer Science', '7.4', '100', '52')
(4017, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '790', '370', '1160', '3', '102', 'Anna University', 'B.Tech-Information Technology', '7.9', '100', '0')
(4018, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '162', '160', '322', '3', '105', 'BITS Pilani', 'ECE', '8.7', '10', '0')
(4019, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '164', '157', '321', '3.5', '111', 'CEG', 'Manufacturing', '8.96', '10', '0')
(4020, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '166', '156', '322', '3', '104', 'Gautam Buddh Technical University', 'Information Technology', '7.1', '100', '0')
(4021, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '166', '154', '320', '3', '109', 'Guru Nanak Dev University Amritsar', 'Electronics Technology', '7.57', '10', '11')
(4022, 'Arizona State University', '6', 'Admit', 'MS', 'CS', 'Fall ', '2013', '770', '590', '1360', '3.5', '111', 'VTU', 'ISE', '7.45', '100', '0')
(4023, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2016', '164', '155', '319', '3.5', '101', 'Dharamsinh Desai University', 'Instrumentation And Control', '9.05', '10', '0')
(4024, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '800', '660', '1460', '800', '290', 'MU', 'EE', '7.2', '100', '0')
(4025, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2011', '790', '670', '1460', '5', '118', 'Madras Institute of Technology', 'Electronics and Instrumentation', '8.9', '10', '0')
(4026, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2010', '780', '320', '1100', '3', '97', 'Osmania University', 'EEE', '0.4', '100', '0')
(4027, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '149', '310', '3.5', '107', 'VTU', 'ECE', '8.4', '100', '0')
(4028, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '148', '307', '3.5', '106', 'None', 'computer science', '7.2', '100', '0')
(4029, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '780', '650', '1430', '3.5', '113', 'Fr.C.R.I.T. Vashi', 'Electronics and Tele Comm', '0', '0', '0')
(4030, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2009', '790', '350', '1140', '3.5', '104', 'Anna University', 'IT', '8.2', '100', '0')
(4031, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2012', '160', '152', '312', '3.5', '106', 'CoE Trivandrum', 'Electronics and Instrumentation', '7.7', '10', '0')
(4032, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '160', '147', '307', '3', '98', 'VIT University', 'ECE', '9.03', '10', '2')
(4033, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '770', '510', '1280', '3', '113', 'Anna University', 'ECE', '7.63', '100', '0')
(4034, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '770', '680', '1450', '3', '100', 'Vidyalankar Institute of Technology', 'Electronics and Telecommunication', '7.0040000000000004', '100', '0')
(4035, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '600', '1380', '3', '97', 'Panjab University', 'Electronics and communication', '7.249', '100', '0')
(4036, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '590', '1370', '3', '97', 'Sri Venkateswara College of Engineering', 'Computer Science', '8.2', '10', '0')
(4037, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '165', '149', '314', '3.5', '100', 'Sairam engg college(Anna University)', 'CSE', '7.79', '10', '30')
(4038, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '158', '151', '309', '3.5', '104', 'VTU', 'Computer Science and Engineering', '7.6', '100', '0')
(4039, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '147', '313', '3', '95', 'IIIT Allahabad', 'IT', '7.95', '10', '0')
(4040, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '168', '157', '325', '3', '106', 'PESIT', 'Computer Science', '8.59', '10', '9')
(4041, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '690', '1490', '4.5', '113', 'ICFAI', 'Computer Science Engineering', '9.48', '10', '0')
(4042, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '167', '165', '332', 'None', '107', 'JNTU', 'EEE WES GPA : 3.9/4.0', '7.8', '100', '0')
(4043, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '168', '150', '318', '3.5', '111', 'NIT Hamirpur', 'cse', '7.98', '10', '24')
(4044, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '790', '510', '1300', '4', '114', 'NIT Rourkela', 'Electronics and Communication Department', '9.45', '10', '0')
(4045, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '154', '316', '4', '112', 'Sardar Vallabhbhai National Institute of Technology', 'Computer Engineering', '6.8', '100', '0')
(4046, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '410', '1210', '2', '108', 'JNTU', 'ECE', '7.3', '100', '0')
(4047, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '165', '151', '316', '3', '93', 'SASTRA', 'ECE', '8.02', '10', '0')
(4048, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2011', '790', '640', '1430', '4', '116', 'Sri Venkateswara College of Engineering', 'Computer Science and Engineering', '7.9', '100', '0')
(4049, 'Arizona State University', '6', 'Admit', 'MS', 'Business Analytics', 'Fall ', '2014', '167', '149', '316', '3', '7', 'Manipal Institue of Technology', 'ECE', '6.31', '10', '0')
(4050, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '550', '1350', '3.5', '110', 'Anna University', 'ECE', '8.3', '100', '0')
(4051, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '530', '1320', '3', '88', 'Kakatiya University', 'ECE', '8.2', '100', '0')
(4052, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '163', '152', '315', '3.5', '113', 'Koneru Lakshmaiah College of Engineering', 'Electronics and Computers', '8.2', '10', '0')
(4053, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '161', '145', '306', '4', '106', 'Sapthagiri College of Engineering', 'Electronics and Communication', '7.6530000000000005', '100', '0')
(4054, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '169', '153', '322', '3.5', 'None', 'Naional Institute of Technology Raipur', 'Electronics & Telecommunication', '7.709999999999999', '100', '0')
(4055, 'Arizona State University', '6', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2013', '165', '157', '322', '3', '111', 'P.U.', 'UIET B.E.-Biotechnology', '7.2299999999999995', '100', '0')
(4056, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '800', '640', '1440', '3', '106', 'Sreenidhi Institute of Science & Technology', 'cse', '8.17', '100', '0')
(4057, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '760', '640', '1400', '4.5', '113', 'JNTU', 'ECE', '7.9', '100', '0')
(4058, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '750', '580', '1330', '3.5', '260', 'Gujarat Technological University', 'Information Technology', '7.1', '100', '0')
(4059, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '770', '490', '1260', '3.5', '101', 'R V College of Engineering', 'electronics', '9.28', '10', '0')
(4060, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2009', '800', '670', '1470', '4', '115', 'NIT Calicut', 'Electrical and Electronics Engg', '8.4', '10', '0')
(4061, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical / Industrial Engg.', 'Fall ', '2014', '162', '150', '312', '3.5', '94', 'Datta Meghe College of Engineering', 'mechanical', '6.433', '100', '0')
(4062, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '169', '154', '323', '4', '109', 'Jaypee Institute of Information Technology', 'Computer Science', '7.5', '10', '0')
(4063, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '169', '158', '327', 'None', '110', 'NITK Surathkal', 'Information Technology', '7.27', '10', '0')
(4064, 'Arizona State University', '6', 'Admit', 'MS', 'Chemical Engineering', 'Fall ', '2015', '162', '154', '316', '3.5', '107', 'NIT Allahabad', 'Chemical Engineering', '7.39', '10', '18')
(4065, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '780', '490', '1270', '3', '96', 'NITK Surathkal', 'EEE', '7.97', '10', '0')
(4066, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '170', '167', '337', '4', '116', 'BITS Pilani', 'Electronics and Communication', '9.47', '10', '0')
(4067, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '161', '153', '314', '4', '107', 'VIT', 'Mechanical Engineering', '8.81', '10', '0')
(4068, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '730', '570', '1300', '5', '110', 'CEC', 'CS', '8.3', '100', '0')
(4069, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '550', '1330', '4', '114', 'WBUT', 'Computer Science and Engineering', '8.47', '10', '0')
(4070, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2016', '167', '152', '319', '3.5', '95', 'VTU', 'EEE', '6.9', '100', '0')
(4071, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '1510', 'None', '1510', 'None', '116', 'SRM', 'TCE', '8.2', '10', '0')
(4072, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2012', '800', '560', '1360', '4', '111', 'JNTU', 'EEE', '8.14', '100', '0')
(4073, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '370', '1150', '3.5', '1004', 'None', '0', '0', '0', '0')
(4074, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '660', '490', '1150', '2.5', '80', 'MU', 'Production', '0', '0', '0')
(4075, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '166', '152', '318', '3.5', '110', 'Nirma Institute of Technology', 'Computer Science', '8.89', '10', '0')
(4076, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '720', '540', '1260', '3.5', '107', 'B N M Institute of Technology', 'ISE', '7.172', '100', '0')
(4077, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '580', '1340', '3', '93', 'Sardar Patel College of Engineering', 'IT', '7', '100', '0')
(4078, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '162', '152', '314', '3', '98', 'SASTRA', 'ECE', '8.37', '10', '0')
(4079, 'Arizona State University', '6', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2013', '162', '153', '315', '4.5', '111', 'None', '0', '0', '0', '0')
(4080, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '169', '146', '315', '3.5', '86', 'HUST', 'Information Technology', '7.82', '10', '0')
(4081, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '170', '146', '316', '3.5', '97', 'JNTU', 'Electronics and Communication Engineering', '8.78', '100', '0')
(4082, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '800', '540', '1340', '2.5', '100', 'UPTU', 'Electronics and Telecommunication', '6.94', '100', '0')
(4083, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2016', '160', '140', '300', '3', 'None', 's.r.k.r engineering college', 'civil engineering', '7.7', '10', '0')
(4084, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics & Communication', 'Fall ', '2011', '740', '580', '1320', '4', '113', 'Gujarat Technological University', 'Electronics & Communication', '7.4', '100', '0')
(4085, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '146', '309', '4', '106', 'MU', 'Computer Engineering', '7.6', '100', '0')
(4086, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '680', '660', '1340', '3.5', '111', 'IIT Delhi', 'CS', '8.5', '10', '0')
(4087, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2013', '163', '147', '310', '4', '110', 'Amrita School of Engineering', 'Civil', '7.29', '10', '0')
(4088, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '740', '470', '1210', '3', '87', 'Vishwakarma Institute of Technology', 'Industrial Engineering', '9.45', '10', '0')
(4089, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '164', '147', '311', '3', '93', 'BMSCE', 'Electronics and Commuications', '9.42', '10', '22')
(4090, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '153', '313', '3.5', '109', 'None', 'Information Technology', '9.19', '10', '0')
(4091, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '147', '307', '3', '95', 'Jaypee Institute of Information Technology', 'CSE', '7.25', '100', '0')
(4092, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '163', '153', '316', '3.5', '110', 'None', 'ECE', '8', '10', '0')
(4093, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '154', '318', '4', '114', 'VTU', 'CSE', '7.69', '10', '24')
(4094, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and electrical engineering', 'Fall ', '2013', '164', '149', '313', '3', '104', 'Madras Institute of Technology', 'ECE', '8.2', '10', '0')
(4095, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '450', '1250', '3.5', '100', 'NIT Warangal', 'Electronics and Communications Engineering', '7.89', '10', '0')
(4096, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '800', '460', '1260', '3', '103', 'Pune University', 'Mechanical engineering', '6', '100', '0')
(4097, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '760', '490', '1250', '3', '101', 'Madras Institute of Technology', 'ECE', '6.4', '10', '0')
(4098, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '155', '321', '3.5', '107', 'BITS Hyderabad', 'Information Systems', '7.98', '10', '0')
(4099, 'Arizona State University', '6', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '151', '159', '310', '3.5', '114', 'Amrita School of Engineering', 'Computer Science and Engineering', '7.93', '10', '0')
(4100, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '740', '1540', '4', '112', 'Pune University', 'Instrumentation and Control', '6.4', '100', '0')
(4101, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '450', '1250', '3.5', '100', 'VTU', 'Telecommunication engineering', '8.9', '10', '0')
(4102, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '530', '1330', '4', '109', 'VTU', 'CS', '7.9', '100', '0')
(4103, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '720', '1520', '4', '114', 'SJCE', 'ELECTRONICS AND COMMUNICATION', '8.5', '100', '0')
(4104, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '149', '310', '4.5', '100', 'SRM', 'COMPUTER SCIENCE AND ENGINEERING', '9.04', '10', '0')
(4105, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '170', '153', '323', '3.5', '90', 'Osmania University', 'ECE', '7.7', '100', '0')
(4106, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '159', '326', '5.5', '110', 'BNMIT', 'Electronics and communications', '8.61', '100', '0')
(4107, 'Arizona State University', '6', 'Admit', 'MS', 'CS', 'Spring ', '2015', '161', '149', '310', '4', '105', 'UPTU', 'Computer Scinece', '8.204', '100', '30')
(4108, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '800', '570', '1370', '3.5', '113', 'Govt Rajiv Gandhi Institute of Technology', 'ME', '7.8', '100', '0')
(4109, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '450', '1250', '3.5', '97', 'NIT Tirchy', 'INSTRUMENTATION & CONTROL ENGG', '7.98', '10', '0')
(4110, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2015', '161', '157', '318', '4.5', '114', 'NUST', 'Electrical and Power Engineering Department - Electronics Engineering', '3.13', '4', '3')
(4111, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '168', '150', '318', '3', '101', 'GGSIPU', 'ECE', '8.7', '100', '0')
(4112, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '720', '1520', '5.5', '118', 'None', '0', '0', '0', '0')
(4113, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '800', '710', '1510', '5', '277', 'CEG', 'ECE', '8.6', '10', '0')
(4114, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '157', '141', '298', '2.5', '97', "St Joseph's College of Engineering", 'ECE', '8.62', '10', '0')
(4115, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '154', '315', '4', '104', 'VTU', 'Computer Science', '7.665000000000001', '100', '46')
(4116, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '145', '159', '304', '3.5', '92', 'CEG', 'EEE', '7.8', '10', '0')
(4117, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Networking', 'Fall ', '2013', '800', '570', '1370', '3', 'None', 'VJTI', 'Electronics', '8.6', '10', '0')
(4118, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics & Communication', 'Fall ', '2014', '165', '145', '310', '3.5', '103', 'NIT MIZORAM', 'ECE', '8.52', '10', '0')
(4119, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '480', '1280', '3', '92', 'MU', 'Electronics', '7.586', '100', '0')
(4120, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '580', '1360', '3.5', '104', 'Jalpaiguri Govt Engg College', 'Electrical', '8.57', '10', '0')
(4121, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '800', '600', '1400', '4', '111', 'Jaypee Institute of Information Technology', 'Electronics and Communications', '8.7', '10', '0')
(4122, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '165', '152', '317', '4', '104', 'University Institute of Engineering & TEch Kurukshetra University', 'Computer Science', '7.4', '100', '0')
(4123, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '490', '1290', '3.5', '109', 'CEG', 'Electronics and Communication', '9.31', '10', '0')
(4124, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '800', '490', '1290', '5', '283', 'University of Bombay', 'Computer', '6.5', '100', '0')
(4125, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '690', '1490', '3.5', '110', 'VITS', 'ECE', '8.2', '100', '0')
(4126, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '670', '1470', '5.5', '117', 'BITS Goa', 'EEE', '8.62', '10', '0')
(4127, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '159', '144', '303', '3', '91', 'GITAM', 'Mechanical Engineering', '9.11', '10', '0')
(4128, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2016', '165', '146', '311', '3', '110', 'Savitribai Phule Pune University', 'Electrical Engineering', '6.65', '100', '0')
(4129, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '740', '590', '1330', '4', '110', 'None', '0', '0', '100', '0')
(4130, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '159', '140', '299', '4', 'None', 'GTU', 'IT', '7.72', '10', '0')
(4131, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2013', '159', '153', '312', '3.5', '104', 'G. H. Patel College of Engineering and Technology', 'Electrical', '7.73', '10', '0')
(4132, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '170', '149', '319', '3.5', '101', 'YMCA', 'Mechanical Engineering', '7.734', '10', '0')
(4133, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '148', '308', '3', 'None', 'BPUT', '0', '7.4', '10', '0')
(4134, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '730', '560', '1290', '4', '113', 'Sri Sairam Engineering College', 'Information technology', '9', '100', '0')
(4135, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '720', '680', '1400', '3', '106', 'VIT', 'elctronics and communication', '6.72', '10', '0')
(4136, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '400', '1200', 'None', '91', 'BITS Goa', 'Computer Science', '7.59', '10', '0')
(4137, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '670', '670', '1340', '4', '101', 'SCE', 'CSE', '3.32', '4', '0')
(4138, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '160', '153', '313', '3', 'None', 'COEP', 'Electronics and Telecom Engg.', '6.71', '10', '0')
(4139, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '390', '1190', '3', '103', 'Pune University', 'Information Technology', '6.892', '100', '0')
(4140, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '161', '157', '318', '3.5', '116', 'MU', 'Mechanical', '7.294', '100', '0')
(4141, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '162', '152', '314', '3.5', '101', 'NIT-Jaipur', 'Computer Science', '7', '10', '0')
(4142, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '163', '150', '313', '3', '102', 'IIITDM Kancheepuram', 'Computer Engineering', '8.31', '10', '0')
(4143, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '12', '800', '330', '1130', '3.5', '99', 'VIT', '0', '8.64', '10', '0')
(4144, 'Arizona State University', '6', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2011', '790', '500', '1290', '3', '100', 'GGSIPU', 'Mechanical and Automation', '7.5', '100', '0')
(4145, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2014', '720', '560', '1280', '3', '98', 'S.D.B.C.T', 'Computer Science', '7.206', '100', '0')
(4146, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '167', '157', '324', '4', '116', 'Delhi College Of Engineeing', 'Electrical Engg', '7.540000000000001', '100', '0')
(4147, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2014', '155', '147', '302', '3.5', '97', 'Lingayas Institute of management and technology', 'school of civi engineering', '5.7700000000000005', '100', '0')
(4148, 'Arizona State University', '6', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '158', '151', '309', '3', '110', 'Pune University', 'Computer', '6.6', '100', '0')
(4149, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '590', '1390', '3', '102', 'GITAM', 'Electronics and Communication', '9.02', '10', '0')
(4150, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '560', '1340', '4', '108', 'Pune University', 'Electrical', '6.9', '100', '0')
(4151, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '146', '305', '3', '95', 'Madras Institute of Technology', 'CSE', '8.3', '10', '0')
(4152, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '157', '146', '303', '4', '110', 'Government Engineering College Thrissur Kerala', 'Mechanical Engineering', '7.25', '100', '0')
(4153, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '167', '163', '330', '4.5', '115', 'Delhi College Of Engineeing', 'Electrical and Electronics Engineering', '7.05', '100', '0')
(4154, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '151', '314', 'None', '96', 'West Bengal University Of Technology', 'Information Technology', '8.14', '10', '0')
(4155, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall', 'None', '167', '150', '317', '3.5', '110', 'KLUNIVERSITY', 'industrial', '0.8300000000000001', '100', '0')
(4156, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical And Aerospace', 'Fall ', '2014', '163', '160', '323', '4.5', '113', 'University of Pune', 'Mechanical Engineering', '7.2', '100', '0')
(4157, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '730', '700', '1430', '3.5', '118', 'MNIT', 'electrical', '7.2', '10', '0')
(4158, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '164', '152', '316', '3', '110', 'NIT Durgapur', 'electronics and communication', '8.66', '10', '0')
(4159, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '158', '318', '4', '117', 'Pune University', 'Computer Engineering', '3.23', '4', '0')
(4160, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '770', '530', '1300', '3', '109', 'Gujarat Technological University', 'Electronics & Communication', '3.96', '4', '0')
(4161, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '168', '157', '325', '4', '116', 'Sardar Patel College of Engineering', 'Electrical Engineering', '7.022', '100', '0')
(4162, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '148', '310', '3', '91', 'Govt Model Engineering College', 'Computer Science and Engineering', '7.2', '100', '0')
(4163, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '159', '147', '306', '3.5', '97', 'Guru Nanak Dev University Amritsar', 'ece', '7.4', '100', '0')
(4164, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '153', '315', '3', '109', 'PSG College of Technology', 'IT', '9.09', '10', '19')
(4165, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '150', '313', '4', '109', 'VTU', 'CS', '7', '100', '0')
(4166, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '168', '157', '325', '3.5', '110', 'VNIT Nagpur', 'ECE', '9.1', '10', '0')
(4167, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '600', '1400', '3.5', '107', 'Sri Venkateswara College of Engineering', 'Mechanical Engineering', '7.8', '100', '0')
(4168, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '166', '157', '323', '4.5', '112', 'NIT Calicut', 'Mechanical Engineering', '7.4', '10', '36')
(4169, 'Arizona State University', '6', 'Admit', 'MS', 'optics', 'Fall ', '2014', '165', '160', '325', '4', '110', 'None', 'Physics', '8.9', '100', '0')
(4170, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '750', '600', '1350', '3.5', '100', 'SSN College of Engineering', 'EEE', '8.61', '10', '0')
(4171, 'Arizona State University', '6', 'Admit', 'MS', 'Robotics', 'Fall ', '2014', '167', '156', '323', '4', '111', 'U.V. Patel College of Engineering Ganpat University', 'Mechatronics engineering', '6.825', '100', '0')
(4172, 'Arizona State University', '6', 'Admit', 'MS', 'Embedded systems', 'Fall ', '2012', '790', '570', '1360', '3.5', '92', 'MU', 'Electronics and Telecommunication', '7.0040000000000004', '100', '0')
(4173, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2009', '800', '650', '1450', '4.5', '117', 'Nirma Institute of Technology', 'Information Technology', '8.88', '10', '0')
(4174, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '172', '151', '323', '3.5', '105', 'None', '0', '0', '0', '0')
(4175, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '170', '163', '333', '4', '112', 'DU', 'ECE', '7.8', '100', '0')
(4176, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '160', '152', '312', '3.5', '93', 'Shri Govindram Seksaria institute of technolgy and sciences Indore', 'Electrical Engineering', '8.038', '100', '0')
(4177, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science/ Mgmt', 'Fall ', '2011', '800', '440', '1240', '3', '103', 'VIT University', 'CSE', '9.22', '10', '0')
(4178, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '159', '145', '304', '3', '91', 'JNTU', 'Information Technology', '7.325', '100', '0')
(4179, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '152', '313', '3', '101', 'UPTU', 'CS', '7.1', '100', '0')
(4180, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '157', '158', '315', '4.5', '116', 'NIT Karnataka', 'Computer Engineering', '6.9', '10', '0')
(4181, 'Arizona State University', '6', 'Admit', 'MS', 'environmental engineering', 'Fall ', '2012', '800', '700', '1500', '4', '112', 'CEG', 'Civil Engineering (Agricultural and Irrigation Engineering Degree)', '7.5', '10', '0')
(4182, 'Arizona State University', '6', 'Admit', 'MS', 'Electronic and Telecommunication Engineering', 'Fall ', '2012', '162', '152', '314', '3', '96', 'Sardar Patel University', 'Electronics and Telecommunication', '8.34', '10', '0')
(4183, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '720', '510', '1230', '3.5', '100', 'COEP', 'Information Technology', '8.05', '10', '0')
(4184, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '162', '151', '313', '4', '97', 'PSG College of Technology', 'Mechanical', '8.04', '10', '0')
(4185, 'Arizona State University', '6', 'Admit', 'MS', 'Chemical/Environmental Engg.', 'Fall ', '2011', '740', '440', '1180', '4', '104', 'NIT Surat', 'Chemical', '9.34', '10', '0')
(4186, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '800', '570', '1370', '3.5', '107', 'CEG', 'ECE', '8.85', '10', '0')
(4187, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engg/Robotics', 'Fall ', '2013', '155', '143', '298', '3', '90', 'RMK Engineering College', 'Electronics and Instrumentation', '7.2', '100', '0')
(4188, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '159', '327', '3.5', '104', 'University of Calicut', 'Computer Science', '7.01', '100', '30')
(4189, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '164', '157', '321', '3.5', '111', 'BIT Mesra', 'Electronics and Communication Engineering', '8.91', '10', '0')
(4190, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2012', '790', '560', '1350', '4', '101', 'VJTI', 'civil engineering', '7', '10', '0')
(4191, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2010', '790', '550', '1340', '3.5', '112', 'Sathyabama University', 'ICE', '7.8', '100', '0')
(4192, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '150', '310', '3.5', '102', 'Kurukshetra University', 'Information Technology', '7', '100', '0')
(4193, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '155', '317', '4.5', '114', 'Manipal Institue of Technology', 'Computer Science', '9.46', '10', '12')
(4194, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '157', '319', '3', '107', 'VTU', 'CS', '8.9', '10', '0')
(4195, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '600', '1400', '3.5', '102', 'NIT Tirchy', 'ELECTRONICS AND COMMUNICATION ENGINEERING', '8.53', '10', '0')
(4196, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '163', '148', '311', '3', '104', 'The LNM Institute of Information Technology', 'Communication and Computer Engineering', '7.79', '10', '0')
(4197, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '153', '314', '3', '107', 'GGSIPU', 'Computer Science', '7.2', '100', '0')
(4198, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2008', '800', '570', '1370', '3', '105', 'TCE', 'ECE', '8.43', '10', '0')
(4199, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '740', '610', '1350', '4', '108', 'Thiagarajar College of engineering', 'Mechanical Engineering', '8.7', '10', '0')
(4200, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2010', '800', '570', '1370', '4', '110', 'BITS Pilani', 'EEE', '8.12', '10', '0')
(4201, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '159', '150', '309', '3', '98', 'NIT Kurukshetra', 'Mechanical Engineering', '8', '10', '0')
(4202, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2014', '163', '148', '311', '3', '102', 'JNTU', 'Electronics and communication engineering', '8', '100', '0')
(4203, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '780', '520', '1300', '3.5', '108', 'PSG College of Technology', 'ECE', '9.17', '10', '0')
(4204, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2007', '800', '640', '1440', '4', '273', 'CEG', 'ECE', '8.79', '10', '0')
(4205, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering/Comp Science', 'Fall ', '2013', '164', '161', '325', '4.5', '113', 'Fr. CRIT Vashi Mumbai University', 'Computer Engineering', '7.4', '100', '0')
(4206, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '600', '1390', '4', '110', 'RNSIT', 'Computer Science', '7.67', '100', '0')
(4207, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '159', '150', '309', '4', '6', 'Vignan Institute of Technology and Science', 'ECE', '7.7', '100', '0')
(4208, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '162', '152', '314', '4', '110', 'VIT', 'Electronics and Communication Engineering', '8.89', '10', '0')
(4209, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '148', '307', '3', '104', 'Anna University', 'Computer Science', '7.8', '100', '0')
(4210, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '160', '150', '310', '4.5', '106', 'UVCE', 'Computer Science', '8.1', '100', '75')
(4211, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Spring ', '2016', '162', '153', '315', '3.5', '110', 'SASTRA', 'Mechanical Engg', '8.26', '10', '27')
(4212, 'Arizona State University', '6', 'Admit', 'MS', 'CS', 'Fall ', '2013', '150', '160', '310', '3.5', '104', 'Amrita School of Engineering', 'Information Technology', '7.1', '10', '0')
(4213, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '790', '570', '1360', '3', '120', 'BMSCE', 'CS', '8.1', '100', '0')
(4214, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '165', '154', '319', '3', '112', 'The LNM Institute of Information Technology', 'Computer Science', '8.5', '10', '0')
(4215, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall', 'None', '780', '590', '1370', '4', '112', 'JNTU', 'ece', '8.5', '100', '0')
(4216, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '790', '330', '1120', '3.5', '91', 'Sathyabama University', 'ECE', '7.8', '100', '0')
(4217, 'Arizona State University', '6', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(4218, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '154', '318', '4', '104', 'SK University', 'CSE', '7.779999999999999', '100', '0')
(4219, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '770', '620', '1390', '3.5', '112', 'Amrita School of Engineering', 'ECE', '7.24', '10', '0')
(4220, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '750', '530', '1280', '3', '97', 'VJTI', 'Electronics', '7.9', '10', '0')
(4221, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '166', '162', '328', '4', '113', 'NIT Tirchy', 'Mechanical', '8.38', '10', '0')
(4222, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '158', '148', '306', '3', '96', 'University of Mumbai', 'Computer Engineering', '7.040000000000001', '100', '0')
(4223, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2008', '800', '560', '1360', '3.5', '115', 'K J Somaiya College of Engiineering', 'Electronics and telecommunication', '6.3', '100', '0')
(4224, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '161', '151', '312', '3', 'None', 'Bharathiar University', 'Electrical and Electronics', '8', '10', '84')
(4225, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '170', '151', '321', '3.5', '109', 'BITS Pilani', 'EEE', '7.49', '10', '15')
(4226, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '151', '312', '4.5', '115', 'Amity University', 'Computer Science', '7.36', '10', '0')
(4227, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '750', '510', '1260', '3.5', '86', 'Anna University', 'Computer Science', '8.040000000000001', '100', '0')
(4228, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '161', '149', '310', '3.5', '102', 'VTU', 'Computer Science', '7.495', '100', '25')
(4229, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '760', '470', '1230', '4.5', '97', 'Pune University', '0', '7', '100', '0')
(4230, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '790', '610', '1400', '3.5', '113', 'JNTU', 'ece', '7.87', '100', '0')
(4231, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science/ Mgmt', 'Fall ', '2011', '780', '530', '1310', '3.5', '100', 'Sri manakula vinayagar engg college/Pondicherry university', 'computer science', '8.14', '10', '0')
(4232, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '165', '150', '315', '3.5', '100', 'COEP', 'I.T.', '7.65', '10', '54')
(4233, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2015', '161', '151', '312', '4', '107', 'MSRIT', 'Civil Engineering', '9.35', '10', '0')
(4234, 'Arizona State University', '6', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2014', '164', '157', '321', '4', '109', 'BITS Hyderabad', 'Mechanical Engineering', '7.25', '10', '0')
(4235, 'Arizona State University', '6', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '159', '144', '303', '2', '95', 'None', '0', '0', '0', '0')
(4236, 'Arizona State University', '6', 'Admit', 'MS', 'Computer vision/image-video processing', 'Fall ', '2014', '800', '630', '1430', '3.5', '111', 'BITS Pilani', 'Ekectrical and Electronics', '8.13', '10', '0')
(4237, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Spring ', '2015', '161', '149', '310', '3', '103', 'Anna University', 'ECE', '8.73', '10', '16')
(4238, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '800', '660', '1460', '3.5', '109', 'None', 'Electronics and Communication', '9.45', '10', '0')
(4239, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '800', '610', '1410', '4.5', '283', 'University of Madras', 'Computer Science', '7.6', '100', '0')
(4240, 'Arizona State University', '6', 'Admit', 'MS', 'analytics', 'Fall ', '2015', '167', '147', '314', '3.5', '103', 'K J Somaiya College of Engiineering', 'Electronics', '5.5', '100', '0')
(4241, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '148', '309', '3', '94', 'JSSATE India', 'CS', '7.284000000000001', '100', '0')
(4242, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '670', '520', '1190', '4', '93', 'MSRIT', 'Industrial Engineering and Management', '7.0920000000000005', '100', '0')
(4243, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2013', '730', '640', '1370', '4.5', '108', 'L D College Of Engineering', 'Civil', '7.56', '10', '0')
(4244, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '170', '153', '323', '4', '106', 'IIT Roorkee', 'Electrical Engineering', '8.3', '10', '0')
(4245, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical / Industrial Engg.', 'Fall ', '2013', '160', '164', '324', '4.5', '114', 'None', 'Mechanical Engineering', '8.034', '100', '0')
(4246, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '770', '560', '1330', '4', '108', 'Anna University', 'Aeronautical Engineering', '8.33', '10', '0')
(4247, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '164', '152', '316', '3.5', '106', 'NIT Calicut', 'Mechanical Engineering', '8.48', '10', '48')
(4248, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '790', '470', '1260', '5.5', '283', 'NIT Karnataka', 'Electronics and Communication', '8.2', '100', '0')
(4249, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '570', '1370', '3.5', '108', 'NSS College of Engineering', 'Electronics and Communication', '7.9', '100', '0')
(4250, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '159', '321', '3.5', '109', 'MIT', 'EEE', '8.85', '10', '0')
(4251, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '158', '143', '301', '3', '98', 'Anna University', 'Mechanical', '7.76', '10', '0')
(4252, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '640', '1440', '4', '111', 'NITK Surathkal', 'ECE', '8.78', '10', '0')
(4253, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2011', '790', '760', '1550', '4.5', '111', 'BITS Pilani', '0', '7.9', '10', '0')
(4254, 'Arizona State University', '6', 'Admit', 'MS', 'Materials Science & Engineering', 'Fall ', '2012', '760', '530', '1290', '3.5', '109', 'NIT Warangal', 'Metallurgical and Materials Engg.', '8.5', '10', '0')
(4255, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '740', '460', '1200', '3', '91', 'MIT/ANNA UNIVERSITY', 'PRODUCTION ENGINEERING', '8.3', '10', '0')
(4256, 'Arizona State University', '6', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2014', '157', '156', '313', '3.5', '107', 'VIT', 'Biomedical EWNgineering', '8.3', '10', '0')
(4257, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '780', '340', '1120', '3', 'None', 'SSN College of Engineering', 'B.E. Mechanical Engineering', '8.2', '100', '36')
(4258, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '164', '141', '305', '3.5', '98', 'MU', 'Information Technology', '6.795999999999999', '100', '0')
(4259, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '550', '1340', '3.5', '100', 'Nirma Institute of Technology', 'Electronics & Communications', '8.47', '10', '0')
(4260, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '170', '151', '321', '3.5', '102', 'JNTU', 'EEE', '7.3', '100', '0')
(4261, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '600', '1400', '3', '112', 'NIT Calicut', 'ECE', '8.32', '10', '0')
(4262, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '164', '159', '323', '4', '109', 'MU', 'Electronics & Telecommunication', '6.888', '100', '0')
(4263, 'Arizona State University', '6', 'Admit', 'MS', 'Business Analytics', 'Fall ', '2014', '167', '157', '324', '3', '110', 'IIT', 'Electronics and Communication', '7.94', '10', '0')
(4264, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '440', '1230', '3.5', '101', 'KLCE', 'Electonics and communications', '0.868', '100', '0')
(4265, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '163', '149', '312', '3', '99', 'JNTU', 'ECE', '7.26', '10', '0')
(4266, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science/ Mgmt', 'Fall ', '2011', '800', '410', '1210', '350', '111', 'None', '0', '0', '0', '0')
(4267, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '150', '315', '3', '106', 'Sri Venkateswara College of Engineering', 'Information Technology', '7.8', '100', '0')
(4268, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '162', '153', '315', 'None', '103', 'PSG College of Technology', 'MECHANICAL SANDWICH', '8.71', '10', '0')
(4269, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '167', '148', '315', '3.5', '109', 'IIT Delhi', 'Electrical Engineering', '8.06', '10', '0')
(4270, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '640', '1440', '3', '100', 'CVRCE', 'ece', '8.1', '100', '0')
(4271, 'Arizona State University', '6', 'Admit', 'MS', 'EE / CS', 'Fall ', '2013', '800', '410', '1210', '3', '115', 'RKNEC', 'EC', '7.455', '100', '0')
(4272, 'Arizona State University', '6', 'Admit', 'MS', 'Construction Management', 'Fall ', '2013', '153', '146', '299', '3', '7', 'Osmania University', 'civil', '0', '0', '0')
(4273, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '590', '1370', '3', '98', 'CEG', 'Electronics and Communication', '7.03', '10', '0')
(4274, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '800', '550', '1350', '3.5', '102', 'None', 'CS', '7.2', '100', '0')
(4275, 'Arizona State University', '6', 'Admit', 'MS', 'Business Analytics', 'Fall ', '2014', '165', '155', '320', '3', '109', 'IIT (BHU) Varanasi', 'Mechanical Engineering', '7.01', '10', '0')
(4276, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics Engineering', 'Fall ', '2015', '168', '156', '324', '3', '96', 'Velammal Engineering College', 'Electronics and Communication Engineering', '9.01', '10', '0')
(4277, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '167', '146', '313', '3.5', '93', 'VTU', 'ECE', '8.55', '100', '0')
(4278, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '168', '142', '310', '3', '90', 'IIT Bhubaneswar', 'Electrcial Engineering', '8.14', '10', '0')
(4279, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '163', '152', '315', '3', '103', 'CoE Trivandrum', 'Applied Electronics and Instrumentation', '7.69', '10', '0')
(4280, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2014', '161', '152', '313', '4', '112', 'MNIT', 'Civil Engineering', '7.67', '10', '0')
(4281, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '169', '160', '329', '4', '106', 'IIT Madras', 'Engineering Physics', '0', '0', '0')
(4282, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2013', '164', '157', '321', '4', '113', 'Manipal Institue of Technology', 'EEE', '8.08', '10', '0')
(4283, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2016', '161', '146', '307', '4', '103', 'NMAM Institute of technology', 'Electronics and Communication Engineering', '8.73', '10', '0')
(4284, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '770', '610', '1380', '3.5', '112', 'NIT Bhopal', 'ECE', '8.27', '10', '0')
(4285, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '159', '147', '306', '3', '99', 'The National Institute of Engineering', 'Mechanical Engg.', '8.91', '10', '34')
(4286, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '161', '157', '318', '4.5', '105', 'University of Pune', 'Mechanical', '6.8', '100', '0')
(4287, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '750', '450', '1200', '4', '106', 'VTU', 'CS', '8.7', '10', '0')
(4288, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '440', '1220', '3', '96', 'Sreenidhi Institute of Science & Technology', 'Electronics & Communications', '7.959999999999999', '100', '0')
(4289, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2009', '800', '410', '1210', '3.5', '107', 'MIST JNTU -HYD', 'ECE', '0', '0', '0')
(4290, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '750', '650', '1400', '4', '110', 'Crescent Engineering College', 'CSE', '7.2', '100', '0')
(4291, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '730', '490', '1220', '3', '94', 'MU', 'Comp. Engg', '7.7', '100', '0')
(4292, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '163', '156', '319', '3.5', '107', 'VIT', 'Mechanical engineering', '8.93', '10', '29')
(4293, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '14', '161', '147', '308', '3.5', '99', 'SRM', 'CSE', '7.98', '10', '33')
(4294, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2007', '780', '370', '1150', '5', '270', 'College of Technology Pantnagar', 'Electronics and Communication Engineering', '7.922', '10', '0')
(4295, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '158', '322', '4', '105', 'BITS Pilani', 'Computer Science', '7.64', '10', '35')
(4296, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '161', '157', '318', '3.5', '95', 'AMU Aligarh', 'Mech.', '9.67', '10', '0')
(4297, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '580', '1380', '4', '107', 'MS University Baroda', 'Electronics', '7.814', '100', '0')
(4298, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2015', '169', '155', '324', '3', '99', 'NIT Kurukshetra', 'ECE', '8.53', '10', '0')
(4299, 'Arizona State University', '6', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '47', '33', '80', '4.5', '97', 'Pune University', '0', '6.7299999999999995', '100', '0')
(4300, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '167', '160', '327', '4', '110', 'Amrita School of Engineering', 'ECE', '8.06', '10', '0')
(4301, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '161', '155', '316', '3.5', '103', 'None', 'Mechanical Engineering', '8.278', '100', '0')
(4302, 'Arizona State University', '6', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2013', '154', '162', '316', '4', '112', 'SWEC Hyd', 'Electronics and Instrumentation', '7.6', '100', '0')
(4303, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '310', '159', '469', '151', '98', 'NIT Calicut', 'Computer Science', '8.07', '10', '0')
(4304, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '159', '152', '311', '3', '100', 'Amrita School of Engineering', 'Mechanical', '8.34', '10', '0')
(4305, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '160', '151', '311', '3', '86', 'Thapar University', 'electronics and comm. engg', '9.1', '10', '0')
(4306, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '740', '560', '1300', '3.5', '106', 'HKBKCE', 'Electronics and Communication', '7.9', '100', '0')
(4307, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '620', '1420', '4.5', '109', 'Guru Gobind Singh Indraprashta University', 'Computer Science', '8.4', '100', '0')
(4308, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2016', '157', '156', '313', '3', '105', 'College Of Engg Chengannur', 'ECE', '7.32', '100', '55')
(4309, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '163', '150', '313', '3', '107', 'VIT University', 'EEE', '8.68', '10', '0')
(4310, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '590', '1350', '4.5', '115', 'Anna University', 'Electrical and Electronics/ Information Technology', '8.5', '100', '0')
(4311, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '162', '324', '3.5', '113', 'SASTRA', 'ICT', '8.32', '10', '24')
(4312, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '151', '316', '4.5', '110', 'VTU', 'Computer Science', '7.9', '100', '0')
(4313, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '740', '700', '1440', '4', '104', 'Sri Venkateswara College of Engineering', 'EEE', '7.7', '100', '0')
(4314, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '169', '145', '314', '4', '106', 'BNMIT', 'Electrical and Electronics', '7.731999999999999', '100', '0')
(4315, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '164', '147', '311', '3.5', '93', 'JNVU/MBM Engg College Jodhpur Rajasthan', 'CSE', '6.7', '100', '0')
(4316, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '166', '145', '311', '3', '100', 'None', '0', '0', '0', '0')
(4317, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2014', '800', '570', '1370', '3.5', '109', 'MSRIT', 'Electrical and Electronics', '8.74', '10', '24')
(4318, 'Arizona State University', '6', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(4319, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '670', '1470', '3.5', '113', 'R V College of Engineering', 'Electronics and Communication Engineering', '7.419', '100', '0')
(4320, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '166', '154', '320', '4.5', '108', 'NIT Allahabad', 'Computer Science and Engineering', '7.67', '10', '0')
(4321, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '470', '1240', '4', '108', 'VTU', 'Infosmation Science & Engineering', '7.567', '100', '0')
(4322, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '166', '148', '314', '3', '102', 'VIT University', 'Mechanical engineering', '9', '10', '0')
(4323, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '790', '490', '1280', '3.5', '110', 'MU', 'Mechanical', '7.3', '100', '0')
(4324, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2012', '750', '650', '1400', '4', '114', 'MU', 'Electronics and Telecommunication', '6.9', '100', '0')
(4325, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '167', '148', '315', '4', '99', 'VTU', 'Mechanical Engineering', '9.23', '10', '20')
(4326, 'Arizona State University', '6', 'Admit', 'MS', 'CS', 'Spring ', '2015', '164', '153', '317', '3.5', 'None', 'Manipal Institue of Technology', 'Information Technology', '7.67', '10', '0')
(4327, 'Arizona State University', '6', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2013', '158', '147', '305', '3', '103', 'Anna University', 'Aeronautical Engineering', '8.24', '10', '0')
(4328, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '700', '540', '1240', '3.5', '101', 'BIT Mesra', 'ECE', '0', '0', '0')
(4329, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '800', '660', '1460', '3.5', '113', 'None', '0', '7.3', '100', '0')
(4330, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '530', '1330', '4', '108', 'Anna University', 'Computer Science and Engineering', '8.1', '100', '0')
(4331, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '167', '160', '327', '4', '112', 'MU', 'CS', '6.864', '100', '0')
(4332, 'Arizona State University', '6', 'Admit', 'MS', 'Environmental Science', 'Fall ', '2014', '170', '157', '327', '4', '110', 'ISM Dhanbad', 'Environmental Science and Engineering', '7.09', '10', '0')
(4333, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '160', '150', '310', '4', '99', 'VJTI', 'Production Engineering', '8.2', '10', '36')
(4334, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '150', '311', '3.5', '101', 'WBUT', 'Information Technology', '8.38', '10', '0')
(4335, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '159', '151', '310', '3.5', '92', 'Punjab Technical University', 'ece', '7.8', '100', '0')
(4336, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '570', '1370', '3.5', '107', 'None', '0', '0', '0', '0')
(4337, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '800', '600', '1400', '4.5', '114', 'BITS Pilani', 'Electrical and Electronics', '8', '10', '0')
(4338, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '155', '315', '4.5', '112', 'SSN College of Engineering', 'Computer Science and Engineering', '8.04', '10', '0')
(4339, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '149', '310', '3', '99', 'Sri Jayachamarajendra College of Engineering', 'Electronics and Communication', '9.52', '10', '0')
(4340, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '640', '1440', '3', '109', 'COEP', 'Electrical', '7.73', '10', '0')
(4341, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '170', '150', '320', '3.5', '110', 'Dhirubhai Ambani Institute of Information & Communication Technology', 'Information and Communication Technology', '7.23', '10', '0')
(4342, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Spring ', '2011', '780', '570', '1350', '3.5', '112', 'Bapatla Engineering College', 'Civil Engineering', '8.99', '100', '0')
(4343, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '168', '155', '323', '3.5', '105', 'NIT Warangal', 'Electronics and Communication Engineering', '8.88', '10', '36')
(4344, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '148', '308', '3', '92', 'VTU', 'Information science & Engineering', '7.2', '100', '0')
(4345, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '162', '155', '317', '3', 'None', 'MU', 'Computer Engineering', '6.1', '100', '0')
(4346, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '620', '1420', '4', '109', 'SSN College of Engineering', 'Electronics & Communication', '8.9', '100', '0')
(4347, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '165', '149', '314', '3', '7', 'SRM', 'Computer Science', '8.3', '10', '0')
(4348, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '157', '153', '310', '3', '107', 'SRM', 'Electronics and instrumentation', '7.92', '10', '0')
(4349, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '540', '1320', '4', '113', 'NIT Tirchy', 'Instrumentation and Control Engineering', '8.07', '10', '0')
(4350, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '163', '323', 'None', '111', 'MU', 'Computer Engg', '7.287000000000001', '100', '0')
(4351, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '168', '156', '324', '3.5', '115', 'NITK Surathkal', 'EEE', '8.64', '10', '0')
(4352, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '165', '156', '321', '4', '116', 'M.V.S.R Engineering College', 'ECE', '8.7', '100', '0')
(4353, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '153', '318', '4', '104', 'CHARUSAT', 'Computer Engineering', '8.58', '10', '0')
(4354, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '510', '1310', '3', '96', 'IIT Kharagpur', 'ECE', '7.81', '10', '0')
(4355, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '168', '153', '321', '3', '108', 'NIT Surathkal', '0', '7.65', '10', '0')
(4356, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '570', '1350', '4', '108', 'SSN College of Engineering', 'Computer Science', '8.24', '100', '0')
(4357, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '600', '1390', '4', '108', 'Asansol Engineering College', 'Elctrical Engineering', '8.27', '10', '0')
(4358, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '148', '309', '3.5', '103', 'BITS Pilani', 'Information Systems', '7.6', '10', '0')
(4359, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '164', '157', '321', '3.5', '110', 'None', '0', '7.5', '100', '24')
(4360, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Spring ', '2013', '159', '140', '299', '2.5', '80', 'JNTU', 'ece', '6.3', '100', '0')
(4361, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '155', '315', '3.5', '107', 'MU', 'Computer Engineering', '3.8', '4', '0')
(4362, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '168', '155', '323', '3.5', '111', 'IIITDM Jabalpur', 'ECE', '8.8', '10', '0')
(4363, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2012', '148', '151', '299', '3.5', '112', 'MU', 'BE Civil', '0', '0', '0')
(4364, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '149', '311', '3.5', '94', 'Nagpur University', 'Computer Science', '7', '100', '0')
(4365, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '560', '1350', '3.5', '108', 'VJTI', 'Electrical Engineering', '7.3', '10', '0')
(4366, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '800', '590', '1390', '4', '287', 'MU', 'IT', '6.5', '100', '0')
(4367, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2010', '770', '560', '1330', '4.5', '116', 'Atharva College', 'Computer Engineering', '7.7', '100', '0')
(4368, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics & Communication', 'Fall ', '2012', '790', '440', '1230', '3.5', '96', 'VTU', 'ECE', '7.7', '100', '0')
(4369, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '167', '143', '310', '3', 'None', 'GITAM', 'ECE', '9', '100', '0')
(4370, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '750', '350', '1100', '3', '87', 'Madras Institute of Technology', 'ECE', '9.5', '10', '0')
(4371, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '780', '450', '1230', '3.5', '106', 'Punjabi University', 'Mechanical Engineering', '8.13', '10', '0')
(4372, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '168', '156', '324', '3', '98', 'SNIST', 'E.C.E', '8.1', '100', '0')
(4373, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'Manipal Institue of Technology', '0', '0', '0', '0')
(4374, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '157', '150', '307', '4', '105', 'MU', 'Information Technology', '7.35', '100', '0')
(4375, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '154', '315', '3', '103', 'VTU', 'Computer Science', '8.5', '100', '0')
(4376, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '158', '152', '310', '4', '113', 'Amrita School of Engineering', 'CSE', '8.4', '10', '0')
(4377, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '780', '680', '1460', '3', '106', 'MU', 'electronics', '7.9', '100', '0')
(4378, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall', 'None', '169', '152', '321', '3', '106', 'IIT Patna', 'EE', '7.6', '10', '0')
(4379, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '151', '314', '3', '103', 'PSG College of Technology', 'Computer science and Engineering', '8.3', '10', '41')
(4380, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '350', '1140', '3', '104', 'PSG College of Technology', 'Electronics and Communications', '9.17', '10', '0')
(4381, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '520', '1290', '305', '105', 'Dr Mahalingam College of Engineering and Technology', 'CSE', '8', '100', '0')
(4382, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '163', '152', '315', '4', 'None', 'NIT Nagpur', 'Electronics & Communication', '9.63', '10', '0')
(4383, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '790', '470', '1260', '3.5', '102', 'Anna University', 'CSE', '6.8', '100', '0')
(4384, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '163', '160', '323', '3', '106', 'Guru Gobind Singh Indraprashta University', 'Computer Science', '8.579', '100', '0')
(4385, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '720', '510', '1230', '3', '106', 'MU', 'Computer Engineering', '6.9', '100', '0')
(4386, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '620', '1420', '4', '112', 'PSG College of Technology', 'Information Technology', '9.05', '10', '0')
(4387, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '490', '1290', 'None', '99', 'IIITH', 'Computer Science', '8.37', '10', '0')
(4388, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '161', '153', '314', '3', '110', 'VTU', 'CSE', '8.333', '100', '38')
(4389, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '170', '163', '333', '4.5', '112', 'Netaji Subhas Institute of Technology', 'Information Technology', '7.2', '100', '36')
(4390, 'Arizona State University', '6', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2013', '157', '150', '307', '3', '100', 'Anna University', 'Biomedical Engineering', '8.58', '10', '0')
(4391, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '165', '150', '315', '3.5', '106', 'JNTU', 'Electronics & Communication Engineering', '7.6', '100', '0')
(4392, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '164', '162', '326', '4.5', 'None', 'R V College of Engineering', 'Computer Science', '7.2', '100', '0')
(4393, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '159', '157', '316', '3', '101', "Vidyavardhini\\'s College of Engg and Technology", 'Computer Engineering', '7.322', '100', '0')
(4394, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '170', '156', '326', '3.5', '108', 'COEP', 'Mechanical', '7.18', '10', '15')
(4395, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '163', '151', '314', '3', '106', 'Anna University', 'Information technology', '8', '100', '0')
(4396, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '157', '165', '322', '3.5', 'None', 'VTU', 'Information Science', '7.6', '100', '0')
(4397, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '166', '149', '315', '4', '107', 'VIT', 'ECE', '8.75', '10', '0')
(4398, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '430', '1190', '3.5', '91', 'srknec', 'electonics', '6.3', '100', '0')
(4399, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '167', '162', '329', '4', '100', 'Delhi University', 'Electronics and Communication', '7.3', '100', '0')
(4400, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '158', '318', 'None', '109', 'VTU', 'Computer Science', '8.107', '100', '0')
(4401, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '650', '1430', '4', '111', 'Rajiv Gandhi Prodyogiki Vishwavidyalaya', 'Electronics and Communication', '7', '100', '0')
(4402, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '610', '1410', '3.5', '106', 'Delhi College Of Engineeing', 'IT', '7.409999999999999', '100', '0')
(4403, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '170', '162', '332', '4.5', '116', 'Thiagarajar College of engineering', 'EEE', '8.8', '10', '0')
(4404, 'Arizona State University', '6', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '44', '31', '75', '4', '108', 'Sri Venkateswara College of Engineering', 'CSE', '7.5', '100', '0')
(4405, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '162', '150', '312', '3', '91', 'PSG College of Technology', 'Mechanical', '8.36', '10', '48')
(4406, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '790', '680', '1470', '5', '293', 'Model Engineering College', 'Electronics And Communication', '8.2', '100', '0')
(4407, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '780', '620', '1400', '4', '110', 'VIT University', '0', '8.4', '10', '0')
(4408, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '165', '150', '315', '4', '106', 'None', 'Mechanical Engineering', '9.1', '10', '0')
(4409, 'Arizona State University', '6', 'Admit', 'MS', 'CS/SE', 'Fall ', '2011', '750', '310', '1060', '3', '82', 'Sakalchand Patel College of Engg', 'Information Technology', '3.83', '4', '0')
(4410, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2015', '161', '153', '314', '4', '111', 'Sri Venkateswara College of Engineering', 'EEE', '8.8', '10', '0')
(4411, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '167', '155', '322', '4', 'None', 'SASTRA', 'Computer science and engineering', '8.48', '10', '0')
(4412, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '168', '159', '327', '4', '112', 'MNM Jain Engineering College', 'Electrical and Electronics Engineering', '9', '100', '0')
(4413, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '153', '316', '3.5', '110', 'VTU', 'Computer Science', '8.86', '10', '0')
(4414, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2013', '161', '147', '308', '3', '97', 'NIT Surat', 'Electronics Engineering', '8.02', '10', '0')
(4415, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '790', '680', '1470', '5', '293', 'D J Sanghvi', 'Computer Engineering', '6.6', '100', '0')
(4416, 'Arizona State University', '6', 'Admit', 'MS', 'CS', 'Fall ', '2012', '770', '490', '1260', '3', 'None', 'Madras Institute of Technology', 'IT', '7.8', '10', '0')
(4417, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '168', '152', '320', '3.5', '107', 'Medicaps Institute of Science & Technology Indore', 'Electronics & Communication', '7.1', '100', '0')
(4418, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '147', '309', '3', '110', 'SJCE', 'CSE', '8.86', '10', '0')
(4419, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering/Comp Science', 'Fall ', '2014', '161', '156', '317', '3', '102', 'College Of Engineering Roorkee', 'Information Technology', '7.1', '100', '30')
(4420, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '168', '161', '329', '4', '110', 'Jamia Millia Islamia', 'Dept of Comp Engg', '8.77', '10', '0')
(4421, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '780', '440', '1220', '3', '97', 'MU', 'Instrumentation Engineering', '6.5', '100', '0')
(4422, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '158', '150', '308', '4', '110', 'Coimbatore Insitute of Technology', 'ECE', '9.28', '10', '68')
(4423, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '168', '157', '325', '3', '108', 'GBPUAT Pantnagar', 'Electrical', '8.3', '10', '59')
(4424, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '730', '550', '1280', '3.5', '86', 'Anna University', 'mechanical', '7.8', '100', '0')
(4425, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '540', '1340', '3.5', '108', 'Manipal Institue of Technology', 'Mechanical', '8.73', '10', '0')
(4426, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '800', '640', '1440', '4', '108', 'Amrita School of Engineering', 'Electrical and Electronics', '7.73', '10', '0')
(4427, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '167', '157', '324', '4', '102', 'SASTRA', 'CSE', '6.9', '10', '0')
(4428, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '151', '149', '300', '3.5', '91', 'Iowa State University', 'Electrical Engineering', '0.35', '100', '0')
(4429, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '750', '660', '1410', '3.5', '107', 'Anna University', 'EEE', '8.1', '100', '0')
(4430, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '170', '153', '323', '3', '107', 'Assam Engineering College', 'Computer Science and engineering', '7.6', '100', '12')
(4431, 'Arizona State University', '6', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '160', '149', '309', '3', '101', 'GGSIPU', 'CSE', '7.9', '100', '0')
(4432, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '170', '145', '315', '3.5', '99', 'IIT Madras', 'Electrical Engineering', '7.16', '10', '0')
(4433, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '780', '620', '1400', '4', '113', 'Univ. of Pune', 'Computer Engineering', '6.154999999999999', '100', '0')
(4434, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '158', '139', '297', '3', '87', 'RTU/Government Engineering College Ajmer', 'Computer Science', '8', '100', '6')
(4435, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '164', '160', '324', '4', '114', 'VTU', 'CS', '7.5', '100', '0')
(4436, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '168', '152', '320', '3.5', '103', 'Sardar Patel University', 'Mechanical', '9.18', '10', '0')
(4437, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '770', '670', '1440', '6', '293', 'Anna University', 'CSE', '8', '100', '0')
(4438, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '163', '148', '311', '3', '102', 'Osmania University', 'ECE', '9.2', '100', '0')
(4439, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '158', '150', '308', '3.5', '107', 'VTU', 'ECE', '8.99', '10', '0')
(4440, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '360', '1160', '3', '107', 'Anna University', 'Electronics and Communication Engg', '7.5', '100', '0')
(4441, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '153', '148', '301', '3.5', '110', 'Sethu Institute of Technology AU', 'Instrumentation and Control Engineering', '6.5', '100', '0')
(4442, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '167', '156', '323', '4', '113', 'BITS Pilani', 'EEE', '6.45', '10', '25')
(4443, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '163', '141', '304', '4', '103', 'R V College of Engineering', 'Computer Science', '7.2', '100', '0')
(4444, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '167', '146', '313', '3.5', '95', 'B V Bhoomaraddi College of Engg & Tech (Affiliated to VTU)', 'Electronics and Communication', '7.6', '100', '0')
(4445, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '150', '316', '3', '103', 'Walchand College Of Engineering', 'CSE', '8.45', '10', '0')
(4446, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '800', '630', '1430', '4', '113', 'University of Mumbai', 'Electronics and Telecommunication', '7.3', '100', '0')
(4447, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2012', '770', '600', '1370', '3.5', '104', 'Pune University', 'Electronics and Telecom', '7.286', '100', '0')
(4448, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '151', '313', '4.5', '108', 'Shivaji University', 'Computer Science', '6.7', '100', '0')
(4449, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '620', '1420', '4', '108', 'NIT Bhopal', 'Computer Science and Engineering', '7.95', '10', '0')
(4450, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '162', '151', '313', '3', '101', 'Pune University', 'Computer Science', '6.8', '100', '25')
(4451, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '670', '1470', '4', '110', 'BITS Pilani', 'Computer Science and Engineering', '6.93', '10', '0')
(4452, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '170', '153', '323', '3.5', '90', 'Osmania University', 'ECE', '7.7', '100', '0')
(4453, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '162', '153', '315', '4', '104', 'Bangalore Institute of Technology', 'Electronics and Communication', '7.286', '100', '0')
(4454, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '540', '1310', '3.5', '98', 'SSN College of Engineering', 'IT', '7.7', '100', '0')
(4455, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '163', '153', '316', '3.5', '101', 'GGSIPU', 'Computer science and Engg', '7.340000000000001', '100', '0')
(4456, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '560', '1360', '3', '107', 'Anna University', 'Electronics and Communication', '8.9', '10', '0')
(4457, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2012', '780', '500', '1280', '3.5', '92', 'BIT Mesra', 'Electical and Electronics Engineering', '6.28', '10', '0')
(4458, 'Arizona State University', '6', 'Admit', 'MS', 'Information Security', 'Fall ', '2011', '770', '520', '1290', '3', '105', 'NIT Patna', 'IT', '9.18', '10', '0')
(4459, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '161', '328', '3', '103', 'COEP', 'Instrumentation and Control', '9.38', '10', '12')
(4460, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '750', '650', '1400', '3.5', '110', 'SASTRA', 'CSE', '9.1', '10', '0')
(4461, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '560', '1360', '3', '104', 'None', '0', '6.7', '100', '0')
(4462, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '480', '1280', '2.5', '81', 'G.Narayanamma Institute of Technology and Science', 'computer science', '7.8', '100', '0')
(4463, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2011', '800', '580', '1380', '4.5', '117', 'Osmania University', 'Electronics and Communication Engg.', '7.9', '100', '0')
(4464, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '750', '560', '1310', '4', '112', 'Faculty of Technology Dharmsinh Desai University', 'Computer Engineering', '6.8', '100', '0')
(4465, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '170', '148', '318', '3.5', '101', 'Nirma Institute of Technology', 'Electronics and communication', '8.28', '10', '0')
(4466, 'Arizona State University', '6', 'Admit', 'MS', 'Civil and Environmental Engg', 'Fall ', '2015', '164', '149', '313', '4', '113', 'Pondicherry University', 'Civil Engg', '7.7', '10', '0')
(4467, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2013', '164', '153', '317', '4', '108', 'RGTU', 'Electronics & Communication Engineering', '7.5', '100', '0')
(4468, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '168', '153', '321', '3.5', '108', 'NIT Rourkela', 'Electrical', '8.74', '10', '0')
(4469, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '154', '316', '3.5', '107', 'WBUT', 'CSE', '8.4', '10', '0')
(4470, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '161', '326', '3.5', '108', 'Jadavpur University', 'Information Technology', '8.99', '10', '0')
(4471, 'Arizona State University', '6', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2014', '161', '154', '315', '4', '110', 'NUAA', '0', '4.3', '5', '0')
(4472, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '163', '157', '320', '3', '100', 'ACCET', 'Electronics and Coomunication', '8.004000000000001', '100', '45')
(4473, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '149', '309', '4', '114', 'COEP', 'Information Technology', '9.04', '10', '0')
(4474, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '580', '1380', '3', '92', 'None', '0', '0', '0', '0')
(4475, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '167', '157', '324', '4.5', '110', 'NIT Calicut', 'Mechanical Engineering', '7.11', '10', '0')
(4476, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '151', '310', '3', '89', 'JNTU', 'Computer Science & Engineering', '7.845000000000001', '100', '0')
(4477, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '670', '1470', '4', '108', 'VJTI', 'CS', '7.5', '10', '0')
(4478, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '161', '154', '315', '4.5', '106', 'MU', 'Information Technology', '6.723000000000001', '100', '24')
(4479, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '163', '149', '312', '3', '108', 'BMSCE', 'ECE', '8.9', '10', '0')
(4480, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '170', '155', '325', '3.5', '97', 'ISM Dhanbad', 'ELECTRONICS ENGINEERING', '7.06', '10', '0')
(4481, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '163', '146', '309', '3.5', '107', 'PSG College of Technology', 'Electronics and Communication', '9.24', '10', '0')
(4482, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '800', '550', '1350', '4.5', '280', 'G.B. Pant Univ of Agril. & Tech.', 'Computer Engineering', '7.2299999999999995', '100', '0')
(4483, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '160', '319', '4', 'None', 'RGPV', 'Computer Science', '7.1', '100', '0')
(4484, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '157', '319', '4', '112', 'PESIT', 'Computer science and Engineering', '8.21', '10', '25')
(4485, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '159', '151', '310', '3', 'None', 'VTU', 'Electronics and communication', '8.9', '10', '0')
(4486, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '770', '660', '1430', '3', '111', 'None', 'Electrical and Electronics Engineering', '8.73', '10', '0')
(4487, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '164', '139', '303', '3', '90', 'JNTU', 'ELECTRONICS AND COMMUNICATION ENGINEERING', '7.444', '100', '0')
(4488, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '770', '470', '1240', '4', '108', 'JNTU', 'Electronics and Computer Engineering', '8.309999999999999', '100', '36')
(4489, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '161', '155', '316', '4', '107', 'Sri Sairam Engineering College', 'Instrumentation and Control Engineering', '7.7', '100', '27')
(4490, 'Arizona State University', '6', 'Admit', 'MS', 'Business Analytics', 'Fall ', '2014', 'None', 'None', '0', 'None', 'None', 'NIT Tirchy', '0', '0', '0', '0')
(4491, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall', 'None', '151', '159', '310', '3', '107', 'NIT Tirchy', 'Production Engg', '7.37', '10', '0')
(4492, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '163', '147', '310', '4', '88', 'NITK Surathkal', 'ECE(Mtech)', '7.33', '10', '0')
(4493, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '460', '1240', '2.5', '95', 'Manipal Institue of Technology', 'Electronics and Communication', '8.69', '10', '0')
(4494, 'Arizona State University', '6', 'Admit', 'MS', 'None', 'Spring ', '2016', '163', '146', '309', '2.5', 'None', 'SRM', 'computer science and engineering', '8', '10', '30')
(4495, 'Arizona State University', '6', 'Admit', 'MS', 'Information technology management', 'Spring ', '2013', '165', '154', '319', '4', '107', 'Rajiv Gandhi Prodyogiki Vishwavidyalaya', 'Computer Science', '7.372', '100', '0')
(4496, 'Arizona State University', '6', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2013', '164', '149', '313', '3.5', '95', 'Anna University', 'computer science', '8.1', '100', '0')
(4497, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '680', '1480', '4.5', '115', 'Amrita School of Engineering', 'ECE', '8.32', '10', '0')
(4498, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '720', '1520', '3.5', '106', 'DU', 'EE', '7.1', '100', '0')
(4499, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '162', '150', '312', '3', '107', 'VTU', 'Electronics & communication', '9.25', '10', '0')
(4500, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '150', '312', '3', '99', 'CBIT', 'CSE', '8.9', '100', '0')
(4501, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '160', '145', '305', '3', '98', 'Anna University', 'Mechanical Engineering', '8.2', '10', '0')
(4502, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2011', '790', '560', '1350', '3', '102', 'Velammal Engineering College', 'ECE', '8', '100', '0')
(4503, 'Arizona State University', '6', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(4504, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '730', '1530', '3.5', '108', 'CBIT', 'EEE', '8.129999999999999', '100', '0')
(4505, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '168', '147', '315', '3.5', '99', 'None', 'Computer Science', '9.74', '10', '0')
(4506, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '160', '151', '311', '3', '101', 'UPTU', 'Information Techonoly', '7.628', '100', '36')
(4507, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '152', '314', '3', 'None', 'None', 'CSE', '8.23', '10', '24')
(4508, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '147', '307', '3', '92', 'NIT Warangal', 'Chemical Engineering', '8.36', '10', '0')
(4509, 'Arizona State University', '6', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2011', '680', '520', '1200', '3.5', '101', 'Maulana Azad National Institute of Technology', 'Bioinformatics', '8.04', '10', '0')
(4510, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '162', '154', '316', '4', '115', 'University of Calicut', 'Electronics and Communication', '9.54', '10', '0')
(4511, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '159', '144', '303', '3', '96', 'Symbiosis Institute of Technology', 'Mechanical', '2.984', '4', '0')
(4512, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '610', '1400', '4', '114', 'PICT', 'Computer Engineering', '3.5', '4', '0')
(4513, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '167', '158', '325', '3', '110', 'VIT University', 'Mechanical', '8.73', '10', '0')
(4514, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '600', '1370', '4', '105', 'Pune University', 'Computer', '6.4239999999999995', '100', '0')
(4515, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '780', '500', '1280', '4', '100', 'Maharaja Agrasen Institute Of Technology', 'Electronics and communication', '7.4', '100', '0')
(4516, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '770', '510', '1280', '3.5', '94', 'BITS Pilani', '0', '8.17', '10', '0')
(4517, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'Bangalore Institute of Technology', 'Information Science', '7.88', '100', '0')
(4518, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '800', '620', '1420', '4.5', '108', 'VJTI', 'electrical', '8', '10', '0')
(4519, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '164', '153', '317', '4', '109', 'Amrita School of Engineering', 'ECE', '8.88', '10', '0')
(4520, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics & Communication', 'Fall ', '2013', '162', '151', '313', '4', '99', 'VIT', 'Electronics & Communication', '8.76', '10', '0')
(4521, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '720', '380', '1100', '3.5', '88', 'Anna University', 'Computer Science', '8', '10', '0')
(4522, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '150', '315', '3.5', '109', 'UPTU', 'Computer Science', '7.312', '100', '0')
(4523, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '163', '149', '312', '3.5', '93', 'Maharishi Dayanand University', 'Computer Science', '7.5', '100', '0')
(4524, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2010', '770', '530', '1300', '4.5', '118', 'Anna University', 'Electronics and Communication Engineering', '7.3', '100', '0')
(4525, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '520', '1300', '3', '104', 'U.P Technical University', 'Computer Science', '6.2', '100', '0')
(4526, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '770', '490', '1260', '3.5', '95', 'RNSIT', 'Electronics and Comm', '7.7', '100', '0')
(4527, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '420', '1200', '4', '100', 'MSRIT', 'Electronics & Communications', '7.9', '100', '0')
(4528, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '165', '158', '323', '2.5', '100', 'NIT Rourkela', 'Mechanical Engg.', '8.17', '10', '0')
(4529, 'Arizona State University', '6', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2013', '158', '157', '315', '4.5', '110', 'Moscow Aviation Institute(National Research University) Moscow Russia', 'Aerospace', '4.3', '5', '0')
(4530, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2016', '165', '152', '317', '4', '109', 'NIT Tirchy', 'Electrical & Electronics Engineering', '7.7', '10', '36')
(4531, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '166', '155', '321', '4', 'None', 'VTU', 'CS', '7.6', '100', '0')
(4532, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '163', '156', '319', '4', '119', 'National Insititute of Technology Karnataka', 'Electrical Engineering', '7.13', '10', '0')
(4533, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '500', '1250', '3', 'None', 'LNMIIT', 'computer science', '7.93', '10', '0')
(4534, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '800', '620', '1420', '3.5', '101', 'UIET Panjab University', 'Computer science', '7.2700000000000005', '100', '0')
(4535, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '170', '143', '313', '4', '97', 'MU', 'Computer Engineering', '7.4', '100', '0')
(4536, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '166', '153', '319', '4', 'None', 'Anna University', 'ece', '7.04', '10', '0')
(4537, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '154', '313', '3.5', 'None', 'JSSATE', 'InformationScience', '6.7', '100', '0')
(4538, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '800', '610', '1410', '4', '109', 'PEC University of Technology', 'Mechanical Engineering', '8.61', '10', '0')
(4539, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '168', '157', '325', '4.5', '115', 'R V College of Engineering', 'Electronics and Communication', '9.06', '10', '0')
(4540, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '164', '150', '314', '3.5', '109', 'BITS Pilani', 'E&I;', '7.4', '10', '0')
(4541, 'Arizona State University', '6', 'Admit', 'MS', 'CS', 'Fall ', '2015', '161', '155', '316', '4', '100', 'VTU', 'Computer Science', '7.3', '100', '61')
(4542, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2011', '720', '580', '1300', '3.5', '106', 'VTU', 'EEE', '7.886', '100', '0')
(4543, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '161', '147', '308', '3.5', '113', 'MSRIT', 'Information Science', '9.31', '10', '24')
(4544, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '150', '315', '4', '94', 'FCRIT', 'IT', '7.7700000000000005', '100', '0')
(4545, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '161', '158', '319', '4.5', 'None', 'VTU', 'Industrial Engg. & Management', '7.3', '100', '0')
(4546, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '170', '152', '322', '4', '110', 'VIT University', 'Energy Division', '8.62', '10', '0')
(4547, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '780', '460', '1240', '3', '92', 'JNEC', 'CS', '6.6', '100', '0')
(4548, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '155', '316', '3.5', '112', 'K J Somaiya College of Engiineering', 'EXTC', '7', '100', '0')
(4549, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '164', '143', '307', '3', '94', 'NITK Surathkal', 'Mechanical Engineering', '7.41', '10', '0')
(4550, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '164', '155', '319', '3.5', '99', 'Osmania University', 'Computer Science', '7.8', '100', '0')
(4551, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '430', '1210', '4', '105', 'VTU', 'CS', '7.5200000000000005', '100', '0')
(4552, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '163', '151', '314', '4.5', '108', 'Sri Jayachamarajendra College of Engineering', 'EEE', '9.4', '10', '17')
(4553, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '167', '157', '324', '3.5', '102', 'None', 'Mechanical', '8', '100', '29')
(4554, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '770', '640', '1410', '5.5', '283', 'NIT Calicut', 'ECE', '9.2', '10', '0')
(4555, 'Arizona State University', '6', 'Admit', 'MS', 'MIS', 'Fall', 'None', '162', '150', '312', 'None', '100', 'Nirma Institute of Technology', 'ECE', '7.74', '10', '0')
(4556, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '165', '158', '323', '3.5', '112', 'Dharamsinh Desai University', 'computer engineering', '8.3', '10', '12')
(4557, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '167', '152', '319', '4', '101', 'BITS Goa', 'Computer Science', '8.76', '10', '0')
(4558, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '670', '1430', '3.5', '107', 'JNTU', 'ECE', '7.8', '100', '0')
(4559, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '550', '1350', '3', '104', 'JNTU', 'EIE', '7.3', '100', '0')
(4560, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '500', '1270', '3.5', '104', 'PSG College of Technology', 'CS', '9.43', '10', '0')
(4561, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '610', '1410', '3.5', '108', 'VTU', 'Computer Science', '7.5', '100', '0')
(4562, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '770', '450', '1220', '3', '88', 'Sir MVIT', 'EC', '0.82', '100', '0')
(4563, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '154', '315', '3.5', 'None', 'Osmania University', 'I.T', '8.6', '100', '34')
(4564, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '710', '1500', '4.5', 'None', 'D J Sanghvi', 'IT', '6.7', '100', '0')
(4565, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '570', '1330', '3', '109', 'VTU', 'Electronics and Communication', '7.4', '100', '0')
(4566, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '750', '620', '1370', '4.5', '100', 'VESIT', 'Electronics and Telecomm.', '7.8', '100', '0')
(4567, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '770', '280', '1050', '3.5', '97', 'JNTU', 'Mechanical Engineering', '8.48', '100', '0')
(4568, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '580', '1360', '4', '113', 'RNSIT', 'ISE', '7.5', '100', '0')
(4569, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and computer science', 'Fall ', '2011', '1460', '670', '2130', '4', '114', 'University Institute of Engineering and Technology Kurukshetra University', 'Electronics and Communication', '7.111', '100', '0')
(4570, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '800', '530', '1330', '4', '280', 'NIT Tirchy', 'ECE', '8.2', '10', '0')
(4571, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '149', '312', '4', '106', 'YMCA', 'Information Technology', '8.27', '10', '0')
(4572, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '161', '148', '309', '3', '102', 'R V College of Engineering', 'Information Science', '9.05', '10', '40')
(4573, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '142', '305', '3', 'None', 'Panjab University', 'ECE', '6.537999999999999', '100', '0')
(4574, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '168', '156', '324', '3', '103', 'IIIT Allahabad', 'ECE', '9', '10', '0')
(4575, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '318', '155', '473', '163', '107', 'JNTU', 'Electronics and communications', '8.612', '100', '0')
(4576, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2014', '160', '143', '303', '3', '6', 'LDCE', '0', '7.2', '10', '0')
(4577, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '164', '154', '318', '3', 'None', 'CEG', 'ECE', '9.62', '10', '24')
(4578, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '161', '152', '313', '3.5', '109', 'Amrita Vishwa Vidhyapeetham', 'EEE', '9.16', '10', '24')
(4579, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '790', '570', '1360', '3.5', '116', 'JNTU', 'Electronics and Communication', '8.1', '100', '0')
(4580, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '780', '510', '1290', '2.5', 'None', 'Anna University', 'EEE', '8.01', '10', '0')
(4581, 'Arizona State University', '6', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2013', '170', '162', '332', '4.5', '118', 'IIT Madras', 'Aerospace', '0.9400000000000001', '100', '0')
(4582, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '162', '152', '314', '4.5', '109', 'Pune University', 'Electronics', '5.8', '100', '0')
(4583, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '170', '160', '330', '4.5', '110', 'IIITDM Kancheepuram', 'Eledctronics Design and Manufacturing', '9.25', '10', '18')
(4584, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Spring ', '2012', '790', '530', '1320', '3.5', '101', 'IIT Guwahati', 'Mech', '7.65', '10', '0')
(4585, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '760', '520', '1280', '4', '104', 'Amrita School of Engineering', 'ece', '8.02', '10', '0')
(4586, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '730', '560', '1290', '4', '108', 'JNTU', 'CSE', '7.6', '100', '0')
(4587, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '162', '157', '319', '4', '110', 'Gujarat Technological University', 'Mech', '8.3', '10', '0')
(4588, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '166', '156', '322', '3.5', '109', 'Veermata Jijabai Technological Institute', 'Computer Technology', '8.3', '10', '22')
(4589, 'Arizona State University', '6', 'Admit', 'MS', 'HCI / CS', 'Fall ', '2013', '157', '151', '308', '4.5', '109', 'Loyola College', 'Visual communications', '0', '0', '0')
(4590, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '149', '312', '3.5', '97', 'Pune University', 'Computer Engineering', '7.1', '100', '0')
(4591, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and computer science', 'Fall ', '2011', '800', '540', '1340', '3', '107', 'University of Mumbai', 'Electronics', '7.308', '100', '0')
(4592, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '154', '314', '2.5', '91', 'SSN College of Engineering', 'IT', '7.92', '100', '0')
(4593, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '162', '152', '314', '4', '106', 'NMIMS', 'IT', '3.04', '4', '0')
(4594, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '161', '159', '320', '4', '117', 'Datta Meghe College of Engineering', 'Mechanical Engineering', '7.05', '100', '0')
(4595, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '168', '161', '329', '3.5', '117', 'MU', 'Production Engineering', '7.4799999999999995', '100', '0')
(4596, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '580', '1370', '3', '83', 'Sinhgad College of Engineering', 'CS', '7.4', '100', '0')
(4597, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2013', '770', '540', '1310', '4', '109', 'VTU', 'Civil Engineering', '7.46', '10', '0')
(4598, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '790', '400', '1190', '3', '102', 'VIT', 'Electronics', '8.52', '10', '0')
(4599, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '168', '149', '317', '4', '105', 'IIT BHU', 'Electrical Engineering', '7.68', '10', '10')
(4600, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '162', '157', '319', '3.5', 'None', 'Arizona State University', 'Electrical Engineering', '3', '4', '0')
(4601, 'Arizona State University', '6', 'Admit', 'MS', 'Chemical Engineering', 'Fall ', '2013', '162', '150', '312', '3', '100', 'VIT Pune', 'CHEMICAL ENGINEERING', '8.5', '10', '0')
(4602, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical & Computer Engg/MIS/Industrial/Systems Engg', 'Fall ', '2012', '166', '158', '324', '3', '111', 'Amrita Vishwa Vidhyapeetham', 'Electronics & Intrumentation', '8.04', '10', '0')
(4603, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '165', '155', '320', '4', '105', 'IIT Patna', 'Department of EEE', '8.23', '10', '0')
(4604, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '580', '1360', '4', '104', 'University of Mumbai', 'Computer Engineering', '6.5', '100', '0')
(4605, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '145', '305', '3', '100', 'VTU', 'Computer Science', '7.4', '100', '0')
(4606, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '166', '158', '324', '3', '105', 'RGPV', 'Information Technology', '7.7090000000000005', '100', '0')
(4607, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(4608, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(4609, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '165', '151', '316', '3.5', '100', 'None', '0', '7.175', '100', '42')
(4610, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2014', '160', '146', '306', '3', '99', 'NIT Surat', 'Mechanical', '7.39', '10', '0')
(4611, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '570', '1370', '3.5', '104', 'JNTU', 'ECE', '8.4', '100', '0')
(4612, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '162', '149', '311', '3', 'None', 'JNTU', 'Computer Science and Engineering', '7.3', '100', '36')
(4613, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2015', '163', '140', '303', '3', '88', 'Sree Vidyanikethan Engineering College', 'Civil Engineering', '7.62', '100', '0')
(4614, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2011', '800', '550', '1350', '3.5', '102', 'VTU', 'CSE', '8.6', '100', '0')
(4615, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2011', '800', '540', '1340', '3.5', '107', 'NIT Trichy', 'CSE', '7.31', '10', '0')
(4616, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '155', '143', '298', '3', 'None', 'Coimbatore Insitute of Technology', 'mechanical', '7.7', '10', '0')
(4617, 'Arizona State University', '6', 'Admit', 'MS', 'CS', 'Fall ', '2013', '161', '152', '313', '3.5', '104', 'Madras Institute of Technology', 'Information Technology', '7.5', '10', '0')
(4618, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '480', '1260', '3.5', '98', 'West Bengal University Of Technology', 'Electrical Engg.', '8.36', '10', '0')
(4619, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '150', '313', '3', '97', 'None', '0', '0', '0', '0')
(4620, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '161', '148', '309', '3', '107', 'PESIT', 'Electronics and Communication', '8.94', '10', '31')
(4621, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '540', '1330', '3', '101', 'R V College of Engineering', 'ECE', '7.656999999999999', '100', '0')
(4622, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '770', '650', '1420', '4', '110', 'Birla Vishvakarma Mahavidyalaya', 'CS', '9.19', '10', '0')
(4623, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '170', '152', '322', '3', '100', 'RVR & JC College of Engineering', 'electrical and electronics engineering', '8.369', '100', '0')
(4624, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '158', '152', '310', '3.5', '111', 'None', 'ECE', '9.004000000000001', '100', '0')
(4625, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '161', '153', '314', '3', '104', 'Bangalore Institute of Technology', 'Computer Science', '7.3', '100', '12')
(4626, 'Arizona State University', '6', 'Admit', 'MS', 'analytics', 'Fall ', '2013', '155', '150', '305', '3.5', '107', 'Nagpur University', '0', '0', '0', '0')
(4627, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2015', '167', '157', '324', '4', '108', 'Anna University', 'ECE', '9', '10', '0')
(4628, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '165', '159', '324', '4', '112', 'NIT Rourkela', 'Electronics and Communication', '8.18', '10', '0')
(4629, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '770', '420', '1190', '3', '99', 'Sri Venkateswara College of Engineering', 'Electrical And Electronics Engineering', '7.5', '100', '0')
(4630, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '151', '314', '3', 'None', 'IIIT Allahabad', 'IT', '8.78', '10', '18')
(4631, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '570', '1340', '3', '100', 'West Bengal University Of Technology', 'CSE', '8.44', '10', '0')
(4632, 'Arizona State University', '6', 'Admit', 'MS', 'CS', 'Fall ', '2015', '163', '153', '316', '3', '101', 'GGSIPU', 'CSE', '7.56', '100', '18')
(4633, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '166', '158', '324', '3.5', '114', 'Maharaja Agrasen Institute Of Technology', 'ECE', '7.26', '100', '2')
(4634, 'Arizona State University', '6', 'Admit', 'MS', 'Manufacturing Engineering', 'Fall ', '2012', '163', '148', '311', '3', '105', 'BVP Pune', 'production', '7.7', '100', '0')
(4635, 'Arizona State University', '6', 'Admit', 'MS', 'Materials Science & Engineering', 'Fall ', '2013', '163', '156', '319', '4', '109', 'VIT University', 'Mechanical', '8.98', '10', '0')
(4636, 'Arizona State University', '6', 'Admit', 'MS', 'EE / CS', 'Fall ', '2013', '167', '159', '326', '3.5', '109', 'Pune University', 'Electronics and Telecommunications', '7.878', '100', '36')
(4637, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '164', '147', '311', '3.5', '101', 'DA-IICT', 'ICT', '8.2', '10', '0')
(4638, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '750', '580', '1330', '3.5', '101', 'Bharati Vidyapeeth', 'EEE', '6.938', '100', '0')
(4639, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '162', '152', '314', '4', '109', 'SRM', 'Electrical and Electronics', '0.9800000000000001', '100', '0')
(4640, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Spring ', '2016', '161', '152', '313', '3.5', 'None', 'University of Bristol', 'Civil Engineering', '3.2', '4', '0')
(4641, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '440', '1240', '3', '96', 'Dhirubhai Ambani Institute of Information & Communication Technology', 'Computer Science', '9.17', '10', '0')
(4642, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '790', '690', '1480', '5', '290', 'MU', 'Information Technology', '7', '100', '0')
(4643, 'Arizona State University', '6', 'Admit', 'MS', 'Materials Science & Engineering', 'Fall ', '2015', '164', '161', '325', '4', '112', 'COEP', 'Metallurgy and Material Science', '8.71', '10', '0')
(4644, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '143', '305', '3', '92', 'JBIT (Afflliated to JNTU)', 'Information Technology', '7.175', '100', '0')
(4645, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2007', '800', '650', '1450', '5', '297', 'PESIT', 'Electronics & Communication', '8.23', '100', '0')
(4646, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2007', '750', '560', '1310', '4.5', '273', 'GRIET', 'ECE', '7', '100', '0')
(4647, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '650', '1450', '4', '109', 'Dhirubhai Ambani Institute of Information & Communication Technology', 'Information & Communication Technology', '9.35', '10', '0')
(4648, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '161', '329', '4', '114', 'Institute of Technical Education and Research', 'Computer Science', '9.1', '10', '0')
(4649, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '165', '156', '321', '3', '114', 'BMSCE', 'Telecom', '9.5', '10', '18')
(4650, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '730', '570', '1300', '3', 'None', 'KIIT', 'ELECTRICAL ENGINEERING', '8.5', '10', '0')
(4651, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '770', '550', '1320', '3.5', '94', 'Madhav Institue of Technology and Science R.G.P.V. Bhopal', 'Electrical Engineering', '7.343000000000001', '100', '0')
(4652, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '770', '550', '1320', '3.5', '94', 'Madhav Institute of Technology & Science Gwalior', 'Electrical Engineering', '7.343000000000001', '100', '0')
(4653, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '760', '530', '1290', '3', '91', 'IIT Allahabad', 'Information Technology', '8.11', '10', '0')
(4654, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '165', '155', '320', '3', '96', 'VJTI', 'ETRX', '8.7', '10', '0')
(4655, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '161', '323', '4', '113', 'VIT', 'School of Electrical Sciences', '8.17', '10', '0')
(4656, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '165', '151', '316', '3.5', '111', 'Govt. College Of Engg. Aurangabad', 'Computer Science', '8.05', '100', '0')
(4657, 'Arizona State University', '6', 'Admit', 'MS', 'CS', 'Fall ', '2013', '159', '146', '305', '3', '91', 'University of Pune', 'Computer Science', '6.3', '100', '0')
(4658, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '149', '311', '3.5', 'None', 'Manipal Institue of Technology', 'Computer Science', '7.97', '10', '24')
(4659, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '163', '147', '310', '3', '106', 'PSG College of Technology', 'Production Engineering', '8.46', '10', '0')
(4660, 'Arizona State University', '6', 'Admit', 'MS', 'Materials Science & Engineering', 'Fall ', '2015', '166', '160', '326', '4', 'None', 'PEC University of Technology', 'Materials and Metallurgical Engineering', '7.5', '10', '2')
(4661, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '169', '157', '326', '4', '112', 'BITS Pilani', 'Electronics & Instrumentation', '7.5', '10', '0')
(4662, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring', 'None', '167', '149', '316', '2.5', '90', 'NIT Warangal', 'ECE', '7.36', '10', '26')
(4663, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '159', '149', '308', '3', '104', 'VTU', 'ECE', '8.123000000000001', '100', '0')
(4664, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '460', '1220', '3.5', '102', 'PSG College of Technology', 'Computer Science', '8.61', '10', '0')
(4665, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '580', '1380', '3.5', '101', 'NIT Silchar', 'CSE', '8.23', '10', '0')
(4666, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '149', '312', '3', '105', 'University of Mumbai', 'Computer Engineering', '6.768000000000001', '100', '6')
(4667, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '163', '150', '313', '3.5', '98', 'SSN College of Engineering', 'Computer science', '8', '10', '25')
(4668, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '730', '510', '1240', '3', '104', 'Sri Siddhartha Institute of technology', 'Information Science', '9.24', '10', '0')
(4669, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '770', '470', '1240', '3', '94', 'VIT University', 'B.Tech - IT', '8.87', '10', '0')
(4670, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2011', '800', '760', '1560', '4', '112', 'VTU', 'Information Science and Engineering', '7.9', '100', '0')
(4671, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '163', '152', '315', '4', '112', 'FCRIT', 'EXTC', '6.647', '100', '0')
(4672, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '165', '148', '313', '4', '105', 'SSN College of Engineering', 'Computer Science and Engineering', '8.34', '10', '22')
(4673, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Spring ', '2015', '161', '159', '320', '3.5', '106', 'IIT Mandi', 'Mechanical Engineering', '7.09', '10', '0')
(4674, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '163', '149', '312', '3.5', '99', 'VIT University', 'Electronics and communication Engineering', '8.75', '10', '0')
(4675, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '168', '156', '324', '3.5', '112', 'SASTRA', 'ELECTRICAL & ELECTRONICS', '7.7', '10', '0')
(4676, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '149', '313', '3', '93', 'Gayatri College of Engineering', 'Computer Science Engineering', '7.473000000000001', '100', '0')
(4677, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2015', '162', '148', '310', '3.5', '95', 'CVRCE', 'Civil Engineering', '7.5', '100', '0')
(4678, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2013', '166', '145', '311', '3', '92', 'BITS Pilani', 'Civil', '8.15', '10', '0')
(4679, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '790', '550', '1340', '2.5', '94', 'JNTU', 'EEE', '7.7', '100', '0')
(4680, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '147', '310', '3.5', '106', 'Sinhgad College of Engineering', 'Computer', '6.714', '100', '0')
(4681, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2015', '159', '149', '308', '3', '104', 'SRM', 'Civil Engineering', '9.1', '10', '16')
(4682, 'Arizona State University', '6', 'Admit', 'MS', 'analytics', 'Fall ', '2015', '159', '157', '316', '4.5', '108', 'BITS Pilani', 'Chemical Engg', '6.76', '10', '66')
(4683, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Spring ', '2016', '168', '152', '320', '3.5', '102', 'NIT Rourkela', 'ECE', '7.75', '10', '48')
(4684, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '750', '470', '1220', '3', 'None', 'Crescent Engineering College', 'Mechanical Engineering', '7.98', '10', '24')
(4685, 'Arizona State University', '6', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2011', '770', '580', '1350', '4', '115', 'PESIT', 'Mechanical', '8.73', '10', '0')
(4686, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '630', '1430', '3.5', '106', 'Bangalore Institute of Technology', 'Information Science', '7', '100', '0')
(4687, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '165', '152', '317', '3', '103', 'BMSCE', 'Electronics and communication', '9.14', '10', '0')
(4688, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '168', '164', '332', '4.5', '118', 'BITS Pilani', 'Mechanical Engineering', '8.09', '10', '0')
(4689, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '165', '143', '308', '3.5', '103', 'NIT Rourkela', 'Mechanical Engineering', '8.19', '10', '0')
(4690, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '600', '1400', '3.5', '110', 'Guru Gobind Singh Indraprashta University', 'Computer Science', '7.9', '100', '0')
(4691, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2010', '800', '630', '1430', '4', '109', 'NIT Durgapur', 'ECE', '7.93', '10', '0')
(4692, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '650', '1420', '4', '109', 'COEP', 'IT', '8.22', '10', '0')
(4693, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '165', '149', '314', '3.5', '109', 'Univ Of Pune', 'Mechanical', '5.8', '100', '0')
(4694, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '166', '164', '330', '4.5', '117', 'IIT BHU', 'Electronics', '7.92', '10', '0')
(4695, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '159', '159', '318', '4', '112', 'Sir MVIT', 'Industrial Engineering and Management', '7.9', '100', '0')
(4696, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '770', '550', '1320', '3.5', '113', 'UPTU', 'Electronics and Communication', '7.656000000000001', '100', '0')
(4697, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '159', '321', '3', '104', 'U.P.Technical University', 'Information Technology', '6.8', '100', '0')
(4698, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '164', '151', '315', '3', '102', 'MU', 'Electrical', '7.9799999999999995', '100', '0')
(4699, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2016', '160', '158', '318', '3', '106', 'S.D.M.C.E.T', 'electronics an communication engineering', '8.63', '10', '0')
(4700, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '150', '312', '3', '107', 'VTU', 'Computer Science', '7.3', '100', '0')
(4701, 'Arizona State University', '6', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(4702, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '159', '154', '313', '4', '111', 'MU', 'Mechanical Engineering', '7', '100', '0')
(4703, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '420', '1220', '4', '108', 'MU', 'Computer Engineering', '7.459999999999999', '100', '0')
(4704, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '162', '151', '313', '3.5', '101', 'Sinhgad College of Engineering', 'Mechanical engineering', '6.6', '100', '0')
(4705, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '380', '1180', 'None', '99', 'VTU', 'ECE', '8.2', '100', '0')
(4706, 'Arizona State University', '6', 'Admit', 'MS', 'civil', 'Fall ', '2014', '157', '148', '305', '2.5', '91', 'MSRIT', 'Civil', '8.15', '10', '0')
(4707, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Spring ', '2014', '157', '142', '299', '3', '90', 'JNTU', 'ece', '7.3', '100', '0')
(4708, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '760', '540', '1300', '3', '88', 'Sri Sairam Engineering College', 'EEE', '8', '100', '0')
(4709, 'Arizona State University', '6', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '800', '610', '1410', '3', '104', 'MU', 'Information Technology', '7.7', '100', '0')
(4710, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '760', '620', '1380', '4', '116', 'MU', 'Information Technology', '6.670999999999999', '100', '0')
(4711, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '680', '1480', '4', '105', 'Manipal Institue of Technology', 'Electronics and Communication', '9.06', '10', '0')
(4712, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '660', '1430', '2.5', 'None', 'Guru Nanak Dev University Amritsar', 'Computer Science and Engineering', '7.82', '100', '0')
(4713, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '600', '1390', '3', '104', 'Anna University', 'CSE', '8.45', '100', '0')
(4714, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '163', '150', '313', '3.5', '98', 'BITS Goa', 'Electrical Engineering', '7.84', '10', '0')
(4715, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '150', '310', '3.5', '107', 'GGSIPU', 'Information technology', '7.74', '100', '0')
(4716, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '800', '510', '1310', '3.5', '108', 'GITAM', 'ECE', '7.83', '10', '0')
(4717, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2012', '164', '156', '320', '4', '114', 'R V College of Engineering', 'CIVIL ENGINEERING', '9.8', '10', '0')
(4718, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '750', '580', '1330', '4', '103', 'Anna University', 'ECE', '7.8', '100', '0')
(4719, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', 'None', 'None', '0', 'None', 'None', 'D J Sanghvi', 'EXTC', '0', '0', '0')
(4720, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '670', '1470', '3.5', '102', 'JBIET', 'ece', '7.6', '100', '0')
(4721, 'Arizona State University', '6', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2016', '166', '144', '310', '3.5', 'None', 'Indraprastha University', 'ELECTRONICS AND COMMUNICATION', '7.2', '100', '0')
(4722, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2014', '157', '155', '312', '3.5', '116', 'SRM', 'EEE', '7.9', '10', '0')
(4723, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '720', '560', '1280', '3.5', '102', 'Univ--West Bengal University Of Technology/College--Institute Of Engineering And Management Kolkata', 'Computer Science Engineering', '8.52', '10', '0')
(4724, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '800', '460', '1260', '3.5', '99', 'GITAM', 'Mechanical Engineering', '8.07', '10', '0')
(4725, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2014', '165', '150', '315', '3', '105', 'Kerala University', 'EEE', '7.88', '10', '30')
(4726, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '157', '149', '306', '3', 'None', 'A D Patel Institute Of Technology', 'IT', '7.71', '10', '0')
(4727, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '168', '153', '321', '3.5', '104', 'University of Pune', 'E&TC;', '6.9', '100', '0')
(4728, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall', 'None', '162', '160', '322', '3.5', '106', 'None', '0', '7.57', '10', '0')
(4729, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '163', '146', '309', '4', '93', 'JNTU', 'CSE', '7.009', '100', '0')
(4730, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2015', '151', '151', '302', '3.5', '93', 'VIT University', 'Civil Engineering', '7.64', '10', '0')
(4731, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '780', '510', '1290', '3', '97', 'Velammal Engineering College', 'ECE', '8', '100', '0')
(4732, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '169', '156', '325', '4.5', '109', 'NIT Karnataka', 'Mechanical Engineering', '7.23', '10', '0')
(4733, 'Arizona State University', '6', 'Admit', 'MS', 'analytics', 'Fall ', '2013', '160', '151', '311', '3.5', '106', 'NMIMS', 'Computer Engineering', '2.98', '4', '0')
(4734, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '164', '161', '325', '4', '109', 'BPUT', 'Electrical Engineering', '9.03', '10', '0')
(4735, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '170', '154', '324', '4', '114', 'MDU', 'EECE', '8.34', '100', '24')
(4736, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '139', '300', '3', '95', 'Guru Gobind Singh Indraprashta University', 'Information Technology', '7.5280000000000005', '100', '0')
(4737, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '170', '161', '331', '5', '113', 'Manipal Institue of Technology', 'CSE', '7.73', '10', '31')
(4738, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '159', '149', '308', '3', '105', 'SATHAGIRI COLLEGE OF ENGINEERING VTU', 'ECE', '7.893000000000001', '100', '0')
(4739, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(4740, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical & Computer Engg/MIS/Industrial/Systems Engg', 'Fall ', '2014', '147', '141', '288', '2', 'None', 'kshatriya college of engineering JNTU-HYD', 'EEE', '6.598000000000001', '100', '0')
(4741, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2012', '780', '710', '1490', '4', '112', 'SPCE', 'Electronics', '7', '100', '0')
(4742, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '800', '550', '1350', '2.5', '108', 'JNTU', 'CSE', '8.1', '100', '0')
(4743, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '151', '313', '3.5', '109', 'Guru Gobind Singh Indraprashta University', 'Electronics And Communications Engg', '7.211', '100', '0')
(4744, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2011', '760', '630', '1390', '3', '102', 'CoE Trivandrum', '0', '7.3', '10', '0')
(4745, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '154', '315', '3', '115', 'Abhinav Hi-Tech College Of Engineering', 'Electronics and Communicaton Engineering', '7.1', '100', '0')
(4746, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '790', '510', '1300', '3.5', '105', 'GITAM', 'Electronics and Communication', '8.78', '10', '0')
(4747, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '158', '320', '3.5', '112', 'MU', 'Computer', '6.5', '100', '0')
(4748, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '160', '160', '320', '6', '120', 'MU', 'ME', '9.9', '100', '0')
(4749, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '157', '320', 'None', '103', 'VIT', 'Information Technology', '9.02', '10', '23')
(4750, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '162', '155', '317', '3.5', '106', 'Anna University / Sri Ramakrishna Engineering College', 'Mechanical Engineering', '8.45', '10', '33')
(4751, 'Arizona State University', '6', 'Admit', 'MS', 'Manufacturing Systems Engineering', 'Fall ', '2014', '164', '152', '316', 'None', '104', 'SIT', 'ECE', '9.4', '10', '0')
(4752, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '154', '318', '3.5', '104', 'VNR VJIET', 'CSE', '7.2', '100', '0')
(4753, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '740', '560', '1300', '4.5', '113', 'Pune University', 'Computer Engineering', '7.015000000000001', '100', '0')
(4754, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '149', '310', '3.5', '106', 'Maharaja Agrasen Institute Of Technology', 'Computer Science', '7.6', '100', '0')
(4755, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '620', '1420', '3.5', '111', 'College Of Engineering Roorkee', 'Computer Science', '7.6', '100', '0')
(4756, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '164', '152', '316', '3.5', '114', 'VIT', 'B.Tech - IT', '8.2', '10', '0')
(4757, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '540', '1330', '3.5', '93', 'Pune University', 'Computer Engineering', '6.3', '100', '0')
(4758, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2013', '168', '155', '323', '3', '115', 'Valliammai Engineering College', 'e.c.e', '7.6', '100', '0')
(4759, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '480', '1280', '3.5', '105', 'Anna University', 'ECE', '8.2', '100', '0')
(4760, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '166', '161', '327', '3.5', '114', 'K J Somaiya College of Engiineering', 'Mechanical Engineering', '6.7', '100', '0')
(4761, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '160', '149', '309', '3', '107', 'PSG College of Technology', 'Production Engineering', '7.94', '10', '0')
(4762, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '520', '1280', '4', '101', 'Coimbatore Insitute of Technology', 'CSE', '8.23', '10', '0')
(4763, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '790', '600', '1390', '3.5', '117', 'Madras Institute of Technology', 'RUBBER AND PLASTICS TECHNOLOGY', '8.48', '10', '0')
(4764, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '167', '156', '323', '3', '107', 'NIT Allahabad', 'Electrical', '7.04', '10', '50')
(4765, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '750', '610', '1360', '4', '113', 'Pune University', 'Electronics and telecomm', '0', '0', '0')
(4766, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '480', '1250', '4', '102', 'Fr. Agnel Bandra', 'Computer Engg', '7.3', '100', '0')
(4767, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '470', '1270', '3.5', '100', 'MU', 'I.T.', '6.1', '100', '0')
(4768, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '800', '370', '1170', '3', 'None', 'Govt. Engg. College Jabalpur', 'Mechanical Engineering', '7.578', '100', '0')
(4769, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '730', '410', '1140', '4', '108', 'KLESCET Belgaum', 'Computer science', '7.5200000000000005', '100', '0')
(4770, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '780', '610', '1390', '3', '96', 'PICT', 'Electronics & Telecommunications', '6.6', '100', '0')
(4771, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '165', '152', '317', '3', '103', 'NIT Durgapur', 'MCA', '8.67', '10', '0')
(4772, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '165', '160', '325', '4', '109', 'Calicut University', 'Mechanical Engineering', '7.96', '10', '0')
(4773, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '164', '148', '312', '3.5', '93', 'BSAITM', 'Computer Science', '7.2', '100', '0')
(4774, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '148', '307', '3.5', '96', 'VTU', 'Computer Science', '0', '0', '0')
(4775, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '390', '1180', '4', 'None', 'Bangalore Institute of Technology', 'Electronics & Communications', '7.7', '100', '0')
(4776, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2007', '790', '490', '1280', '4.5', '280', 'PSG College of Technology', 'ECE', '8.82', '10', '0')
(4777, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '165', '158', '323', '4', '110', 'MU', 'Electronics', '6.4959999999999996', '100', '0')
(4778, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '163', '156', '319', '3.5', 'None', 'Datta Meghe College of Engineering', 'Mechanical', '6.8', '100', '0')
(4779, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '157', '318', '3.5', '104', 'GGSIPU', 'CSE', '7.328', '100', '0')
(4780, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '158', '317', '3.5', '111', 'Vidyavardhaka College of Engineering', 'Computer Science', '7.428', '100', '0')
(4781, 'Arizona State University', '6', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '162', '146', '308', '3.5', '95', 'National Institute of Science and Technology B.P.U.T Orissa', 'ELectronics & Communication', '7.56', '10', '0')
(4782, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2009', '780', '450', '1230', '3', '100', 'GGSIPU', 'COMPUTER', '8.11', '100', '0')
(4783, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '168', '157', '325', '4', '109', 'Anna University', 'Information Technology', '7.99', '10', '51')
(4784, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '164', '155', '319', '3.5', '110', 'Anna University', 'Mech', '8.95', '10', '0')
(4785, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '154', '314', '3', '107', 'Gujarat Technological University', 'Computer Engineering', '8.161', '100', '0')
(4786, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '142', '306', '3', '99', 'VTU', 'IS', '8.49', '10', '0')
(4787, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '163', '146', '309', '3.5', '109', 'Sri Sairam Engineering College', 'Computer Science', '8', '10', '0')
(4788, 'Arizona State University', '6', 'Admit', 'MS', 'Manufacturing Systems Engineering', 'Fall ', '2013', '163', '157', '320', '4.5', '115', 'University of Calicut', 'MECHANICAL ENGINEEIRNG', '7.82', '100', '0')
(4789, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '162', '149', '311', '3', '112', 'Anna University', 'CSE', '8', '10', '0')
(4790, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '740', '520', '1260', '3', '95', 'R V College of Engineering', 'CSE', '7.6', '100', '0')
(4791, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '630', '1430', '3.5', '106', 'MU', 'Computer Engineering', '7.3', '100', '0')
(4792, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '168', '157', '325', '3.5', '114', 'NIT Tirchy', 'Electrical and Electronics', '9.1', '10', '19')
(4793, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '560', '1330', '3.5', '90', 'S.G.S.I.T.S. Indore RGPV Univ', 'Computer Engineering', '6.8', '100', '0')
(4794, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '770', '520', '1290', '3', '104', 'PSG College of Technology', 'EEE', '9.12', '10', '0')
(4795, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '163', '154', '317', '3', '103', 'SSN College of Engineering', 'EEE', '8.37', '10', '0')
(4796, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '570', '1370', '3.5', '101', 'IIIT Hyderabad', 'Computer Science', '8.01', '10', '0')
(4797, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '165', '145', '310', '3', '89', 'NIT Warangal', 'cse', '8.38', '10', '24')
(4798, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '159', '151', '310', '4', '96', 'R V College of Engineering', 'ISE', '8.45', '10', '43')
(4799, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '520', '1310', '4', '107', 'PESIT', 'Electronics and communication', '7.726999999999999', '100', '0')
(4800, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '168', '143', '311', '3', '96', 'CEG', 'Computer Science', '7.25', '10', '48')
(4801, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '740', '550', '1290', '3.5', '111', 'VTU', 'ECE', '8', '100', '0')
(4802, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '510', '1310', '3.5', '103', 'BITS Goa', 'EEE', '7.81', '10', '0')
(4803, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '162', '142', '304', '3', '88', 'JNTU', 'ECE', '7.2', '100', '0')
(4804, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '162', '153', '315', '3.5', '110', 'SRM', 'Electronics and Instrumentation', '8.71', '10', '0')
(4805, 'Arizona State University', '6', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2013', '159', '151', '310', '3.5', '107', 'SSN College of Engineering', 'BIOMEDICAL ENGINEERING', '8.9', '10', '0')
(4806, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '166', '157', '323', '3', '102', 'IIITDM', 'electronics engg', '9.27', '10', '0')
(4807, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '167', '327', '4.5', '116', 'VTU', 'CS', '8', '100', '0')
(4808, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '160', '146', '306', '2.5', '92', 'SGGSIE&T; Nanded', 'Information Technology', '7.8', '10', '0')
(4809, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '560', '1340', '3', '99', 'BMSCE', 'EC', '7.5', '100', '0')
(4810, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '167', '141', '308', '3', '98', 'NIT Warangal', 'CSE', '8.5', '10', '48')
(4811, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2011', '780', '540', '1320', '3.5', '105', 'NIT Surathkal', 'Civil Engineering', '8.8', '10', '0')
(4812, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '162', '162', '324', '4.5', '114', 'Amity University', 'Electrical & Electronics (EEE)', '8.69', '10', '0')
(4813, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2016', '160', '150', '310', '3', '102', 'Biju Patnaik University of Technology', 'Electrical Engineering', '8.71', '10', '0')
(4814, 'Arizona State University', '6', 'Admit', 'MS', 'CS / MSIS / ITM', 'Fall', 'None', '760', '550', '1310', '4', '110', 'Model Engineering College', 'Computer Science and Engineering', '7.609999999999999', '100', '0')
(4815, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '550', '1340', '2.5', '90', 'COEP', 'Electronics and Telecommunications', '7.3', '10', '0')
(4816, 'Arizona State University', '6', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(4817, 'Arizona State University', '6', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2013', '163', '149', '312', '3.5', '99', 'NIT Rourkela', 'Biomedical Engineering', '7.03', '10', '0')
(4818, 'Arizona State University', '6', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2011', '800', '430', '1230', '3', '92', 'BITS Pilani', 'Marine Engineering', '9.27', '10', '0')
(4819, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '165', '151', '316', '3.5', '104', 'NIT Warangal', 'ECE', '7.78', '10', '0')
(4820, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(4821, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics & Communication', 'Fall', 'None', '800', '620', '1420', '3.5', '108', 'VIT University', 'ECE', '8.8', '10', '0')
(4822, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '162', '148', '310', '3.5', '95', 'NIT Warangal', 'Mechanical Engineering', '8.77', '10', '24')
(4823, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '148', '311', '3', '93', 'GITAM', 'Information Technology', '8.4', '10', '0')
(4824, 'Arizona State University', '6', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(4825, 'Arizona State University', '6', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '159', '146', '305', '3.5', 'None', 'JNTU', 'Electronics and Communication Engineering', '8.26', '100', '0')
(4826, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '169', '153', '322', '3', '98', 'NIT Warangal', 'ece', '8.05', '10', '0')
(4827, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '550', '1350', '3', '97', 'Rajiv Gandhi Institute Of Technology', 'Computer Engineering', '6.5920000000000005', '100', '0')
(4828, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '153', '312', '3', '98', 'PSG College of Technology', 'Information Technology', '8.85', '10', '0')
(4829, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '430', '1230', '4', '113', 'BITS Goa', 'Electrical and Electronics', '8.3', '10', '0')
(4830, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '710', '590', '1300', '3', '107', 'VTU', 'Computer science', '8', '100', '0')
(4831, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '600', '1400', '4', '106', 'Govt. College of Technology Coimbatore (Anna University)', 'Computer Science and Engineering', '8.6', '10', '0')
(4832, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '159', '321', '4.5', '113', 'NIT Durgapur', 'Information Technology', '7.81', '10', '0')
(4833, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '390', '1180', '3.5', '94', 'VIT University', 'ECE', '0.89', '100', '0')
(4834, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '159', '152', '311', '4', '109', 'VTU', 'electrical', '7.6', '100', '0')
(4835, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '150', '315', '3', '101', 'IPS Academy Indore [RGPV University Bhopal]', 'CSE', '7.5', '100', '0')
(4836, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '800', '630', '1430', '4', '109', 'NITK Surathkal', 'Mechanical Engg', '8.4', '10', '0')
(4837, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2013', '170', '154', '324', '3.5', '107', 'NIT Calicut', 'EEE', '7.4', '10', '0')
(4838, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '750', '520', '1270', '2.5', '110', 'SSN College of Engineering', 'ECE', '8', '100', '0')
(4839, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '163', '158', '321', '4.5', '105', 'Pune University', 'Computer Engineering', '6.7', '100', '0')
(4840, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '770', '380', '1150', '3.5', '100', 'Osmania University', 'CSE', '7.9', '100', '0')
(4841, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '410', '1210', '2', '108', 'JNTU', 'ECE', '7', '100', '0')
(4842, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '164', '159', '323', '3.5', '103', 'PESIT', 'Computer Science', '7.7', '100', '54')
(4843, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '161', '149', '310', '3', '102', 'SASTRA', 'ECE', '8', '10', '0')
(4844, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '160', '149', '309', '4', '99', 'WCE Sangli', 'IT', '7.9', '100', '0')
(4845, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '650', '1450', '3', '96', 'Thapar University', 'Electrical Engineering', '9.14', '10', '0')
(4846, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(4847, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '157', '317', '4', '109', 'NIT Silchar', 'Computer Science and Engineering', '8.23', '10', '0')
(4848, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '680', '1480', '3.5', '114', 'Jabalpur Engineering College (Govt.)', 'Information Technology', '7.15', '100', '0')
(4849, 'Arizona State University', '6', 'Admit', 'MS', 'CS', 'Fall ', '2015', '164', '153', '317', '3', '103', 'NIT Rourkela', 'Computer Science & Engineering', '8.44', '10', '34')
(4850, 'Arizona State University', '6', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(4851, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '157', '151', '308', '3.5', '102', 'RGPV', 'MECHANICAL ENGINEERING', '3.45', '4', '0')
(4852, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '152', '315', '4.5', '109', 'Amity School of Engineering and Technology', 'Computer Science', '8', '10', '58')
(4853, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '650', '1450', '4.5', '116', 'Pune University', 'Computer Engineering', '3.4', '4', '0')
(4854, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2007', '800', '430', '1230', '4', '237', 'CEG', 'Electronics and Communication', '9.03', '10', '0')
(4855, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '143', '304', '3', '94', 'Sree Vidyanikethan Engineering College', 'INFORMATION TECHNOLOGY', '7.434', '100', '0')
(4856, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '162', '153', '315', '3', '104', 'RGUKT', 'Electronics and Communication', '9.11', '10', '0')
(4857, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '166', '151', '317', '3', '92', 'NMREC', 'ECE', '7.1', '100', '0')
(4858, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2012', '159', '145', '304', '3', '99', 'NIT Warangal', 'civil engineering', '8.19', '10', '0')
(4859, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '161', '329', '3.5', '113', 'Jaypee Institute of Information Technology', 'Computer Science & IT', '8.3', '10', '0')
(4860, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '168', '147', '315', '3', '95', 'COEP', 'Computer Science', '7.99', '10', '36')
(4861, 'Arizona State University', '6', 'Admit', 'MS', 'Instrumentation and Control', 'Fall ', '2012', '800', '620', '1420', '4', '104', 'VIT Pune', 'Instrumentation and Control', '8.5', '10', '0')
(4862, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '153', '317', '4.5', '113', 'Bangalore Institute of Technology', 'Computer Science', '8.36', '100', '0')
(4863, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '161', '155', '316', '4', '108', 'Rajiv Gandhi Technical University', 'Information Technology', '7.206', '100', '50')
(4864, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '149', '313', '3', '103', 'Amrita School of Engineering', 'CSE', '7.2', '10', '0')
(4865, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '157', '149', '306', '3.5', '94', 'BVBCET', 'Computer Science', '7.26', '10', '0')
(4866, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '168', '148', '316', '3.5', '101', 'IIT Kanpur', 'Electrical Engineering', '8.8', '10', '0')
(4867, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '800', '600', '1400', '3', '96', 'IPU/MAIT', 'ECE', '7.6', '100', '0')
(4868, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '750', '660', '1410', '3.5', '112', 'SSN College of Engineering', 'EEE', '8.787', '10', '0')
(4869, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '153', '315', '4', '108', 'R V College of Engineering', 'Computer Science', '7.493', '100', '0')
(4870, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '640', '1440', 'None', '107', 'COEP', 'Computer Engineering', '8.45', '10', '0')
(4871, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '164', '155', '319', '3.5', '109', 'Pune University', 'Mechanical Engineering', '8.83', '10', '0')
(4872, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '164', '154', '318', '3.5', '112', 'Nagarjuna University', 'IT', '8.93', '100', '0')
(4873, 'Arizona State University', '6', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2013', '169', '157', '326', '4', '108', 'None', 'Mechanical', '8.46', '10', '0')
(4874, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '790', '800', '1590', '4.5', '290', 'Dharamsinh Desai University', 'Computer Engineering', '7.62', '100', '0')
(4875, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '600', '1400', '4.5', '111', 'VTU', 'Electronics and Communications', '7.5', '100', '0')
(4876, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '800', '480', '1280', '4', '283', 'Model Engineering College', 'Electronics and Comunication', '7.94', '100', '0')
(4877, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '167', '149', '316', 'None', 'None', 'Manipal Institue of Technology', 'CSE', '8.53', '10', '0')
(4878, 'Arizona State University', '6', 'Admit', 'MS', 'Instrumentation and Control', 'Fall ', '2011', '700', '540', '1240', '3', '109', 'CoE Trivandrum', 'Applied Electronics and Instrumentation', '7.97', '10', '0')
(4879, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '161', '153', '314', 'None', 'None', 'UPTU', 'Computer Science', '7.5', '100', '0')
(4880, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '790', '360', '1150', '3', '89', 'YCCE', 'electronics engineering', '6.4', '100', '0')
(4881, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '510', '1300', '4.5', '117', 'Model Engineering College', 'Electronics and Communication', '7.770999999999999', '100', '0')
(4882, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '170', '157', '327', '3', '101', 'NIT Jamshedpur', 'Electronics and Comm. Engg.', '8.55', '10', '0')
(4883, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '155', '317', '4', '110', 'Anna University', 'CS', '7.25', '10', '0')
(4884, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '150', '311', '3.5', '109', 'Jalpaiguri Government Engineering College', 'Electronics & Communication Engg', '8.14', '10', '0')
(4885, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '800', '570', '1370', '4', '283', 'VTU', 'Electronics and Communication Engineering', '8.3', '100', '0')
(4886, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '169', '151', '320', '3.5', '105', 'IIT', 'Mechanical', '8', '10', '0')
(4887, 'Arizona State University', '6', 'Admit', 'MS', 'Business Analytics', 'Fall ', '2015', '167', '147', '314', '4', '101', 'Shiv Nadar University', 'Mathematics', '8.5', '10', '0')
(4888, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '164', '146', '310', '3', '96', 'Anna University', 'E&I;', '7.82', '10', '0')
(4889, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '150', '312', '3', '96', 'Nirma Institute of Technology', 'Computer Science and Engineering', '7.88', '10', '0')
(4890, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '770', '450', '1220', 'None', 'None', 'COEP', 'production', '7', '10', '0')
(4891, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '770', '600', '1370', '4', '111', 'COEP', 'Information Techology', '7.74', '10', '0')
(4892, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall', 'None', '164', '149', '313', 'None', '109', 'GNITS', 'ETM', '8.937000000000001', '100', '0')
(4893, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '165', '168', '333', '3.5', '107', 'VTU', 'Electronics and Communication', '7.470000000000001', '100', '0')
(4894, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '770', '540', '1310', '3.5', '111', 'None', 'Electronics and comm. engg', '7.692', '100', '0')
(4895, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2012', '800', '450', '1250', '2.5', '106', 'JNTU', 'ECE', '7.609999999999999', '100', '0')
(4896, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '159', '149', '308', '3', '100', 'None', '0', '0', '0', '0')
(4897, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '161', '143', '304', '3', 'None', 'NIT Surat', 'Electronics', '8.64', '10', '0')
(4898, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2010', '780', '630', '1410', '3', '102', 'Acharya Nagarjuna University', 'EEE', '8', '100', '0')
(4899, 'Arizona State University', '6', 'Admit', 'MS', 'Biomedical Engineering', 'Spring ', '2014', '760', '650', '1410', '3', '105', 'VITU Vellore', 'Biotechnology', '8.25', '10', '0')
(4900, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '580', '1370', '4.5', '115', 'VTU', 'Computer Science', '7.1', '100', '0')
(4901, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '162', '152', '314', '3', '105', 'VIT University', 'SELECT', '0.834', '100', '0')
(4902, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '420', '1180', '3.5', '96', 'Ramrao Adik Institute of Technology', 'Electronics', '6.7', '100', '0')
(4903, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2011', '750', '550', '1300', '3', '98', 'Kurukshetra University', 'Electronics & Instrumentation', '7.1', '100', '0')
(4904, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '157', '143', '300', '3', '91', 'Nitte Meenakshi Institute of Technology (Autonomous) / VTU', 'Mechanical Engineering', '8.71', '10', '0')
(4905, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '790', '570', '1360', '5', '114', 'NIT Karnataka', 'Mechanical Engineering', '8.66', '10', '0')
(4906, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '700', '510', '1210', '3.5', '98', 'SRM', 'EIE', '7.7', '100', '0')
(4907, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '160', '151', '311', '4', 'None', 'Anna University', 'Information Technology', '8.2', '100', '0')
(4908, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2012', '750', '500', '1250', '2.5', '98', 'VIT University', 'I.T', '8.2', '10', '0')
(4909, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '730', '650', '1380', '4', '103', 'Sardar Patel College of Engineering', 'electronics and telecommunication', '7.904000000000001', '100', '0')
(4910, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '170', '149', '319', '3.5', '108', 'SRMSCET Bareilly (affiliated to Uttar Pradesh Technical University)', 'Computer Science and Engineering', '7.126', '100', '38')
(4911, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '166', '160', '326', '3.5', '111', 'VJTI', 'electronics', '8.4', '10', '0')
(4912, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '800', '520', '1320', '3', '105', 'SVIT', 'computers', '6.8', '100', '0')
(4913, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '167', '153', '320', '4', '110', 'B M S College of Engineering', 'Computer science', '7.7', '100', '0')
(4914, 'Arizona State University', '6', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2013', '167', '158', '325', '4', '118', 'Goa University', 'Mechanical Engineering', '6.9', '100', '0')
(4915, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Fall', 'None', '163', '147', '310', '3.5', '105', 'NIT Tirchy', 'Civil engineering', '8.6', '10', '0')
(4916, 'Arizona State University', '6', 'Admit', 'MS', 'CS', 'Fall ', '2013', '800', '650', '1450', '4', '111', 'K J Somaiya College of Engiineering', 'IT', '6.7', '100', '0')
(4917, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Spring ', '2016', '158', '151', '309', 'None', '105', 'GITAM', 'ECE', '8.84', '10', '0')
(4918, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics & Communication', 'Fall ', '2013', '790', '630', '1420', '3', '101', 'nitw', 'elcetronics', '8.6', '10', '0')
(4919, 'Arizona State University', '6', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(4920, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '166', '164', '330', '4', '119', 'MNM Jain Engineering College', 'CSE', '8.6', '10', '0')
(4921, 'Arizona State University', '6', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '740', '570', '1310', '4', '112', 'RMK Engineering College', 'computer science', '8.5', '100', '0')
(4922, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '164', '152', '316', '4', '110', 'Anna University', 'Information Technology', '8.252', '10', '0')
(4923, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '167', '153', '320', '3.5', '109', 'SSN College of Engineering', 'ECE', '8.3', '10', '0')
(4924, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '152', '316', '3', '106', 'JNTU', 'ECE', '7.8', '100', '0')
(4925, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '770', '650', '1420', '2.5', 'None', 'NIT Durgapur', 'Mechanical engineering', '8.28', '10', '0')
(4926, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '163', '159', '322', '4.5', '110', 'Vasavi College of Engineering', 'Information Technology', '8.9', '100', '16')
(4927, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '162', '156', '318', '3.5', '112', 'CEG', 'computer science', '7.3', '10', '0')
(4928, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '168', '159', '327', '3', '105', 'NIT Jamshedpur', 'Electronics & Communication Engineering', '8.68', '10', '48')
(4929, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '167', '152', '319', '4', '113', 'Manipal Institue of Technology', 'ECE', '8.87', '10', '0')
(4930, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '166', '148', '314', '3', '110', 'BIT Mesra', 'Computer Science and Engineering', '7.68', '10', '0')
(4931, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2011', '720', '520', '1240', '4', '106', "St Joseph's College of Engineering", 'EEE', '7.531000000000001', '100', '0')
(4932, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '163', '152', '315', '4', '98', 'Coimbatore Insitute of Technology', 'ECE', '8.78', '10', '26')
(4933, 'Arizona State University', '6', 'Admit', 'MS', 'Materials Science & Engineering', 'Fall ', '2014', '165', '161', '326', '4', '115', 'Visvesvaraya NIT Nagpur', 'Metallurgical and Materials Engineering', '8.34', '10', '0')
(4934, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '550', '1310', '3.5', '105', 'Amity University', 'CS', '7.9', '10', '0')
(4935, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(4936, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '530', '1330', '3.5', '103', 'CBIT', 'EEE', '8', '100', '0')
(4937, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '164', '145', '309', '3.5', '101', 'University of Mumbai', 'Mechanical Engineering', '6.55', '100', '0')
(4938, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '730', '530', '1260', '4', '112', 'None', 'Mechanical Engineering', '3.75', '4', '0')
(4939, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '800', '730', '1530', '5', '119', 'MU', 'Electronics and Telecommunication', '7.19', '100', '0')
(4940, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2007', '740', '520', '1260', '4', '263', 'MDU', 'MEchanical', '7.4', '100', '0')
(4941, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '146', '310', '3', '107', 'Sir MVIT', 'computer science', '7.8', '100', '0')
(4942, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '400', '1190', '3', '98', 'JSSATE / VTU', 'CS', '7.4', '100', '0')
(4943, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '510', '1270', '3', '104', 'VIT University', 'EIE', '8.57', '10', '0')
(4944, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '800', '590', '1390', '3.5', '110', 'Universiity College of Engineering Osmania University.', 'EEE', '7.5', '100', '0')
(4945, 'Arizona State University', '6', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(4946, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '760', '450', '1210', '3', '106', 'Dhirubhai Ambani Institute of Information & Communication Technology', 'ICT', '9.06', '10', '0')
(4947, 'Arizona State University', '6', 'Admit', 'MS', 'Computational Science', 'Fall ', '2014', '166', '150', '316', '3.5', '94', 'VIT', 'Computer Science', '7.88', '10', '0')
(4948, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '700', '650', '1350', '4.5', '105', 'VTU', 'CS', '7.8', '100', '0')
(4949, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '164', '151', '315', '3.5', 'None', 'None', 'CSE', '8.14', '100', '0')
(4950, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '143', '306', '3.5', '95', 'University of Mumbai', 'Information Technology', '6.6', '100', '0')
(4951, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '157', '319', '4', '116', 'Bangalore Institute of Technology', 'Computer Science', '8.2', '100', '21')
(4952, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '156', '320', '4', '114', 'Manipal Institue of Technology', 'Computer Science', '8.09', '10', '0')
(4953, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '480', '1280', '3', 'None', 'PESIT', 'E & C', '7.840000000000001', '100', '0')
(4954, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '146', '305', '3.5', '98', 'VTU', 'Computer Science', '7.4', '100', '0')
(4955, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2014', '780', '550', '1330', '3', '90', 'JNTU', 'eee', '0', '0', '0')
(4956, 'Arizona State University', '6', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '46', '25', '71', '5', '102', 'IIITM', 'IT', '8.17', '10', '120')
(4957, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '166', '144', '310', '2.5', '102', 'VTU', 'EnC', '7.45', '100', '0')
(4958, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '520', '1320', '3', '94', 'Thiagarajar College of engineering', 'Computer science', '7.86', '10', '0')
(4959, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '770', '550', '1320', '3.5', '94', 'Madhav Institute of Technology & Science Gwalior', 'Electrical Engineering', '7.343000000000001', '100', '0')
(4960, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '160', '152', '312', '3.5', '97', 'Sharif university of Technology', 'Industrial engineering', '3.92', '4', '0')
(4961, 'Arizona State University', '6', 'Admit', 'MS', 'Materials Science & Engineering', 'Fall ', '2015', '163', '153', '316', '4', '111', 'SRM', 'Mechanical', '8', '10', '0')
(4962, 'Arizona State University', '6', 'Admit', 'MS', 'software engineering', 'Fall ', '2014', '162', '150', '312', '4', '107', 'SSN College of Engineering', 'Information Technology', '7.8', '10', '0')
(4963, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '480', '1260', '3', '97', 'SRM', 'Electrical & Electronics Engineering', '8.35', '10', '0')
(4964, 'Arizona State University', '6', 'Admit', 'MS', 'CS', 'Fall ', '2013', '164', '153', '317', '4.5', '109', 'VTU', 'CS', '8.26', '100', '0')
(4965, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '740', '660', '1400', '3.5', '111', 'NED University Karachi', 'Electronic Engineering', '8.3', '100', '0')
(4966, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '149', '314', '3', '112', 'UPTU', 'CSE', '7.378', '100', '0')
(4967, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '150', '311', '4.5', '98', 'NIT Durgapur', 'Computer Science and Engineering', '7.52', '10', '0')
(4968, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '440', '1210', '4', '104', 'New Horizon College of Engineering', 'Computer Science and Engineering', '7.88', '100', '0')
(4969, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '660', '1460', '4.5', '115', 'IIT Delhi', 'Electrical (Power)', '6.78', '10', '0')
(4970, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '169', '148', '317', '3', '97', 'GITAM', 'cse', '8.22', '10', '0')
(4971, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '161', '149', '310', '3.5', '109', 'VIT University', 'mechanical- energy', '8.3', '10', '0')
(4972, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '164', '146', '310', '3', '110', 'BITS Goa', 'Mechanical', '6.7', '10', '0')
(4973, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '167', '149', '316', '3.5', '97', 'BIT Mesra', 'cse', '7.51', '10', '36')
(4974, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '640', '1420', '4', '116', 'NIT Tirchy', 'Instrumentation and control', '8.78', '10', '0')
(4975, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '560', '1330', '4.5', '117', 'Pondicherry Engineering College', 'CS', '7.7', '100', '0')
(4976, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '170', '157', '327', '4', '110', 'BITS Hyderabad', 'Mechanical Engineering', '8.31', '10', '12')
(4977, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '146', '309', '3', '104', 'JNTU', 'CSE', '7.918000000000001', '100', '0')
(4978, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '390', '1180', '3', '88', 'SSN College of Engineering', 'EEE', '8.4', '100', '0')
(4979, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '159', '318', '4', '115', 'JNTU', 'Computer Science and Enigneering', '7.743', '100', '0')
(4980, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '163', '147', '310', '3', '94', 'West Bengal University Of Technology', 'ECE', '9.18', '10', '0')
(4981, 'Arizona State University', '6', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2013', '161', '146', '307', '3', '99', 'K J Somaiya College of Engiineering', 'mechanical', '9.12', '10', '0')
(4982, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '160', '161', '321', '3', '112', 'University of Pune', 'Electronics and Telecommunications', '5.907', '100', '42')
(4983, 'Arizona State University', '6', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2013', '166', '148', '314', '2', '101', 'Maharaja Sayajirao University Of Baroda', 'Mech eng', '3.94', '4', '0')
(4984, 'Arizona State University', '6', 'Admit', 'MS', 'EE / CS', 'Fall ', '2013', '163', '160', '323', '4.5', '111', 'VIT', 'ECE', '8.48', '10', '0')
(4985, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '145', '307', '3', '106', 'Government Engineering College ajmer', 'Computer Engineering', '6.67', '100', '0')
(4986, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '800', '660', '1460', '3.5', '104', 'Anna University', 'mechanical', '7.5', '100', '0')
(4987, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '164', '148', '312', '3', '94', 'BITS Goa', 'Mechanical', '6.5', '10', '0')
(4988, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering / Electrical Computer Engineering', 'Fall ', '2015', '161', '147', '308', '3', '105', 'MU', 'Electronics and Telecommunication engineering', '7.2', '100', '0')
(4989, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '161', '154', '315', '3', '98', 'MU', 'IT', '6.3', '100', '17')
(4990, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '167', '154', '321', '4.5', '114', 'KIIT', 'Electronics and Electrical', '9.08', '10', '0')
(4991, 'Arizona State University', '6', 'Admit', 'MS', 'Civil and Environmental Engg', 'Fall ', '2015', '162', '154', '316', '3.5', '111', 'Kathmandu University', 'Civil', '3.42', '4', '7')
(4992, 'Arizona State University', '6', 'Admit', 'MS', 'analytics', 'Summer ', '2014', '165', '154', '319', '4', '109', 'Siddaganga Institue of Technology', 'Electronics and Communications Engineering', '8.82', '10', '0')
(4993, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Spring ', '2015', '161', '151', '312', '3.5', '102', 'Sardar Patel College of Engineering', 'Civil', '7.2', '100', '24')
(4994, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '161', '146', '307', '4', '100', 'University of Pune', 'IT', '7.556', '100', '0')
(4995, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '159', '148', '307', '3', '104', 'Jadavpur University', 'Electrical Engineering', '8.17', '10', '0')
(4996, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '161', '153', '314', '4', '102', 'Netaji Subhas Institute of Technology', 'Electrical Engineering', '8.02', '10', '0')
(4997, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '159', '158', '317', '3.5', '113', 'Sri Venkateswara College of Engineering', 'CSE', '7.99', '10', '0')
(4998, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '170', '151', '321', '4', '102', 'IIT Kharagpur', 'ECE', '8.64', '10', '0')
(4999, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '159', '147', '306', '3.5', '100', 'Model Engineering College', 'Computer science', '8', '100', '0')
(5000, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '156', '319', '3.5', '103', 'SGSITS', 'Electronics & Instrumentation', '8', '10', '0')
(5001, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Spring ', '2011', '450', '800', '1250', '3.5', '92', 'NUDT(China)', 'CS', '0', '0', '0')
(5002, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '154', '315', '3.5', '104', 'BVBCET', 'Information Science', '8.7', '10', '0')
(5003, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '168', '147', '315', '2.5', '90', 'BITS Pilani', 'Electronics and Instrumentation', '7.44', '10', '0')
(5004, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '166', '152', '318', '3.5', '100', 'M.V.S.R Engineering College', 'Electronics & Communication', '7.623', '100', '0')
(5005, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '157', '320', '3.5', 'None', "St Joseph's College of Engineering", 'Information Technology', '7.52', '10', '0')
(5006, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2015', '167', '148', '315', '3', '101', 'ISM Dhanbad', 'electronics and communication engineering', '8.2', '10', '0')
(5007, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '640', '1400', '3.5', '110', 'SASTRA', 'ECE', '8.54', '10', '0')
(5008, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2006', '790', '540', '1330', '5.5', '277', 'K J Somaiya College of Engiineering', 'Mechanical Engineering', '7.314', '100', '0')
(5009, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '170', '149', '319', '3.5', '96', 'Heritage Institute of Technology', 'Computer Science and Engineering', '8.8', '100', '54')
(5010, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '164', '153', '317', '3.5', '108', 'VIT', 'Electronics and instrumentation', '8.58', '10', '0')
(5011, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '730', '590', '1320', '3', '107', 'Manipal Institue of Technology', 'ECE', '7.47', '10', '0')
(5012, 'Arizona State University', '6', 'Admit', 'MS', 'software engineering', 'Fall ', '2013', '159', '150', '309', '3', '102', 'JNTU', 'Computer Science and Engineering', '6.748', '100', '0')
(5013, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '790', '620', '1410', 'None', '100', 'K J Somaiya College of Engiineering', 'Electronics and Telecommunication', '6.5', '100', '0')
(5014, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '400', '1180', '3.5', '103', 'MU', 'Electronics and telecommunication', '7.3', '100', '0')
(5015, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '760', '620', '1380', '3', '96', 'Panjab University', 'Computer Science', '8.067', '100', '0')
(5016, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '165', '161', '326', '3', '110', 'Jaypee Institute of Information Technology', 'IT', '6.2', '10', '0')
(5017, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '740', '360', '1100', '3.5', 'None', 'Madras Institute of Technology', 'production engineering', '8.6', '10', '0')
(5018, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '740', '620', '1360', '3', '99', 'Zakir husain college AMU', 'Electronics engg', '8.65', '10', '0')
(5019, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '168', '155', '323', '3.5', '110', 'IIT Allahabad', 'Computer Science', '8.9', '10', '0')
(5020, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '164', '157', '321', '3.5', '108', 'CEG', 'computer science', '8.82', '10', '36')
(5021, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '550', '1330', '4', '103', 'University of Kerala', 'Computer Science', '7.3', '10', '0')
(5022, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '740', '650', '1390', '3', '93', 'Sreenidhi Institute of Science & Technology', 'electronics and computers', '7.2', '100', '0')
(5023, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '470', '1260', '3', '96', 'MVSR', 'Information Technology', '7.8', '100', '0')
(5024, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '170', '152', '322', '3', 'None', 'BITS Pilani', 'E&I;', '7.58', '10', '24')
(5025, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '720', '500', '1220', '3.5', '105', 'VTU', 'Information Science', '8.2', '100', '0')
(5026, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '170', '154', '324', '3', '97', 'ISM Dhanbad', 'Electrical Enfineering', '7.67', '10', '0')
(5027, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '157', '323', '3.5', '98', 'Thapar University', 'Computer Science', '7.96', '10', '0')
(5028, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '155', '149', '304', '3.5', '106', 'JNTU', 'CS', '6.6', '100', '0')
(5029, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '800', '550', '1350', '3.5', '110', 'SASTRA', 'Electrical & Electronics Engineering', '9.00427', '10', '0')
(5030, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '570', '1370', '4', '110', 'The LNM Institute of Information Technology', 'Computer Science', '7.6', '10', '0')
(5031, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '168', '154', '322', '3', '105', 'MDU', 'ECE(Hons)', '7.1', '100', '45')
(5032, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '148', '313', 'None', '108', 'Amrita School of Engineering', 'cse', '0.959', '100', '0')
(5033, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '155', '148', '303', '3', '98', 'GITAM', 'Electrical and Electronics Engineering', '8.32', '10', '0')
(5034, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '790', '590', '1380', '4', '273', 'None', '0', '0', '0', '0')
(5035, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '153', '315', '4', '107', 'Inderprastha engineering college(Affiliated to Uttar Pradesh Technical university)', 'Computer Science and Engineering', '8.274', '100', '0')
(5036, 'Arizona State University', '6', 'Admit', 'MS', 'CS', 'Fall ', '2012', '790', '670', '1460', '4.5', '111', 'Manipal Institue of Technology', 'Electronics and Comm.', '8.48', '10', '0')
(5037, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '720', '760', '1480', '4.5', '293', 'VTU', 'Info Sc and Engg', '7.6', '100', '0')
(5038, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '163', '158', '321', 'None', '110', 'NIT Hamirpur', 'Electronics & Communication Engg.', '9', '10', '0')
(5039, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall', 'None', '730', '580', '1310', '3', 'None', 'NIT Warangal', 'ECE', '7.84', '10', '0')
(5040, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '148', '309', '3.5', '107', 'Banasthali University', 'Information Technology', '7.92', '100', '0')
(5041, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '170', '154', '324', '4.5', '110', 'VIT University', 'Electronics And Communication', '9.21', '10', '0')
(5042, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring', 'None', '167', '147', '314', '3', '94', 'NIT Rourkela', 'Computer Science', '9.6', '10', '26')
(5043, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '168', '152', '320', '4', '104', 'NIT Kurukshetra', 'Mechanical Engineering', '8.53', '10', '0')
(5044, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '630', '1430', '3', '111', 'NIT Surat', 'Electronics Engg.', '8.57', '10', '0')
(5045, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2007', '800', '630', '1430', '4', '283', 'Osmania University', 'Electronics and Communication', '8.292', '100', '0')
(5046, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '162', '154', '316', '4', '109', 'VTU', 'CS', '8.1', '100', '53')
(5047, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '168', '162', '330', '4', '114', 'Thapar University', 'Mechanical Engineering', '8.31', '10', '0')
(5048, 'Arizona State University', '6', 'Admit', 'MS', 'environmental engineering', '81', 'None', '159', '0', '159', '0', '107', 'Nagpur University', 'Civil Engg', '5.8', '100', '0')
(5049, 'Arizona State University', '6', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(5050, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '800', '660', '1460', '4', '114', 'PICT', 'Information Technology', '3.51', '4', '0')
(5051, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '164', '157', '321', '4.5', '109', 'Amrita Vishwa Vidhyapeetham', 'Information Technology', '8.8', '10', '24')
(5052, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '164', '157', '321', '4.5', '113', 'Dr. Babasaheb Ambedkar Technological University Lonere', 'Chemical Engineering', '8.49', '10', '0')
(5053, 'Arizona State University', '6', 'Admit', 'MS', 'Aerospace Engineering', 'Spring ', '2012', '760', '330', '1090', '3', '90', 'MSRIT', 'MECHANICAL', '0.942', '100', '0')
(5054, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '160', '146', '306', '3', '97', 'BMSCE', 'IEM', '8.77', '10', '0')
(5055, 'Arizona State University', '6', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2012', '710', '640', '1350', '3.5', '115', 'Anna University', 'biomedical engineering', '8.68', '10', '0')
(5056, 'Arizona State University', '6', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2014', '161', '153', '314', '3.5', '107', 'SRM', 'Biotechnology', '8.58', '10', '0')
(5057, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '151', '314', '4', '107', 'PESIT', 'CS', '7.69', '10', '0')
(5058, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '165', '152', '317', '4', '112', 'Vishwakarma Institute of Technology', 'Electronics', '8.72', '10', '0')
(5059, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '168', '159', '327', 'None', '109', 'Delhi College Of Engineeing', 'Mechanical Department', '6.87', '100', '10')
(5060, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '164', '166', '330', '4.5', 'None', 'VIT', 'ECE', '8.65', '10', '0')
(5061, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '790', '450', '1240', '3', '97', 'VITU', 'Mechanical', '8.5', '10', '0')
(5062, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '450', '1250', '4', '99', 'IIIT Hyderabad', 'ECE', '7.56', '10', '0')
(5063, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall', 'None', '164', '146', '310', '3', '97', 'VIT', 'ECE', '9.1', '10', '50')
(5064, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '161', '145', '306', '3.5', '105', 'Anna University', 'Mechanical Engineering', '8.33', '10', '0')
(5065, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Spring ', '2013', '158', '159', '317', '3', '111', 'VTU', 'Electronics and Communication', '8.017', '100', '0')
(5066, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '144', '308', '3', '101', 'G.H Patel colg of Engg. Sardar Patel University', 'Information Technology', '8.88', '10', '0')
(5067, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '141', '301', '4', '98', 'Jaya Engineering College', 'Computer Science and Engineering', '8', '100', '29')
(5068, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '166', '158', '324', '3', '102', 'KIIT', 'Electrical', '8.2', '10', '0')
(5069, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '800', '500', '1300', '4.5', '283', 'IP University Delhi', 'CSE', '8.161', '100', '0')
(5070, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '770', '570', '1340', '3', 'None', 'WBUT', 'applied electronics and instrumentation', '8', '10', '0')
(5071, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '167', '155', '322', '4', '112', 'PICT', 'IT', '3.8', '4', '0')
(5072, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '160', '149', '309', '3.5', '104', 'Chaitanya Bharathi Institute of Technology', 'Mechanical Production', '7.6', '100', '0')
(5073, 'Arizona State University', '6', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2012', '780', '650', '1430', '3.5', '106', 'SSN College of Engineering', 'BIomedical Engineering', '7.98', '10', '0')
(5074, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '600', '1390', '4', '110', 'Punjabi University', 'Computer Engineering', '7.837000000000001', '100', '0')
(5075, 'Arizona State University', '6', 'Admit', 'MS', 'Automotive Engineering', 'Fall ', '2015', '170', '158', '328', '4', '107', 'Sri Venkateswara College of Engineering', 'EEE', '8.4', '100', '46')
(5076, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '164', '147', '311', '3', '100', 'NIT Surathkal', 'Computer Science', '8.11', '10', '24')
(5077, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2006', '790', '610', '1400', '5', '263', 'Anna University', 'ECE', '74', '10', '0')
(5078, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '165', '157', '322', '4', '112', 'BVBCET', 'ECE', '8.1', '100', '0')
(5079, 'Arizona State University', '6', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2014', '164', '153', '317', '3.5', '106', 'GGSIPU', 'Computer Science', '7.6', '100', '0')
(5080, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '168', '154', '322', '4', '110', 'Nagpur University', 'Electrical engineering', '7.44', '100', '0')
(5081, 'Arizona State University', '6', 'Admit', 'MS', 'Materials Science & Engineering', 'Fall ', '2012', '800', '570', '1370', '3.5', '103', 'NIT Warangal', 'Metallurgical and Materials Engineering', '9.1', '10', '0')
(5082, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '780', '500', '1280', '3', '106', 'SASTRA', 'Electronics and Communication Engineering', '9.135', '10', '0')
(5083, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '158', '153', '311', '3.5', '106', 'BIT Mesra', 'Computer Science', '7.39', '10', '0')
(5084, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2010', '790', '580', '1370', '4', '111', 'Pondicherry Engineering College', 'Mechanical Engg', '8.1', '10', '0')
(5085, 'Arizona State University', '6', 'Admit', 'MS', 'Management Information System', 'Spring', 'None', '160', '139', '299', '3', 'None', 'Princeton College of Engg & Tech', 'Electronics and communications', '7.7170000000000005', '100', '0')
(5086, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '790', '440', '1230', '3', '93', 'SRKR Engineering College', 'CSE', '8.2', '100', '0')
(5087, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2011', '770', '530', '1300', '3.5', 'None', 'Madras Institute of Technology', 'ECE', '8.72', '10', '0')
(5088, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '800', '480', '1280', '3.5', '98', 'MVSR', 'I.T', '7.5', '100', '0')
(5089, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '159', '150', '309', '4', '107', 'VTU', 'Computer Science', '7.25', '100', '46')
(5090, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '160', '152', '312', '3.5', '93', 'Shri Govindram Seksaria institute of technolgy and sciences', 'Electricals', '8.038', '100', '0')
(5091, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '150', '314', '3.5', '97', 'NIT Calicut', 'Computer Science and Engineering', '8.25', '10', '36')
(5092, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '162', '149', '311', '4', '108', 'Velammal Engineering College', 'Mechanical', '8.5', '10', '0')
(5093, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '164', '153', '317', '3.5', '108', 'NIT Calicut', 'Mechanical Eng', '8.18', '10', '29')
(5094, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '163', '155', '318', '3.5', '111', 'Velammal Engineering College', 'EEE', '8.5', '10', '0')
(5095, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '450', '1250', '4', '107', 'JNTU', 'CSE', '7.034000000000001', '100', '0')
(5096, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '162', '161', '323', '3.5', '114', 'None', 'Mechanical Engineering', '7.8', '10', '0')
(5097, 'Arizona State University', '6', 'Admit', 'MS', 'Materials Science & Engineering', 'Fall ', '2015', '160', '151', '311', '3.5', '104', 'CEG', 'Materials Science & Engineering', '8.03', '10', '0')
(5098, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '163', '151', '314', '3', '100', 'MITCOE', 'Mechanical', '0', '0', '0')
(5099, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '570', '1370', '3.5', '113', 'CEG', 'Electrical and Electronics Engineering', '8.71', '10', '0')
(5100, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '149', '308', '4', '105', 'Amrita School of Engineering', 'Infomation Technology', '7.75', '10', '24')
(5101, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2010', '790', '550', '1340', '4', '100', 'PESIT', 'ECE', '6.945', '100', '0')
(5102, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '169', '154', '323', '4.5', '111', 'MU', 'Electronics and telecommunication', '8', '100', '0')
(5103, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2014', '163', '151', '314', '3', '100', 'JNTU', 'ece', '8', '10', '0')
(5104, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '760', '610', '1370', '3', '102', 'NIT Calicut', 'Mechanical Engineering', '7.1', '10', '0')
(5105, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '164', '148', '312', '3', '103', 'D J Sanghvi', 'Chemical Engineering', '7', '100', '0')
(5106, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '170', '156', '326', '4', 'None', 'BITS Pilani', 'Mechanical Engineering', '6.8', '10', '0')
(5107, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '165', '157', '322', '3', '108', 'Jadavpur University', 'Electrical Engineering', '7.45', '10', '12')
(5108, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '166', '158', '324', '4', '111', 'Manipal Institue of Technology', 'CSE', '9.56', '10', '0')
(5109, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '170', '159', '329', '4', '111', 'GGSIPU', 'Computer Science and Engineering', '7.651999999999999', '100', '0')
(5110, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '154', '160', '314', '3.5', '108', 'University of Pune', 'Computer Science', '7.026000000000001', '100', '25')
(5111, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '165', '157', '322', '4', '111', 'Cochin University of Science and Technology', 'Computer Science', '6.7', '100', '76')
(5112, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '169', '159', '328', '4.5', '102', 'BITS Pilani', 'Electrical and Electronics Engineering', '8.04', '10', '2')
(5113, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '170', '155', '325', '3.5', 'None', 'BESU Shibpur', 'Computer Science and Technology', '8.7', '100', '0')
(5114, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '165', '146', '311', '3.5', '99', 'SRM', 'Mechatronics', '9.2', '10', '0')
(5115, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '510', '1290', '3.5', '105', 'West Bengal University Of Technology', 'Electronics and communication', '8.55', '10', '0')
(5116, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '152', '315', '3.5', '108', 'NIT Kurukshetra', 'computer engineering', '8.8', '10', '18')
(5117, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '780', '490', '1270', '4', '100', 'SSN College of Engineering', 'Computer Science', '8.7', '100', '0')
(5118, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '167', '150', '317', '3.5', '97', 'GGSIPU', 'Information Technology', '7.634', '100', '0')
(5119, 'Arizona State University', '6', 'Admit', 'MS', 'Business Analytics', 'Fall ', '2014', '165', '152', '317', '3.5', '104', 'MSRIT', 'Electronics and Communication', '8.45', '10', '0')
(5120, 'Arizona State University', '6', 'Admit', 'MS', 'Biomedical Engineering', 'Spring ', '2015', '158', '147', '305', '3', '85', 'None', 'Biotechnology', '7.5', '100', '26')
(5121, 'Arizona State University', '6', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2011', '700', '500', '1200', '3.5', '110', 'Dr D Y Patil University', '0', '0', '0', '0')
(5122, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '560', '1360', '4', '111', 'MU', 'ECE', '7.3', '100', '0')
(5123, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2016', '158', '152', '310', '3', '102', 'Galgotia College of Engg & Technology (UPTU)', 'Electronics & Instrumentation', '7.090000000000001', '100', '0')
(5124, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '165', '155', '320', '3', '103', 'BITS Pilani', 'Information Systems', '7.19', '10', '0')
(5125, 'Arizona State University', '6', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '800', '350', '1150', '3.5', '93', 'MU', 'Electronics and Telecommuncation', '6.8', '100', '0')
(5126, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2013', '164', '154', '318', 'None', 'None', 'NIT Surat', 'Mechanical Engineering', '8.3', '10', '0')
(5127, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '770', '460', '1230', '3', '110', 'PESIT', 'Telecommunication', '6.790000000000001', '100', '0')
(5128, 'Arizona State University', '6', 'Admit', 'MS', 'Energy Technologies', 'Fall ', '2014', '164', '162', '326', '4.5', 'None', 'R V College of Engineering', 'Mechanical Engineering', '8.83', '10', '0')
(5129, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '690', '1490', '5', '114', 'VTU', 'Electronics and Communication', '9.85', '10', '0')
(5130, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '145', '307', '3.5', '100', 'CEG', 'Computer Science', '8.3', '10', '0')
(5131, 'Arizona State University', '6', 'Admit', 'MS', 'Integrated Manufacturing Systems Engineering', 'Fall ', '2013', '166', '152', '318', '3', '104', 'BITS Pilani', 'Mechanical Engineering', '6.87', '10', '0')
(5132, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '540', '1340', '3.5', '97', 'Pune University', 'electronics and telecommunication', '3.3', '4', '0')
(5133, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '160', '146', '306', '3', 'None', 'Anna University', 'Computer Science', '0', '0', '0')
(5134, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '165', '144', '309', '3', '104', 'JNTU', 'ECE', '7.970000000000001', '100', '0')
(5135, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '162', '147', '309', '3.5', '97', 'Vasavi College of Engineering', 'Computer Science', '9.1', '100', '0')
(5136, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '168', '151', '319', '3', '108', 'Sri Jayachamarajendra College of Engineering', 'Information Science', '7.840000000000001', '100', '0')
(5137, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '710', '490', '1200', '4', '109', 'Anna University', 'B.E Computer Science', '8.4', '100', '0')
(5138, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '158', '148', '306', '3.5', '102', 'Thakur College of Engineering and Technology', 'Computer Science', '6.529999999999999', '100', '0')
(5139, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '166', '149', '315', '3', 'None', 'CEG', 'Computer Science', '7.88', '10', '0')
(5140, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '152', '313', '3.5', '113', 'KL University', 'ECE', '8.32', '10', '0')
(5141, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '164', '151', '315', '3.5', '104', 'BITS Pilani', 'Electronics and Communication', '8.4', '10', '0')
(5142, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '147', '307', '3.5', '104', 'JNTU', 'CSE', '7.95', '100', '0')
(5143, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '720', '1520', '3.5', '112', 'Anil Neerukonda Institue of Technology and Sciences', 'EEE', '8.55', '10', '0')
(5144, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2015', '168', '149', '317', '3', '94', 'ANITS', 'Computer Science', '7.8', '100', '0')
(5145, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '158', '151', '309', '3', '7', 'CVRCE', 'ECE', '7.31', '100', '0')
(5146, 'Arizona State University', '6', 'Admit', 'MS', 'Materials Science & Engineering', 'Fall ', '2011', '740', '540', '1280', '4', '105', 'NIT Warangal', 'Metallurgical and Materials Engineering', '9.01', '10', '0')
(5147, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '163', '152', '315', '3.5', '110', 'Amrita School of Engineering', 'Electronics and Communication', '7.9', '10', '0')
(5148, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '750', '410', '1160', '3.5', '92', 'Madras Institute of Technology', 'IT', '7.8', '10', '0')
(5149, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '560', '1350', '3', '110', 'RNSIT', 'Information Science', '8.01', '100', '0')
(5150, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '520', '1300', '3.5', '103', 'Anna University', 'Electrical Engineering', '7.7700000000000005', '100', '0')
(5151, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '540', '1330', '4', '102', 'Anna University', 'Electronics and Communication', '8.1', '100', '0')
(5152, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '540', '1330', '4', '102', 'Anna University', 'Electronics and Commuinication', '8.1', '100', '0')
(5153, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2013', '155', '144', '299', '22', 'None', 'JNTU', 'electrical and electronics engineering', '3.6', '4', '0')
(5154, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '165', '155', '320', 'None', '107', 'VIT University', 'CS', '8.85', '10', '40')
(5155, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '163', '144', '307', '2.5', '102', 'GITAM', 'Mechanical Engineering', '8.4', '10', '0')
(5156, 'Arizona State University', '6', 'Admit', 'MS', 'Computer engineering VLSI CAD', 'Fall ', '2011', '780', '530', '1310', '3', '98', 'SJCE', 'Electronics and Communication', '8', '100', '0')
(5157, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '13', '168', '156', '324', 'None', '113', 'University of Pune', 'Electronics', '6.38', '100', '0')
(5158, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '170', '159', '329', '3.5', '110', 'NIT Nagpur', 'Electronics and Communication', '8.93', '10', '42')
(5159, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '149', '311', '3.5', '103', 'Anna University', 'Computer Science', '7.6', '100', '0')
(5160, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '700', '640', '1340', '3.5', '105', 'VTU', 'Information Science', '7.5', '100', '0')
(5161, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '650', '1450', '4', '112', 'MU', 'ELECTRONICS ENGINEERING', '7.601000000000001', '100', '0')
(5162, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '159', '323', '5', '119', 'MVJ College of Engineering', 'Computer Science', '7.5200000000000005', '100', '0')
(5163, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '165', '154', '319', '3', '101', 'NIT Calicut', 'Electronics and communication engineering', '7.07', '10', '0')
(5164, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '151', '315', '4', '105', 'VSS Univ of Technology', 'Computer Science', '8.05', '10', '0')
(5165, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '800', '650', '1450', '3.5', '102', 'Amrita School of Engineering', 'ECE', '8.86', '10', '0')
(5166, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '165', '154', '319', '3.5', '96', 'VTU', 'Electronics and Communication', '7.9', '100', '0')
(5167, 'Arizona State University', '6', 'Admit', 'MS', 'CS / MIS', 'Spring ', '2014', '160', '148', '308', 'None', '102', 'SSN College of Engineering', 'IT', '8.5', '100', '0')
(5168, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '800', '630', '1430', '3.5', '112', 'Osmania University', 'Electrical Engineering', '7.1', '100', '0')
(5169, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '750', '620', '1370', '3.5', '93', 'Pune University', 'Computer', '6.65', '100', '0')
(5170, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '157', '145', '302', 'None', '100', 'R V College of Engineering', 'cs', '7.09', '10', '0')
(5171, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2013', '159', '161', '320', '4', '117', 'IEM', 'CS', '8.43', '10', '0')
(5172, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '590', '1390', '3', '112', 'None', 'EE', '9.1', '10', '0')
(5173, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '750', '570', '1320', '3', '106', 'UA', 'Electronics And Communication', '7.57', '100', '0')
(5174, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '160', '150', '310', '3', '100', 'PICT', 'Computer Science', '3.2', '4', '0')
(5175, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '350', '1110', '4', '95', 'Bangalore Institute of Technology', 'Telecommunication', '8', '100', '0')
(5176, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '166', '152', '318', '3.5', '104', 'BITS Pilani', 'EEE', '0.8099999999999999', '100', '0')
(5177, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Networking', 'Fall ', '2013', '161', '156', '317', '4', '105', 'Kerala University', 'Information Technology', '3.98', '4', '0')
(5178, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '147', '312', '3', 'None', 'CBIT', 'CSE', '8.4', '100', '0')
(5179, 'Arizona State University', '6', 'Admit', 'MS', 'Management Information System', 'Fall ', '2015', '163', '161', '324', '4.5', '112', "St Joseph's College of Engineering", 'Information Technology', '8.2', '10', '23')
(5180, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', 'None', 'None', '0', 'None', 'None', 'National Institute of Science and Technology Orissa', 'CSE', '8.25', '10', '0')
(5181, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '163', '157', '320', '4.5', '115', 'NIT-Durgapur', 'Mechanical Engg.', '8.32', '10', '0')
(5182, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2016', '164', '152', '316', '3.5', 'None', 'VSS Univ of Technology', 'Electronics and Telecomm.', '9.26', '10', '0')
(5183, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2016', '155', '148', '303', '3', '95', 'Anna University', 'ECE', '8.71', '10', '31')
(5184, 'Arizona State University', '6', 'Admit', 'MS', 'Supply chain management', 'Fall ', '2015', '161', '155', '316', '3.5', 'None', 'Vidyalankar Institute of Technology', 'Electronics', '6.221', '100', '0')
(5185, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '650', '1450', '4', '112', 'SSN College of Engineering', 'Electronics and Communication', '9', '10', '0')
(5186, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '740', '690', '1430', '3.5', '111', 'PSG College of Technology', 'EEE (SW)', '8.3', '10', '0')
(5187, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '167', '155', '322', '3', '102', 'NIT Calicut', 'Computer Science and Engineering', '7.46', '10', '26')
(5188, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2010', '800', '550', '1350', '4', '98', 'PSG College of Technology', 'Electronics and Communications', '8.89', '10', '0')
(5189, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '145', '304', '4', '105', 'Lakshmi Narain College of Technology', 'Information Technology', '7.779999999999999', '100', '0')
(5190, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '480', '1280', '3', '107', 'WBUT', 'IT', '7.85', '10', '0')
(5191, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '800', '740', '1540', '4.5', '293', 'D J Sanghvi', 'Computer Engg.', '7.2909999999999995', '100', '0')
(5192, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '168', '164', '332', '4', 'None', 'NIE', 'Mechanical Engineering', '8.99', '10', '0')
(5193, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '157', '318', '5', '114', 'Anna University', 'CSE', '8.15', '10', '0')
(5194, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '162', '154', '316', '3.5', '115', 'M.V.S.R Engineering College', 'ECE', '8.2', '100', '0')
(5195, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '162', '157', '319', '4', 'None', 'Delhi University', 'ECE', '6.6', '100', '0')
(5196, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2008', '800', '590', '1390', '3.5', '106', 'W.B.U.T.', 'I.T.', '7.85', '10', '0')
(5197, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '510', '1300', '3', '107', 'Sri Jayachamarajendra College of Engineering', 'ec&e;', '9.32', '10', '0')
(5198, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '165', '145', '310', '3.5', '96', 'BITS Hyderabad', 'Electrical Engineering', '9.12', '10', '0')
(5199, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '159', '149', '308', '4.5', '111', 'VTU', 'Mechanical', '7.2', '100', '0')
(5200, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '550', '1350', '4', '107', 'DA-IICT', 'ICT (Information and Communication Technology)', '7.09', '10', '0')
(5201, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '520', '1320', '3.5', '111', 'VTU', 'E&C;', '7.7', '10', '0')
(5202, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2011', '800', '460', '1260', '3.5', '104', 'PSG College of Technology', 'Electrical and Electronics', '8.76', '10', '0')
(5203, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '800', '630', '1430', '4.5', '297', 'GITAM', 'Electronics & Communication', '9.023', '100', '0')
(5204, 'Arizona State University', '6', 'Admit', 'MS', 'Materials Science & Engineering', 'Fall ', '2015', '157', '151', '308', '3.5', '108', 'VTU', 'Mechanical', '7', '100', '18')
(5205, 'Arizona State University', '6', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2009', '740', '510', '1250', '3.5', '108', 'Amity University', 'Bioinformatics', '7.88', '10', '0')
(5206, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '164', '149', '313', '3', '104', 'None', 'Electronics and Telecommunication', '0.8039999999999999', '100', '0')
(5207, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '158', '322', '3', '100', 'CUSAT', 'Computer Science And Engineering', '7.42', '100', '0')
(5208, 'Arizona State University', '6', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(5209, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '770', '640', '1410', '3', '106', 'SJCE', 'EEE', '9.03', '10', '0')
(5210, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '168', '151', '319', '3.5', '113', 'MU', 'Computer Engineering', '7.13', '100', '0')
(5211, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '162', '159', '321', '3.5', '102', 'Maamallan', 'ece', '8.66', '10', '0')
(5212, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '530', '1290', '3.5', '108', 'University of Pune', 'Computer', '6.9', '100', '0')
(5213, 'Arizona State University', '6', 'Admit', 'MS', 'Instrumentation and Control', 'Fall ', '2012', '790', '390', '1180', '3', '102', 'Anna University', 'Instrumentation and Control', '7.7', '100', '0')
(5214, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall', 'None', '760', '450', '1210', '3', '92', 'BITS Dubai', 'Electronics and Communication Engg', '6.91', '10', '0')
(5215, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '147', '168', '315', '3.5', '103', 'GNDU', 'CSE', '7.4', '100', '7')
(5216, 'Arizona State University', '6', 'Admit', 'MS', 'Chemical Engineering', 'Fall ', '2015', '170', '162', '332', '3.5', '110', 'NIT Calicut', 'Chemical engineering', '6.63', '10', '0')
(5217, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '156', '317', '4', '99', 'JNTU', 'CSE', '6.8', '100', '0')
(5218, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical & Computer Engg/MIS/Industrial/Systems Engg', 'Fall ', '2013', '161', '156', '317', '4.5', '113', 'University of Mumbai', 'Electronics', '7.3', '100', '0')
(5219, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '162', '156', '318', '4', '111', 'Manipal Institue of Technology', 'Mechanical and Manufacturing Engineering', '7.7', '10', '0')
(5220, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '158', '317', '4.5', '109', 'MVSR', 'Electronics and Communication', '7.5', '100', '0')
(5221, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '800', '600', '1400', '4.5', '280', 'IIIT Hyderabad', 'CSE', '7.2', '10', '0')
(5222, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '630', '1430', '3.5', '94', 'BITS Goa', 'Electronics and Instrumentation', '6.12', '10', '0')
(5223, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '161', '142', '303', '3', '102', 'Amrita Vishwa Vidhyapeetham', 'Electronics and Communication', '8.6', '10', '0')
(5224, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '800', '700', '1500', '4', '113', 'University of Pune', 'Information Technology', '6.2', '100', '0')
(5225, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2016', '154', '141', '295', '3', '81', 'SASTRA', 'Information Technology', '8', '10', '65')
(5226, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '164', '157', '321', '4', '111', 'SSN College of Engineering', 'ECE', '8.705', '10', '0')
(5227, 'Arizona State University', '6', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '151', '138', '289', '4', '100', 'Pune University', 'Electronics', '0.6', '100', '0')
(5228, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '640', '1440', '4.5', '112', 'NIT Durgapur', 'CSE', '8.5', '100', '0')
(5229, 'Arizona State University', '6', 'Admit', 'MS', 'Construction Management', 'Fall ', '2012', '800', '650', '1450', '4', 'None', 'BITS Pilani', 'civil', '6.54', '10', '0')
(5230, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '159', '144', '303', '3.5', '99', 'GITAM', 'Computer Science and Engineering', '8.85', '10', '0')
(5231, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '680', '1460', '4', '112', 'Uttarakhand Technical University', 'Information Technology', '8.11', '100', '0')
(5232, 'Arizona State University', '6', 'Admit', 'MS', 'Chemical Engineering', 'Fall ', '2012', '750', '470', '1220', '3.5', 'None', 'MU', 'Chemical', '7.4', '100', '0')
(5233, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '165', '152', '317', '3', '110', 'JNTU', 'ECE', '8.15', '100', '0')
(5234, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '167', '156', '323', '4', '112', 'Osmania University', 'Mechanical Engineering', '8.84', '100', '0')
(5235, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '460', '1260', '3.5', '99', 'Fr. Conceicao Rodrigues College of Engineering', 'Computer Science', '6.573', '100', '0')
(5236, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '680', '1480', '5', '114', 'MU', 'Como Sc', '7.1', '100', '0')
(5237, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring', 'None', '165', '152', '317', '3.5', '108', 'PESIT', 'Computer Science', '8.8', '10', '36')
(5238, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '166', '162', '328', '4', '111', 'Osmania University', 'ECE', '8', '100', '0')
(5239, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '168', '157', '325', '4', '112', 'NIT Tirchy', 'Instrumentation and Control Engineering', '9.1', '10', '0')
(5240, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '800', '380', '1180', '3', '101', 'NIT Durgapur', 'ECE', '8.84', '10', '0')
(5241, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '620', '570', '1190', '4', '57', 'SSN College of Engineering', 'CSE', '8.3', '100', '0')
(5242, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '760', '480', '1240', '3.5', '102', 'JNTU', 'Computer Science and Engineering', '7.3950000000000005', '100', '0')
(5243, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering/Comp Science', 'Fall ', '2014', '162', '157', '319', '3.5', '112', 'Sardar Patel College of Engineering', 'Electronics', '6.3', '100', '20')
(5244, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '156', '323', '4', '110', 'VIT', 'Electrical and Electronics', '8.51', '10', '0')
(5245, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '630', '1420', '3.5', '104', 'VTU', 'Computer Science and Electronics', '8.47', '10', '0')
(5246, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '730', '430', '1160', '3', '92', 'rmdec/anna univ', 'ece', '7.5', '100', '0')
(5247, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '163', '148', '311', '3', 'None', 'University of Delhi', 'Computer Sc', '6.7', '100', '28')
(5248, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '163', '150', '313', '4', '109', 'None', '0', '0', '0', '0')
(5249, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '156', '149', '305', '3', '106', 'Miami University', 'Computer Science', '3.34', '4', '0')
(5250, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '670', '1470', '3.5', '100', 'Jaypee Institute of Information Technology', 'Electronics and Communication', '7.5', '10', '0')
(5251, 'Arizona State University', '6', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(5252, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '151', '319', '3.5', '108', 'Netaji Subhas Institute of Technology', 'Computers Engineering', '6.720000000000001', '100', '21')
(5253, 'Arizona State University', '6', 'Admit', 'MS', 'Chemical Engineering', 'Fall ', '2013', '169', '157', '326', '3.5', 'None', 'M.N.I.T. JAIPUR', 'CHEMICAL ENGINEERING', '8.65', '10', '0')
(5254, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2012', '780', '670', '1450', '4.5', '102', 'Ramdeobaba Engg. College Nagpur University', 'Electronics Engineering', '7.116', '100', '0')
(5255, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '168', '146', '314', '3', '108', 'Delhi University', 'ICE', '7.083', '100', '54')
(5256, 'Arizona State University', '6', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '770', '480', '1250', '4', '109', 'Thapar University', 'Electronics & Instrumentation', '8.31', '10', '0')
(5257, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '460', '1260', '4', '103', 'NIT Surat', 'Computer Engineering', '8.11', '10', '0')
(5258, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2016', '155', '150', '305', '3', '99', 'Anna University', 'EEE', '7.91', '10', '0')
(5259, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '160', '139', '299', '3', '92', 'VIT University', 'Mechanical Engineering', '7.96', '10', '0')
(5260, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '168', '149', '317', '3', '104', 'PICT', 'Computer Engg', '3.6', '4', '0')
(5261, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '520', '1320', '3.5', '100', 'Pune University', 'I.T.', '6.709999999999999', '100', '0')
(5262, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '460', '1260', '3', '90', 'Vasavi College of Engineering', 'CSE', '7.9', '100', '0')
(5263, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '141', '307', '3', '65', 'SNIST', 'Computer Science', '7.5', '10', '0')
(5264, 'Arizona State University', '6', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2012', '780', '640', '1420', '4', '110', 'Sri Sairam Engineering College', 'ECE', '7.9441', '10', '0')
(5265, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '167', '146', '313', '4', '98', 'MU', 'Mechanical', '6.5', '100', '0')
(5266, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '152', '311', '3.5', '108', 'Dayananda Sagar College of Engineering', 'Computer science', '7.44', '100', '0')
(5267, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2014', '162', '150', '312', '3', '94', 'Pondicherry University', 'Electronics and Communication Engineering', '7.91', '10', '0')
(5268, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '150', '312', '3.5', '102', 'NIT Calicut', 'CSE', '7.74', '10', '0')
(5269, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '169', '161', '330', '4.5', '117', 'None', 'Computer Science & Engineering', '8.92', '10', '0')
(5270, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '152', '316', '4.5', '112', 'MU', 'Information Technology', '7.5', '100', '0')
(5271, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '156', '143', '299', '3', '96', 'Gujarat Technological University', 'Mechancial Engineering', '6.7', '100', '0')
(5272, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '580', '1370', '5.5', '115', 'VTU', 'Computer Science & Engineering', '7.8', '100', '0')
(5273, 'Arizona State University', '6', 'Admit', 'MS', 'Materials Science & Engineering', 'Fall ', '2013', '165', '155', '320', '4.5', '116', 'Jadavpur University', 'Metallurgical and Material Engineering', '8.85', '10', '0')
(5274, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2013', '164', '160', '324', '4', '108', 'NITK Surathkal', 'civil', '7.1', '10', '0')
(5275, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '154', '317', '3.5', '104', 'College Of Engineering Roorkee', 'Computer Science', '7.35', '100', '0')
(5276, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '148', '309', '4', '96', 'CEG', '0', '0.907', '100', '0')
(5277, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '155', '315', '4', 'None', 'Amrita Vishwa Vidhyapeetham', 'Information Technology', '6.8', '10', '60')
(5278, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '152', '316', '4', '108', 'Gujarat Technological University', 'Computer', '8.78', '10', '0')
(5279, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '770', '650', '1420', '4.5', '117', 'NIT Durgapur', 'Electrical Engineering', '8.74', '10', '0')
(5280, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '750', '390', '1140', '3', '106', 'Osmania University', 'ECE', '7.5', '100', '0')
(5281, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '158', '147', '305', '4', '105', 'WBUT', 'CSE', '8.36', '10', '0')
(5282, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '164', '156', '320', '4', '108', 'VTU', 'Telecommunication Engg', '7', '100', '0')
(5283, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '148', '308', '3', '110', 'SRM', 'CSE', '8.3', '100', '0')
(5284, 'Arizona State University', '6', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2014', '164', '148', '312', '4', '108', 'BITS Hyderabad', 'Electrical Engineering', '7.71', '10', '0')
(5285, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '165', '160', '325', '5', '118', 'NITK Surathkal', 'ECE', '8.1', '10', '0')
(5286, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '166', '155', '321', '4', '108', 'CEG', 'Mechanical', '8.11', '10', '0')
(5287, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '164', '150', '314', '3', '98', 'Graphic Era University', 'Computer Science and Engineering', '7.531000000000001', '100', '24')
(5288, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '620', '1420', '4.5', '105', 'BITS Pilani', 'Physics/EEE (Dual Degree)', '9.67', '10', '0')
(5289, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '510', '1300', '3', '105', 'Anna University', 'Computer Science', '9.3', '10', '0')
(5290, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '169', '161', '330', '3.5', '111', 'PSG College of Technology', 'Electronics and communication', '8.66', '10', '0')
(5291, 'Arizona State University', '6', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2011', '730', '510', '1240', '3.5', '106', 'Anna University', 'cse', '8.67', '10', '0')
(5292, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '162', '323', '4.5', '111', 'Manipal Institue of Technology', 'Information Technology', '7.59', '10', '0')
(5293, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '13', '166', '154', '320', '2.5', '108', 'BITS Goa', 'EEE', '7.66', '10', '0')
(5294, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '760', '460', '1220', 'None', '103', 'VTU', 'Electronics and Communication', '7.9', '100', '0')
(5295, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '170', '157', '327', '4', 'None', 'NIT Rourkela', 'Electronics and Communication', '8.51', '10', '0')
(5296, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '460', '1250', '3.5', '110', 'Pune University', 'electronics enineering', '5.8', '100', '0')
(5297, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '790', '650', '1440', '4', '114', 'Pune University', 'Computer Science', '7.3', '100', '0')
(5298, 'Arizona State University', '6', 'Admit', 'MS', 'software engineering', 'Fall ', '2015', 'None', 'None', '0', 'None', '105', 'None', '0', '0', '0', '60')
(5299, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '730', '590', '1320', '4', '273', 'K J Somaiya College of Engiineering', 'CE', '6.6', '100', '0')
(5300, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '159', '326', '4.5', '117', 'Delhi College Of Engineeing', 'Electrical & Electronics', '8.125', '100', '12')
(5301, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '170', '160', '330', '4', '112', 'Dr MGR College', 'Computer Science', '8.4', '10', '0')
(5302, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '170', '157', '327', '4', '108', 'MU', 'Electronics and Telecommunication', '5.970000000000001', '100', '0')
(5303, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering / Electrical Computer Engineering', 'Fall ', '2014', '161', '150', '311', '3.5', '96', 'K J Somaiya College of Engiineering', 'Electronics Engineering', '7.420999999999999', '100', '24')
(5304, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '169', '148', '317', '3.5', '109', 'Dharamsinh Desai University', 'Information Technology', '8.31', '10', '11')
(5305, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '620', '1400', '4', '96', 'SASTRA', 'ECE', '8.565', '10', '0')
(5306, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '150', '310', '3', '104', 'Dr.BAMU Aurangabad/MIT Aurangabad', 'Computer Science and Engineering', '6.398', '100', '0')
(5307, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '148', '311', 'None', 'None', 'Manipal Institue of Technology', 'Computer Science and Engineering', '7.72', '10', '0')
(5308, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '147', '311', '3', '98', 'DSCE', 'CS', '7.194', '100', '0')
(5309, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '168', '159', '327', '4', '115', 'NITK Surathkal', 'Mechanical Engg', '7.6', '10', '18')
(5310, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '780', '360', '1140', '3.5', '102', 'Nagarjuna University', 'Information science and technology', '8.3', '100', '0')
(5311, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '570', '1350', '3.5', '111', 'VTU', 'Information Science', '7.3', '100', '0')
(5312, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '162', '154', '316', '3.5', '110', 'MU', 'Mechanical', '7.3', '100', '0')
(5313, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '580', '1370', '4', '118', 'VTU', 'CSE', '8.1', '100', '0')
(5314, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '700', '1500', '4.5', '113', 'PESIT', 'ECE', '8.015', '100', '0')
(5315, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '560', '1330', '3', '102', 'MU', 'Computer', '7.040000000000001', '100', '0')
(5316, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '148', '313', '3', '108', 'Amrita School of Engineering', 'Computer Science', '7.4', '10', '0')
(5317, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '700', '1490', '4', '116', 'R V College of Engineering', 'electrical', '8.011', '100', '0')
(5318, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '164', '151', '315', '3.5', '108', 'Anna University', 'B.Tech I.T', '8', '10', '0')
(5319, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and computer science', 'Fall ', '2007', '760', '550', '1310', '4', '277', 'PTU', 'Electrical Engineering', '7.645999999999999', '100', '0')
(5320, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '790', '560', '1350', '4', '107', 'SASTRA', 'Mechanical', '9.3', '10', '0')
(5321, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '148', '316', '4', '101', 'University College of Engineering Jawaharlal Nehru Technological University', 'Computer Science', '7.92', '100', '0')
(5322, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '550', '1340', '3', 'None', 'JNTU', 'Computer Science', '7.709999999999999', '100', '0')
(5323, 'Arizona State University', '6', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '790', '690', '1480', '4', '112', 'MU', 'Computer', '6.45', '100', '0')
(5324, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2012', '800', '700', '1500', '4', '115', 'NIT Warangal', 'civil engg', '7.89', '10', '0')
(5325, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '163', '149', '312', '3.5', '95', 'VIIT', 'ENTC', '0.4', '100', '0')
(5326, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '750', '380', '1130', '2.5', '85', 'SVCE', 'EEE', '7.6', '100', '0')
(5327, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2014', '162', '151', '313', 'None', 'None', 'Malaviya NIT Jaipur', 'Civil Engineering', '7.03', '10', '0')
(5328, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '570', '1370', '3.5', '104', 'JNTU', 'ECE', '8.4', '100', '0')
(5329, 'Arizona State University', '6', 'Admit', 'MS', 'electronics', 'Fall ', '2012', '800', '680', '1480', '4', '101', 'University of Mumbai', 'Electronics', '8.044', '100', '0')
(5330, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '169', '159', '328', '4', '115', 'Veermata Jijabai Technological Institute', 'Mechanical Engineering', '7.5', '10', '0')
(5331, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '480', '1260', '3', '100', 'BVBCET', 'Information Science', '8.29', '10', '0')
(5332, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '167', '155', '322', '4', '111', 'UPTU', 'Computer Science & Engineering', '6.851999999999999', '100', '0')
(5333, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '166', '164', '330', '4', '108', 'VJTI', 'Computer Engineering', '7.5', '10', '0')
(5334, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '150', '311', '3.5', '99', 'Amrita School of Engineering', 'Computer Science and Engineering', '8.4', '10', '0')
(5335, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '790', '530', '1320', '3.5', '117', 'DR.AIT', 'ECE', '7.6', '100', '0')
(5336, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '770', '650', '1420', '5', '287', 'SASTRA', 'Information Technology', '9.2', '10', '0')
(5337, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '155', '320', '3', '88', 'PICT', 'Information Technology', '3.77', '4', '0')
(5338, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '157', '319', '3.5', '106', 'RGMCET', 'COMPUTER SCIENCE', '6.9', '100', '0')
(5339, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '151', '311', '3.5', '102', 'NIT Bhopal', 'Computer Science', '7.99', '10', '0')
(5340, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2014', '170', '144', '314', '3', '99', 'Andhra University', 'Civil Engineering', '8.24', '10', '0')
(5341, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2015', '165', '150', '315', '3', '105', 'VIT University', 'ECE', '7.92', '10', '3')
(5342, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '450', '1250', '4', '92', 'Chaitanya Bharathi Institute of Technology', 'ECE', '7.4', '100', '0')
(5343, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '155', '319', '4.5', '108', 'Anna University', 'CSE', '9.26', '10', '10')
(5344, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '740', '390', '1130', '3.5', '98', "st.thomas' college of engg and technology", 'information technology', '8.52', '10', '0')
(5345, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '720', '570', '1290', '3', '94', 'Anna University', 'cse', '0.75', '100', '0')
(5346, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '720', '540', '1260', '4', '105', 'VTU', 'EE', '7.9', '100', '0')
(5347, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '780', '530', '1310', '3', '94', 'College Of Engineering Roorkee', 'CS', '7.2', '100', '0')
(5348, 'Arizona State University', '6', 'Admit', 'MS', 'Materials Science & Engineering', 'Fall ', '2011', '800', '610', '1410', '4.5', '108', 'VNIT Nagpur', 'Metallurgy and Material Science Engg', '7.72', '10', '0')
(5349, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '167', '154', '321', '4', '114', 'SJCE', 'CS&E;', '8.69', '10', '0')
(5350, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '750', 'None', '750', '3', '100', 'VTU', 'EEE', '8.440999999999999', '100', '0')
(5351, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '145', '163', '308', '3', 'None', 'BITS Pilani', 'Mechanical Engieering', '7.39', '10', '0')
(5352, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2014', '170', '154', '324', '3', '103', 'NIT Kurukshetra', 'Civil Engineering', '7.8', '10', '0')
(5353, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Spring ', '2016', '160', '157', '317', '3.5', '115', 'SRM', 'Mechanical Engineering', '8.744', '10', '0')
(5354, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '160', '150', '310', '3', '103', 'BITS Pilani', 'EEE', '9.24', '10', '0')
(5355, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '170', '152', '322', '4.5', '116', 'BITS Pilani', 'Computer Science', '8.45', '10', '0')
(5356, 'Arizona State University', '6', 'Admit', 'MS', 'environmental engineering', 'Fall ', '2015', '161', '158', '319', '4', '116', 'University of Mumbai', 'Chemical Engineering', '6.4', '100', '10')
(5357, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '154', '316', '3', '109', 'Sri Venkateswara College of Engineering', 'Computer Science Engineering', '7.7', '10', '0')
(5358, 'Arizona State University', '6', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2007', '720', '510', '1230', '4', '267', 'VIT', 'Biotechnology', '8.56', '10', '0')
(5359, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '680', '560', '1240', '3.5', '108', 'Anna University', 'Electrical & Electronics', '8', '100', '0')
(5360, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering/Comp Science', 'Fall ', '2014', '163', '157', '320', '4', '108', 'Pondicherry Engineering College', 'EEE', '7.7', '10', '42')
(5361, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '770', '530', '1300', '4', '108', 'Anna University', 'ECE', '7.874', '100', '0')
(5362, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '160', '150', '310', '3.5', 'None', 'Velammal Engineering College', 'EEE', '8.62', '10', '0')
(5363, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '166', '139', '305', '2.5', 'None', 'GITAM', 'ECE', '8.52', '10', '0')
(5364, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '500', '1270', '3.5', '95', 'Anna University', 'cse', '8.4', '100', '0')
(5365, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '740', '650', '1390', '3', '106', 'VTU', 'Computer Science', '7.540000000000001', '100', '0')
(5366, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '158', '150', '308', '3', '97', 'Sri Sairam Engineering College', 'EEE', '8.2', '100', '0')
(5367, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '165', '157', '322', '4.5', '110', 'None', '0', '0', '0', '0')
(5368, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '720', '490', '1210', '3.5', '105', 'BMSCE', 'ECE', '7.9', '100', '0')
(5369, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '750', '350', '1100', '3.5', 'None', 'Panjab University', 'UIET', '7.5', '100', '0')
(5370, 'Arizona State University', '6', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(5371, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '166', '157', '323', '4', '114', 'PSG College of Technology', 'Electronics and Communication Engineering', '9.7', '10', '0')
(5372, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '152', '315', '3', '114', 'SSN College of Engineering', 'Computer Science Engg', '7.3', '100', '0')
(5373, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2014', '790', '510', '1300', '3.5', '101', 'SRM', 'Mechanical', '9.19', '10', '0')
(5374, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '163', '148', '311', 'None', '106', 'Mody Institute of Technology and Science', 'Computer Science', '9.76', '10', '58')
(5375, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '159', '156', '315', '3', '100', 'CEG', 'Industrial Engineering', '7.97', '10', '0')
(5376, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall', 'None', '163', '156', '319', '4', '109', 'MU', 'Electronics and telecommunication', '7.65', '100', '0')
(5377, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '167', '153', '320', '4.5', '106', 'Amrita School of Engineering', 'ECE', '9.27', '10', '0')
(5378, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '159', '154', '313', '3', '109', 'CEG', 'Computer Science and Engineering', '9.18', '10', '0')
(5379, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '350', '1140', '3', '97', 'Coimbatore Insitute of Technology', 'MSc Software Engineering', '7.1', '100', '0')
(5380, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '78', '470', '548', '4', '108', 'SSN College of Engineering', 'ELECTRONICS AND COMMUNICATIONSW', '8', '100', '0')
(5381, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '150', '312', '3.5', '98', 'K J Somaiya College of Engiineering', 'Information Technology', '6.56', '100', '0')
(5382, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '710', '530', '1240', '3', '104', 'VTU', 'Computer Science', '7.2', '100', '0')
(5383, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '144', '306', '4', '108', 'PSG College of Technology', 'EEE', '9.49', '10', '0')
(5384, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '162', '149', '311', '3', '86', 'VIT University', 'Mechanical engg', '7.82', '10', '0')
(5385, 'Arizona State University', '6', 'Admit', 'MS', 'analytics', 'Fall ', '2014', '162', '151', '313', '3.5', '100', 'Anna University', 'Cse', '7.5', '10', '0')
(5386, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '800', '600', '1400', '4', '108', 'VIT', 'ECE', '9.16', '10', '0')
(5387, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '760', '590', '1350', '3', '117', 'RMD Engineering College', 'Electronics and Communication', '8.7', '10', '0')
(5388, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '750', '400', '1150', '3', '92', 'Coimbatore Insitute of Technology', 'Electronics and communication Engg', '8.7', '10', '0')
(5389, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '169', '149', '318', '3', '104', 'GGSIPU', 'Computer Science', '7.3', '100', '57')
(5390, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'Anna University', 'Mechanical', '7.5', '10', '0')
(5391, 'Arizona State University', '6', 'Admit', 'MS', 'EE / CS', 'Fall ', '2015', '163', '160', '323', '4', '111', 'BITS Pilani', 'Electrical and Electronics', '7.99', '10', '54')
(5392, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '165', '156', '321', '3.5', '108', 'BMSCE', 'Computer Science', '9.26', '10', '0')
(5393, 'Arizona State University', '6', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2015', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(5394, 'Arizona State University', '6', 'Admit', 'MS', 'Metallurgy and Materials Engineering', 'Spring ', '2014', '161', '144', '305', '3', '97', 'NIT RAIPUR', 'METALLURGY', '8.1', '10', '0')
(5395, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '166', '143', '309', 'None', '91', 'Sri Venkateswara College of Engineering', 'CSE', '8', '100', '0')
(5396, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '164', '152', '316', '4', '111', 'SSN College of Engineering', 'Mechanical Engg', '8.539', '10', '0')
(5397, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '157', '150', '307', '3.5', '100', 'VTU', 'Computer Science', '7.3469999999999995', '100', '0')
(5398, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '430', '1210', '3', '95', 'B V Bhoomaraddi College of Engg & Tech (Affiliated to VTU)', 'ELECTRONICS AND COMMUNICATION', '7.6', '100', '0')
(5399, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '740', '590', '1330', '3.5', '107', 'CEG', 'Mechanical engineering', '7.27', '10', '0')
(5400, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '156', '154', '310', '3.5', '92', 'MU', 'Production', '6.7', '100', '0')
(5401, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '160', '149', '309', '4', '99', 'Sri Jayachamarajendra College of Engineering', 'Electronics and Communication', '9.18', '10', '0')
(5402, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '170', '149', '319', '3.5', '100', 'GITAM', 'Computer Science', '8.54', '10', '0')
(5403, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '147', '314', '3', '97', 'R V College of Engineering', 'Electronics and Communication', '9.13', '10', '0')
(5404, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '168', '148', '316', '3', '99', 'SASTRA', 'Mechanical', '8.3', '10', '0')
(5405, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '149', '308', '3.5', '104', 'University Vishweriah College of Engineering', 'Computer Science', '8', '100', '0')
(5406, 'Arizona State University', '6', 'Admit', 'MS', 'Aerospace Engineering', 'Fall', 'None', '165', '149', '314', '3', '101', 'Dharamsinh Desai University', 'Instrumentation and Control', '0.89', '100', '0')
(5407, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '150', '313', '4', '109', 'Chhatrapati Shahuji Maharaj University Kanpur', 'BTech Computer Science', '10', '10', '44')
(5408, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '169', '147', '316', '3', '97', 'MU', 'Electronics Engg', '6.1', '100', '0')
(5409, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '164', '156', '320', '3', '103', 'SPCE', 'Electrical engineering', '7.8', '100', '0')
(5410, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '164', '154', '318', '3', '109', 'VNIT Nagpur', 'ece', '7.3', '100', '0')
(5411, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '163', '143', '306', '3', '88', 'JNTU', 'Mechanical', '6.8', '100', '0')
(5412, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '162', '151', '313', '3.5', '98', 'SSN College of Engineering', 'Electronics and Communication', '8.620000000000001', '100', '0')
(5413, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2011', '750', '530', '1280', '3', '95', 'NITK Surathkal', 'civil', '7.61', '10', '0')
(5414, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '160', '152', '312', '3.5', '113', 'DSI', 'Electrical and Electronics', '8', '100', '0')
(5415, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '161', '156', '317', '4', '109', 'University of Mumbai', 'Mechanical Engineering', '6.9', '100', '0')
(5416, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '149', '314', '3', '104', 'Cochin University of Science and Technology', 'Computer Science', '7.9', '100', '0')
(5417, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '700', '450', '1150', '3', '82', 'CVRCE', 'ECE', '7.2', '100', '0')
(5418, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '500', '1300', '4', '107', 'MU', 'Computer Engg', '6.74', '100', '0')
(5419, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '164', '150', '314', '3.5', '108', 'SET JAIN UNIVERSITY', 'ECE', '7.470000000000001', '100', '0')
(5420, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science/ Electronics and Communication', 'Fall ', '2015', '170', '154', '324', '3.5', '110', 'IIT Guwahati', 'Electronics and Communication Engineering', '7.95', '10', '20')
(5421, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '156', '317', '3.5', 'None', 'Nagarjuna University', 'CS', '8.3', '10', '0')
(5422, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '165', '149', '314', '3.5', '105', 'Pondicherry Engineering College', 'Information Technology', '8.51', '10', '48')
(5423, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical / Industrial Engg.', 'Fall ', '2014', '162', '149', '311', '4', '105', 'SRM', 'Mechanical Engineering', '9.34', '10', '0')
(5424, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '430', '1220', '4', '100', 'PESIT', 'Electronics and Communication Department', '8.55', '100', '0')
(5425, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '152', '313', '3.5', '104', 'VTU', 'Computer Science', '8.25', '100', '0')
(5426, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '164', '152', '316', '3.5', '107', 'None', '0', '0', '0', '0')
(5427, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '730', '450', '1180', '2', 'None', 'A D Patel Institute Of Technology', 'Electronics & Communication', '8.15', '10', '0')
(5428, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical / Industrial Engg.', 'Fall ', '2015', '165', '156', '321', '4', '112', 'PESIT', 'Mechanical', '9.21', '10', '24')
(5429, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '157', '322', '3.5', '110', 'JNTU', 'CSE', '7', '100', '0')
(5430, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '730', '690', '1420', '4', '109', 'SSN College of Engineering', 'EEE', '7.9', '100', '0')
(5431, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '800', '600', '1400', '5', '290', 'Anna University', 'ECE', '8.5', '100', '0')
(5432, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2013', '165', '148', '313', '3.5', '106', 'Thapar University', 'Civil Engineering', '8.54', '10', '0')
(5433, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering/Comp Science', 'Fall ', '2013', '167', '149', '316', '3', '107', 'Thapar University', 'Computer Science', '6.22', '10', '0')
(5434, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2015', '168', '149', '317', '3.5', '111', 'Mahatma Gandhi University Kerala', 'Electronics and Communication', '7.47', '10', '0')
(5435, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '159', '143', '302', '3', '84', 'SKIET Kurukshetra University', 'Information Technology', '7.4', '100', '0')
(5436, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '760', '400', '1160', '3.5', '96', 'Anna University', 'CSE', '8.48', '10', '0')
(5437, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '760', '670', '1430', '4', '115', 'SVCE', 'EEE', '8.4', '100', '0')
(5438, 'Arizona State University', '6', 'Admit', 'MS', 'Biomedical Engineering', 'Spring ', '2015', '166', '144', '310', '3', 'None', 'Bharati Vidyapeeth', 'Biomedical', '0', '0', '0')
(5439, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '144', '308', '3.5', '99', 'PESIT', 'Information Science & Engineering', '8.43', '10', '0')
(5440, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '165', '150', '315', '4.5', 'None', 'PESIT', 'Mechanical', '9.08', '10', '0')
(5441, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '169', '157', '326', '4', '109', 'GGSIPU', 'ECE', '7.2', '100', '32')
(5442, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '600', '1400', '3.5', 'None', 'BITS Goa', 'Electronics and Instrumentation', '8.8', '10', '0')
(5443, 'Arizona State University', '6', 'Admit', 'MS', 'microelectronics', 'Fall ', '2015', '158', '163', '321', '3', '107', 'Amrita School of Engineering', 'Electronics and Instrumentation', '8.57', '10', '36')
(5444, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '145', '307', '3', '95', 'Vasavi College of Engineering', 'Computer Science', '8.2', '100', '12')
(5445, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '520', '1320', '3', '96', 'BITS Pilani', 'COMPUTERS', '7.8', '10', '0')
(5446, 'Arizona State University', '6', 'Admit', 'MS', 'software engineering', 'Fall ', '2014', '160', '152', '312', '3.5', '104', 'University of Pune', 'Mechanical', '6.1', '100', '60')
(5447, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '149', '308', '3.5', '103', 'JNTU', 'IT', '7.856', '100', '0')
(5448, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(5449, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engg/Robotics', 'Fall ', '2014', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(5450, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '770', '650', '1420', '4', '112', 'University of Kerala', 'ECE', '7.55', '10', '0')
(5451, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2009', '800', '320', '1120', '3.5', '105', 'JNTU', 'CSE', '7.5', '100', '0')
(5452, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '163', '148', '311', '3', '94', 'VTU', 'Mech', '8.94', '10', '0')
(5453, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '159', '148', '307', '3.5', '103', 'VTU', 'mechanical engineering', '7.7', '100', '0')
(5454, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '147', '310', '3', '102', 'SRM', 'CSE', '9.5', '10', '29')
(5455, 'Arizona State University', '6', 'Admit', 'MS', 'analytics', 'Fall ', '2013', '154', '149', '303', '4', '101', 'JNTU', 'Metallurgy and Materials Engineering', '6.25', '100', '0')
(5456, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '157', '322', '4.5', '110', 'NIT Karnataka', 'Computer Science and Engineering', '8.32', '10', '0')
(5457, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '560', '1320', '3', '105', 'YCCE', 'Electronics', '7.88', '100', '0')
(5458, 'Arizona State University', '6', 'Admit', 'MS', 'Computational Science', 'Fall ', '2014', '162', '152', '314', '4', '100', 'VIT', 'Information Technology', '8.95', '10', '0')
(5459, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '660', '1460', '3.5', '104', 'CoE Trivandrum', 'Electronics', '7.25', '10', '0')
(5460, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '640', '1440', '5', '113', 'MU', 'Electrical Engineering', '8.3', '10', '0')
(5461, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '163', '152', '315', '3.5', '94', 'COEP', 'Computer', '0', '0', '0')
(5462, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '165', '153', '318', '3.5', '105', 'NIT Surat', 'Electronics', '7.74', '10', '0')
(5463, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '151', '315', '3.5', '110', 'UPTU', 'CSE', '8.45', '100', '0')
(5464, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '770', '610', '1380', '4', '115', 'SSN College of Engineering', 'ECE', '8.6', '100', '0')
(5465, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '730', '700', '1430', '3.5', '112', 'Anna University', 'Mechanical Engineering', '7.618', '100', '0')
(5466, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '780', '620', '1400', '3.5', '106', 'Assam Engineering College', 'Electrical Engineering', '7.43', '100', '0')
(5467, 'Arizona State University', '6', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Spring ', '2012', '800', '470', '1270', '3', '109', 'RAIT', 'Electronics and Telecommunication', '6.5', '10', '0')
(5468, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '168', '332', '5', '114', 'Jadavpur University', 'Information Technology', '8.8', '10', '0')
(5469, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '165', '150', '315', 'None', '99', 'Jalpaiguri Government Engineering College', 'Electronics and Communication', '8.11', '10', '0')
(5470, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '157', '153', '310', '4.5', '100', 'CEG', 'Manufacturing Engineering', '8.4', '10', '0')
(5471, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '740', '470', '1210', '3.5', '112', 'SASTRA', 'Electronics & Communication', '8.6', '10', '0')
(5472, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '640', '1420', '4', '113', 'VIT Pune', 'Comp Engg', '8.83', '10', '0')
(5473, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2015', '164', '157', '321', '4.5', '105', 'NIT Tirchy', 'Production Engineering', '7.86', '10', '24')
(5474, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '164', '152', '316', '3', '104', 'NIT Allahabad', 'CSE', '8.68', '10', '0')
(5475, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '168', '151', '319', '3.5', '94', 'NIT Karnataka', 'Electronics and Communication Engineering', '8.98', '10', '34')
(5476, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '680', '1470', 'None', '108', 'SJCE', 'E & C', '6.8', '100', '0')
(5477, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '164', '147', '311', '3', '98', 'VNIT Nagpur', 'Mechanical', '8', '10', '24')
(5478, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2013', '158', '145', '303', '3.5', '93', 'BVM Engineering College', 'Civil', '8.34', '10', '0')
(5479, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2012', '170', '148', '318', '3.5', '101', 'IIT BHU', 'civil engineering', '7.68', '10', '0')
(5480, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '620', '1420', '4.5', '115', "People's Education Society Institute of Technology (PESIT)", 'ECE', '8.51', '10', '0')
(5481, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '160', '154', '314', '4', '112', 'R V College of Engineering', 'Industrial Engineering', '8.75', '10', '0')
(5482, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '152', '316', '3.5', '107', 'VIT', 'Computer Science', '8.9', '10', '0')
(5483, 'Arizona State University', '6', 'Admit', 'MS', 'Data Science', 'Spring ', '2016', '162', '159', '321', '3.5', '111', 'NIT Warangal', 'Electrical and Electronics Engineering', '8.4', '10', '24')
(5484, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '780', '530', '1310', '4', 'None', 'Pune University', 'Mechanical', '7.3', '100', '0')
(5485, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '161', '145', '306', '3.5', 'None', 'VTU', 'Mechanical', '7.56', '100', '0')
(5486, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '157', '147', '304', '3.5', '108', 'Sri Sairam Engineering College', 'ECE', '8.3', '10', '0')
(5487, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '780', '410', '1190', '3', '90', 'Punjab Engineering College', 'Electrical', '6.779999999999999', '100', '0')
(5488, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '750', '630', '1380', '4', '106', 'Amrita School of Engineering', 'CSE', '7.69', '10', '0')
(5489, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '161', '145', '306', '3', '92', 'VTU', 'ECE', '7.1', '100', '0')
(5490, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '159', '151', '310', '3.5', '106', 'SRM', 'Electronics & Communication Engineering', '8.724', '10', '0')
(5491, 'Arizona State University', '6', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2014', '158', '151', '309', '3', '96', 'Nagpur University', 'Electronics And Telecomm.', '7.4', '100', '0')
(5492, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '163', '159', '322', '3.5', '113', 'Osmania University', 'CSE', '8.2', '10', '0')
(5493, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '158', '321', '3', 'None', 'KIIT', 'Computer Science(IT)', '8.4', '10', '0')
(5494, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '160', '150', '310', '4', '96', 'Sardar Patel College of Engineering', 'Electrical Engineeting', '7.2', '100', '0')
(5495, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '620', '1410', '4', '114', 'NIT Calicut', 'ECE', '9.16', '10', '0')
(5496, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '166', '140', '306', '3', '95', 'VTU', 'Electronics and Communication', '8.28', '100', '0')
(5497, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '168', '145', '313', '3', '109', 'NITK Surathkal', 'ECE', '8.97', '10', '26')
(5498, 'Arizona State University', '6', 'Reject', 'MS', 'Mechanical Engineering', 'Spring ', '2015', '159', '153', '312', '3', '99', 'MRCET(affiliated to JNTUH)', 'aero', '7.2', '100', '0')
(5499, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '164', '153', '317', '3', '98', 'CSPIT', 'electronics and communication', '8.51', '10', '0')
(5500, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '154', '321', '4', '110', 'University of Mumbai', 'Electronics and Telecommuication', '6.306', '100', '0')
(5501, 'Arizona State University', '6', 'Reject', 'MS', 'Biomedical Engineering', 'Fall ', '2011', '720', '440', '1160', '3', '91', 'Northern India Engineering College UPTU', 'Biomedical engineering', '6.5', '100', '0')
(5502, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '680', '1460', '4.5', '110', 'MIT University of Pune', 'Electronics and Telecommunication', '6.5', '100', '0')
(5503, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '720', '590', '1310', '3', '0', 'UPTU', 'CS', '7.044', '100', '0')
(5504, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '164', '143', '307', '3.5', '110', 'FCRIT Vashi', 'Electrical', '7', '100', '0')
(5505, 'Arizona State University', '6', 'Reject', 'MS', 'CS', 'Fall ', '2015', '159', '150', '309', '3', '109', 'VTU', 'Computer Science', '7', '100', '17')
(5506, 'Arizona State University', '6', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2013', '160', '157', '317', '3.5', '111', "St.Peter's Engineering College", 'Electronics & Instrumentation', '7.5', '100', '0')
(5507, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '161', '155', '316', '3', '102', 'NIT Hamirpur', 'Electronics and Communication Engineering', '8.04', '10', '20')
(5508, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '163', '324', '3.5', '109', 'Jaypee Institute of Information Technology', 'Computer Science', '7.3', '10', '0')
(5509, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '164', '153', '317', '3.5', '110', 'VTU', '0', '7', '100', '0')
(5510, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '153', '317', '3', '103', 'Jaypee Institute of Information Technology', 'CSE', '7', '100', '0')
(5511, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2016', '167', '142', '309', '3.5', '99', 'Sikkim Manipal University', 'Computer Engineering', '6.58', '10', '56')
(5512, 'Arizona State University', '6', 'Reject', 'MS', 'MIS/CS', 'Fall ', '2013', '161', '154', '315', '4', '114', 'MU', 'Information Technology', '6.1', '100', '0')
(5513, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '163', '148', '311', '3', 'None', 'PESIT', 'Telecommunication', '8.5', '10', '23')
(5514, 'Arizona State University', '6', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2013', '156', '149', '305', '3', 'None', 'MU', 'electronics and telecommunication', '6.513', '100', '0')
(5515, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '760', '570', '1330', '3', '101', 'MU', 'IT', '5.7', '100', '0')
(5516, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '163', '150', '313', '3.5', '117', 'RNSIT', 'Instrumentation Technology', '7.8', '100', '0')
(5517, 'Arizona State University', '6', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '163', '146', '309', '3', '102', 'Manipal Institue of Technology', 'Information Technology', '7', '10', '0')
(5518, 'Arizona State University', '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '790', '420', '1210', '3', '93', 'K J Somaiya College of Engiineering', 'Mechanical', '6.6', '100', '0')
(5519, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '162', '146', '308', '3.5', '97', 'VSS Univ of Technology', 'ELECTRICAL ENGINEERING', '7.77', '10', '0')
(5520, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '165', '152', '317', '3', '105', 'CoE Trivandrum', 'ECE', '8.33', '100', '0')
(5521, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '156', '151', '307', '3.5', '106', 'Anna University', 'Information Technology', '7.12', '100', '58')
(5522, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '165', '150', '315', '3.5', '111', 'BITS Pilani', 'ENI', '8.42', '10', '0')
(5523, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '680', '600', '1280', '3.5', '88', 'Dr MGR Educational and Research Institute', 'Computer Science and Engineering', '7.43', '10', '0')
(5524, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '159', '150', '309', '3.5', '106', 'JNTU', 'ece', '7.1', '100', '0')
(5525, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '164', '154', '318', '4', '111', 'Goa University', 'Electronics and Telecommunication', '6.544', '100', '0')
(5526, 'Arizona State University', '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '155', '149', '304', '3', '93', 'Anna University', 'Mechanical Engineering', '7.6', '10', '0')
(5527, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2015', '800', '650', '1450', '4', '115', 'BITS Goa', 'Electrical and Electronics Engineering', '8.2', '10', '32')
(5528, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '156', '153', '309', '4', '105', 'YCCE', 'Computer Technology', '6.4', '100', '28')
(5529, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '156', '321', '3', '110', 'Anna University', 'B.Tech I.T', '7.61', '10', '0')
(5530, 'Arizona State University', '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall', 'None', '164', '148', '312', '3', '101', 'University of Pune', 'Mechanical', '6.1', '100', '0')
(5531, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '580', '1360', '4', 'None', 'BITS Pilani', 'Mechanical', '7.8', '10', '0')
(5532, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '168', '159', '327', '4', '111', 'MU', 'Electronics', '5.779999999999999', '100', '37')
(5533, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '162', '147', '309', '4', 'None', 'Amrita Vishwa Vidhyapeetham', 'ELECTRONICS AND COMMUNICATION', '7.8', '10', '18')
(5534, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '590', '1390', '3.5', '107', 'Nagpur University', 'electronics', '6.9', '100', '0')
(5535, 'Arizona State University', '6', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '162', '153', '315', '3', '105', 'Reva Institute of Technology', 'cse', '0', '0', '0')
(5536, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '153', '317', '4', '102', 'MSRIT', 'Computer Science', '7.5', '100', '0')
(5537, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '680', '640', '1320', '4.5', '114', 'University of Pune', 'Computer Engineering', '6.544', '100', '0')
(5538, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '163', '149', '312', '4', '101', 'Manav Rachna', 'ECE', '8', '10', '0')
(5539, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '720', '650', '1370', '4', '104', 'Prince Shri Venkateshwara Padmavathy Engineering College', 'EEE', '6.6', '10', '0')
(5540, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '156', '150', '306', '4', 'None', 'Anna University', 'Computer Science', '7.3', '100', '0')
(5541, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Spring ', '2015', '158', '158', '316', '4', '116', 'MU', 'EXTC', '7.047', '100', '12')
(5542, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '168', '150', '318', '4.5', '109', 'SSN College of Engineering', 'Electrical & Electronics', '8.1', '10', '0')
(5543, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2009', '770', '570', '1340', '4', '113', 'Cochin University of Science and Technology', 'Computer Science & Engineering', '6.8', '100', '0')
(5544, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '163', '158', '321', '4', '109', 'MU', 'Computer Engineering', '6.7', '100', '0')
(5545, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '700', '640', '1340', '3', '109', 'Pune University', 'Computer Engineering', '2.9', '4', '0')
(5546, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '156', '322', '3', '100', 'RGPV', 'computer science', '7.3', '100', '0')
(5547, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '160', '142', '302', '2.5', 'None', 'Dr.AIT', 'TCE', '9.03', '10', '0')
(5548, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '157', '142', '299', '3', '86', 'V J T I', 'EE', '7', '10', '0')
(5549, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics & Communication', 'Fall ', '2012', '720', '620', '1340', '3.5', '108', 'Sri Venkateswara College of Engineering', 'ECE', '8.05', '10', '0')
(5550, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '161', '156', '317', '4', '112', 'VTU', 'Electronics and Communication', '7.7', '100', '0')
(5551, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Spring ', '2014', '158', '157', '315', '3.5', '105', 'JNTU', 'ECE', '7.3', '100', '0')
(5552, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and electrical engineering', 'Fall ', '2014', '164', '157', '321', '4.5', '114', 'MU', 'Electronics', '6.444', '100', '0')
(5553, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '165', '153', '318', '4', '113', 'Pune University', 'Information technology', '6.9', '100', '0')
(5554, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '160', '147', '307', '3.5', '95', 'VNR VJIET', 'IT', '7.5', '100', '0')
(5555, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '158', '152', '310', '3', '102', 'Osmania University', 'EEE', '6.7', '100', '0')
(5556, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '760', '590', '1350', '3', 'None', 'Velammal Engineering College', 'Electronics and Instrumentation', '7.5', '100', '0')
(5557, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Spring ', '2013', '161', '149', '310', '3', '103', 'University of Pune', 'Electronics and Telecommunication', '6.7', '100', '0')
(5558, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '150', '311', '3', '91', 'Pune University', 'Computer', '6.2', '100', '0')
(5559, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '159', '148', '307', '3', '100', 'VTU', 'Computer Science', '7.01', '100', '70')
(5560, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '590', '1360', '4.5', '118', 'VTU', 'Electronics and Communication', '6.7', '100', '0')
(5561, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '159', '150', '309', '3', '102', 'MU', 'EXTC', '6.077', '100', '12')
(5562, 'Arizona State University', '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2013', '162', '150', '312', '3.5', '113', 'Manipal Institue of Technology', 'Mechatronics', '7.5', '10', '0')
(5563, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '310', '1060', '3', '0', 'SVCE', 'Information Technology', '8.44', '10', '0')
(5564, 'Arizona State University', '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '170', '152', '322', '3.5', '98', 'Guru Gobind Singh Indraprashta University', 'TOOL ENGINEERING', '7.947', '100', '18')
(5565, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '163', '156', '319', '3.5', '112', 'MNIT', 'Electronics and Communication Engineering', '6.8', '10', '0')
(5566, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '159', '148', '307', '3.5', '98', 'Fr. Conceicao Rodrigues College of Engineering', 'Electronics', '7.122', '100', '0')
(5567, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '161', '158', '319', '4.5', '111', 'Pune University', 'Electronics and Telecom', '6.5', '100', '0')
(5568, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '159', '150', '309', '4', '107', 'MSRIT', 'Electronics and Communication', '8.42', '10', '13')
(5569, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engg/ comp engg', 'Spring ', '2011', '720', '530', '1250', '3.5', '93', 'Amity School of Engineering and Technology', 'ECE', '6.43', '10', '0')
(5570, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '155', '150', '305', '5.5', '106', 'University of Pune', 'Computer Science', '7.2', '100', '0')
(5571, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '770', '370', '1140', '3', '87', 'K J Somaiya College of Engiineering', 'Electronics', '6', '100', '0')
(5572, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '146', '307', '4', '103', 'University of Pune', 'Computer Engineering', '7.0120000000000005', '100', '0')
(5573, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '154', '318', '3', '102', 'thakur mumbai university', 'computer engg', '6.26', '100', '0')
(5574, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '167', '155', '322', '4.5', '109', 'University of Pune', 'Electronics and Telecommunication', '6.4', '100', '0')
(5575, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '168', '167', '335', '4', '105', 'VNIT Nagpur', 'ECE', '7.13', '10', '0')
(5576, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '740', '440', '1180', 'None', 'None', 'PICT', 'Computer Engg', '6.4', '100', '0')
(5577, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '730', '440', '1170', '3', '102', 'Pune University', 'Computer Engineering', '7.3', '100', '0')
(5578, 'Arizona State University', '6', 'Reject', 'MS', 'petroleum engineering', 'Fall ', '2014', '154', '146', '300', '3', '98', 'Bharati Vidyapeeth', 'Instrumentation & Control', '6', '100', '48')
(5579, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '160', '155', '315', '3.5', '104', 'MU', 'Electronics', '7.614', '100', '0')
(5580, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '165', '148', '313', '3', '97', 'Jaypee Institute of Information Technology', 'ECE', '7.4', '10', '51')
(5581, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '630', '1420', '3', '110', 'Sinhgad College of Engineering', 'Computer Engg', '6', '100', '0')
(5582, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and computer science', 'Fall ', '2013', '160', '152', '312', 'None', '100', 'Jaypee Institute of Information Technology', 'ECE', '6.8', '10', '0')
(5583, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '650', '570', '1220', '4', '101', 'University of Pune', 'Computer & I.T', '5.6', '100', '0')
(5584, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '160', '155', '315', '3.5', '101', 'Manipal Institue of Technology', 'Information and Communication Technology', '6.94', '10', '0')
(5585, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '730', '580', '1310', '3.5', '107', 'SNDT Univ Mumbai', 'ENC', '7.73', '10', '0')
(5586, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '710', '640', '1350', '3', '113', 'JNTU', 'ECE', '7.3', '100', '0')
(5587, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '167', '158', '325', '4', '115', 'University of Mumbai', 'Computer Engineering', '0', '0', '0')
(5588, 'Arizona State University', '6', 'Reject', 'MS', 'Industrial Engg/Robotics', 'Fall ', '2015', '165', '153', '318', '3.5', '110', 'BITS Pilani', 'chemical', '7.34', '10', '2')
(5589, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '162', '158', '320', '4', '112', 'SSN College of Engineering', 'EEE', '8.1', '100', '0')
(5590, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '660', '1460', '4', '107', 'Nagpur University', 'Electronics Engineering', '6.9', '100', '0')
(5591, 'Arizona State University', '6', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2014', '158', '154', '312', '3.5', '114', 'West Bengal University Of Technology', 'ELECTRONICS AND COMMUNICATION', '8.64', '10', '0')
(5592, 'Arizona State University', '6', 'Reject', 'MS', 'Chemical Engineering', 'Fall ', '2015', '162', '156', '318', '3.5', '112', 'None', '0', '5.8100000000000005', '100', '0')
(5593, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '163', '151', '314', '4', '98', 'University of Mumbai', 'Electronics & Telecommunication', '7.556', '100', '0')
(5594, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '149', '311', '3', 'None', 'University of Pune', 'Computer', '6.58', '100', '0')
(5595, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '157', '315', '3.5', '103', 'West Bengal University Of Technology', 'CSE', '8.04', '10', '34')
(5596, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2016', '163', '164', '327', '4.5', '116', 'VTU', 'Electronics and Communication', '6.534999999999999', '100', '20')
(5597, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '168', '147', '315', '3.5', '82', 'CEG', 'Electrical and Electronics Engineering', '9.31', '10', '0')
(5598, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '167', '166', '333', '4', '115', 'MU', 'Electronics & Telecommunication', '7.26', '100', '0')
(5599, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '149', '312', '3', '91', 'Maharishi Dayanand University', 'Information Technology', '7.2', '100', '0')
(5600, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '147', '308', '3', '93', 'CVRCE', 'Electronics and Communication Engineering', '8.2', '100', '0')
(5601, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '151', '315', '4.5', '109', 'BITS Dubai', 'Electronics and Communication', '8.75', '10', '0')
(5602, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '150', '313', '3.5', '97', 'Ramdeobaba Kamla Nehru Engg College', 'Electronics', '6.420999999999999', '100', '0')
(5603, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '168', '153', '321', '3.5', 'None', 'Mahrishi Dayanand University', 'Computer Science and Engineering', '6.942', '100', '0')
(5604, 'Arizona State University', '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '780', '530', '1310', '3', '95', 'Gujarat Technological University', 'mechanical', '6.38', '10', '0')
(5605, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '760', '530', '1290', '3.5', '107', 'SGSITS', 'ECE', '6.978', '100', '0')
(5606, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '152', '150', '302', '3', '90', 'MU', 'Information Technology', '6.3', '100', '11')
(5607, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '168', '156', '324', '3', '105', 'GCET Sardar Patel University', 'Computers', '6.38', '10', '0')
(5608, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '161', '153', '314', '4', '107', 'IP University MAIT', 'ECE', '8.1', '100', '0')
(5609, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '151', '312', '3', 'None', 'University of Pune', 'Computer Engg..', '6', '100', '0')
(5610, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '168', '155', '323', '4', '108', 'VJTI', 'Electronics', '8', '10', '0')
(5611, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '152', '315', '3', '95', 'University of Pune', 'Computer Engineering', '6.7', '100', '18')
(5612, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '770', '640', '1410', '4.5', '114', 'MU', 'Computer Engineering', '6.3', '100', '0')
(5613, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '740', '580', '1320', '3.5', '97', 'CUSAT', 'Electronics and Communication Engineering', '7.632', '100', '0')
(5614, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '156', '150', '306', '3', '93', 'M G university Kerala', 'CS', '7.33', '100', '12')
(5615, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '160', '153', '313', '4', '105', 'Pune University', 'ENTC', '6', '100', '56')
(5616, 'Arizona State University', '6', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2014', '159', '156', '315', '3.5', '112', 'CITM Faridabad Haryana (affiliated to Maharshi Dayanand University Rohtak)', 'Aeronautical Engineering', '7.05', '100', '0')
(5617, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '163', '148', '311', '3.5', '107', 'MU', 'Electronics and Telecommunications', '6.6930000000000005', '100', '24')
(5618, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '159', '151', '310', '3.5', '109', 'VTU', 'ECE', '7.8', '100', '0')
(5619, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '162', '158', '320', 'None', '108', 'Dhirubhai Ambani Institute of Information & Communication Technology', 'Information and Communication Technology', '0.67', '100', '52')
(5620, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2013', '166', '159', '325', '4', '110', 'Medicaps Institute of Science & Technology Indore', 'EC', '7.3', '100', '0')
(5621, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2016', '160', '149', '309', '4', 'None', 'DSCE', 'ECE', '7.2', '100', '0')
(5622, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '160', '146', '306', '3.5', '107', 'Sir MVIT', 'TELECOMMUNICATION', '8.254000000000001', '100', '0')
(5623, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '155', '318', '3', '107', 'Jaypee Institute of Information Technology', 'Information Technology', '6.7', '10', '0')
(5624, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '156', '150', '306', '3.5', 'None', 'Anna University', 'Electrical and Electronics Eng.', '8.7', '10', '24')
(5625, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '154', '154', '308', '3', '108', 'Prathyusha Institute of Technology and Management', 'ECE', '7.2', '100', '45')
(5626, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '169', '153', '322', '3', '101', 'NITK Surathkal', 'Electronics & Comm Engg', '7.34', '10', '0')
(5627, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '168', '158', '326', '4', '115', 'JSS Noida', 'ECE', '7.67', '100', '0')
(5628, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '740', '500', '1240', '3.5', '112', 'Pune University', 'Computer', '6.3', '100', '0')
(5629, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '159', '145', '304', '3', '90', 'SRM', 'ELECTRICAL AND ELECTRONICS', '9.328', '10', '0')
(5630, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2016', '165', '152', '317', '3', '103', 'Madras Institute of Technology', 'Electronics & Communications Enginnering', '6.5', '10', '24')
(5631, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '750', '560', '1310', '3.5', '111', 'Anna University', 'EEE', '8.02', '10', '0')
(5632, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '161', '141', '302', '2.5', 'None', 'Anna University', 'Electronics and Communication engineering', '8.3', '10', '0')
(5633, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '168', '158', '326', '4', '111', 'CoE Trivandrum', 'Computer Science', '7.93', '10', '36')
(5634, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '163', '151', '314', '4', '101', 'JNTU', 'ECE', '7.6', '100', '0')
(5635, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '160', '158', '318', '4.5', '116', 'Amrita School of Engineering', 'ECE', '7.73', '10', '0')
(5636, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '630', '350', '980', '3', '93', 'EEC', 'ECE', '0', '0', '0')
(5637, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '160', '150', '310', '3.5', '104', 'NIT Durgapur', 'ELECTRICAL ENGINEERING', '7.97', '10', '0')
(5638, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2007', '800', '590', '1390', '4.5', '270', 'SPCE', 'IT', '6.3', '100', '0')
(5639, 'Arizona State University', '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '161', '145', '306', '3', '98', 'PSG College of Technology', 'mechanical', '7.78', '10', '3')
(5640, 'Arizona State University', '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '158', '146', '304', '3', '101', 'Thiagarajar College of engineering', 'Mechanical Engineering', '8.84', '10', '0')
(5641, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '158', '141', '299', '3', 'None', 'SSN College of Engineering', 'EEE', '7.5', '100', '0')
(5642, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '151', '309', 'None', '103', 'NIE', 'CS', '8.23', '10', '0')
(5643, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '161', '153', '314', '4', '112', 'Guru Gobind Singh Indraprashta University', 'Electronics and Communication', '8.2', '100', '0')
(5644, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '167', '157', '324', '3.5', '116', 'Amrita Vishwa Vidhyapeetham', 'ECE', '7.55', '10', '0')
(5645, 'Arizona State University', '6', 'Reject', 'MS', 'Technology Leadership', 'Fall ', '2014', 'None', 'None', '0', 'None', 'None', 'BVUCOE', 'Electronics Engineering', '6.2', '100', '8')
(5646, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '164', '156', '320', '3.5', '113', 'University of Pune', 'Electronics & Telecommunication', '7.1', '100', '0')
(5647, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '160', '155', '315', '4', '94', 'DTU', 'ECE', '6.3', '100', '0')
(5648, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '165', '154', '319', 'None', '100', 'IIT Roorkee', 'Paper Technology', '7.84', '10', '43')
(5649, 'Arizona State University', '6', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2011', '790', '650', '1440', '4', '110', 'VTU', 'Mechanical', '6.8', '100', '0')
(5650, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '163', '150', '313', '2.5', '97', 'VIT', 'IT', '8.79', '10', '0')
(5651, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall', 'None', '163', '152', '315', '3', '104', 'VIT', 'Electrical and Electronics Engineering', '8.97', '10', '0')
(5652, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '165', '157', '322', '4.5', '115', 'university pf Pune', 'Electronics and telecomm', '6.4', '100', '15')
(5653, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '153', '316', '4', '108', 'VTU', 'Computer Science', '8.368', '100', '0')
(5654, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '160', '152', '312', '3', '110', 'VTU', 'Telecommunication', '8.67', '10', '36')
(5655, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '160', '149', '309', '3', '101', 'Amrita Vishwa Vidhyapeetham', 'Electronics and Communication', '7.35', '10', '0')
(5656, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '360', '1140', '3', '101', 'Siddaganga Institue of Technology', 'Electronics and Communication', '9.27', '10', '0')
(5657, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '157', '155', '312', '3', '102', 'Sardar Patel College of Engineering', 'Information Technology', '6.7', '100', '0')
(5658, 'Arizona State University', '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2010', '780', '610', '1390', '4', '106', 'Crescent Engineering College', 'Electrical & Electronics', '6.7', '100', '0')
(5659, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '157', '167', '324', '3', '110', 'BITS Pilani', 'Electronics & Instrumentation', '6', '10', '0')
(5660, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '163', '154', '317', '3.5', '101', 'Panimalar Engineering College', 'Electrical and Electronics', '8.2', '10', '0')
(5661, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '167', '147', '314', '3', '88', 'Cochin University of Science and Technology', 'Division of Electorinics', '7.2', '100', '0')
(5662, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics Instrumentation and Control', 'Fall ', '2014', '155', '158', '313', '3.5', '114', 'RMK Engineering College', 'ELECTRONICS AND INSTRUMENTATION', '8.4', '10', '0')
(5663, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '162', '145', '307', '3.5', '102', 'NIT Tirchy', 'Electronics And Communication', '6.61', '10', '0')
(5664, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '166', '156', '322', '4', '108', 'Amrita School of Engineering', 'ECE', '7.86', '10', '18')
(5665, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2006', '780', '640', '1420', '5', '270', 'MU', 'Comp Engg', '5.729', '100', '0')
(5666, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '350', '1140', '3', '104', 'Anna University', 'Computer Science', '7.3', '100', '0')
(5667, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '156', '143', '299', 'None', '97', '0', 'ECE', '7.9', '100', '0')
(5668, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '163', '148', '311', '4.5', '105', 'University of Mumbai', 'Computer Science', '5.9799999999999995', '100', '0')
(5669, 'Arizona State University', '6', 'Reject', 'MS', 'Embedded systems', 'Fall ', '2015', '165', '153', '318', '3', '109', 'NIT Hamirpur', 'Electronics and Communication', '8.18', '10', '18')
(5670, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '156', '147', '303', '3', '100', 'Madras Institute of Technology', 'Computer Science Engineering', '6.8', '10', '0')
(5671, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '170', '157', '327', '4', '118', 'West Bengal University Of Technology', 'Electronics and Communication Engineering', '8.79', '10', '0')
(5672, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '169', '144', '313', '3', '98', 'Amrita School of Engineering', 'ECE', '8.01', '10', '0')
(5673, 'Arizona State University', '6', 'Reject', 'MS', 'CS / MIS', 'Fall ', '2014', '162', '155', '317', '4', '106', 'Yeshwantrao Chavan College of Engineering', 'ECE', '6.4', '100', '0')
(5674, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '165', '146', '311', '3', '97', 'RVR & JC College of Engineering', 'electronics and communication engineering', '8.48', '100', '0')
(5675, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '154', '157', '311', '4', '114', 'Anna University', 'Computer Science', '6.7', '10', '0')
(5676, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Spring ', '2012', '720', '340', '1060', '3', '84', 'pvpsit', 'ece', '7.651999999999999', '100', '0')
(5677, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '14', '163', '153', '316', '3', '109', 'NIT Tirchy', 'CSE', '7.03', '10', '0')
(5678, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '161', '149', '310', '3.5', '102', 'MU', 'Electronics & Telecommunication', '6.9', '100', '0')
(5679, 'Arizona State University', '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '770', '660', '1430', '3', '106', 'MU', 'Mechanical', '5.9', '100', '0')
(5680, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '158', '319', '3.5', '109', 'University of Calicut', 'Computer Science and Engg', '7.9', '100', '38')
(5681, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '168', '155', '323', '3', '105', 'L D College Of Engineering', 'Information Technology', '7.67', '10', '3')
(5682, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '164', '157', '321', 'None', 'None', 'Madras Institute of Technology', 'Electronics and Communication', '8.5', '10', '0')
(5683, 'Arizona State University', '6', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2014', '166', '144', '310', '3', '90', 'Manipal Institue of Technology', 'CIVIL', '6.6', '10', '6')
(5684, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '760', '640', '1400', '2.5', '87', 'VTU', 'ECE', '6.3', '100', '0')
(5685, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '170', '152', '322', '3.5', 'None', 'DA-IICT', 'ICT', '6.83', '10', '19')
(5686, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2015', '166', '149', '315', '3.5', '104', 'R.N.S.I.T / VTU', 'Electronics and communication', '6.8', '100', '15')
(5687, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '163', '156', '319', '3', '102', 'MU', 'Computer Engineering', '6.5', '100', '0')
(5688, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '157', '155', '312', '4.5', '108', 'VIT University', 'CSE', '8.4', '10', '6')
(5689, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '160', '151', '311', '3.5', '87', 'Sarvajanik College of Engineering & Technology', 'Computer', '7.94', '10', '0')
(5690, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '169', '157', '326', '4', '108', 'NIT Silchar', 'Computer Science and Engineering', '6.94', '10', '0')
(5691, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '160', '145', '305', '3.5', '102', 'VTU', 'Computer Science', '7.17', '100', '0')
(5692, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '158', '320', '4', '113', 'None', '0', '0', '0', '0')
(5693, 'Arizona State University', '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '800', '670', '1470', '4', '113', 'NIT Calicut', 'Mechanical Engineering', '6.67', '10', '0')
(5694, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '159', '150', '309', '4', '105', 'GITAM', 'ECE', '8.4', '100', '87')
(5695, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '169', '150', '319', '4', '112', 'Amrita School of Engineering', 'Electronics and Communication', '7.48', '10', '0')
(5696, 'Arizona State University', '6', 'Reject', 'MS', 'Mechanical Engineering', 'Spring ', '2015', '160', '155', '315', '3', '105', 'VTU', 'Mechanical', '7.27', '10', '36')
(5697, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '159', '155', '314', '5', '105', 'NMIMS', 'Electronics', '2.85', '4', '0')
(5698, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall', 'None', '166', '150', '316', '3.5', '107', 'University of Mumbai', 'electronics and telecom', '7.003', '100', '31')
(5699, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '162', '157', '319', '3.5', '109', 'SRM', 'ECE', '8.23', '10', '0')
(5700, 'Arizona State University', '6', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2014', '167', '152', '319', '3', '108', 'BIT Mesra', 'Electronics and Communication', '7.2', '10', '0')
(5701, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '780', '520', '1300', '3.5', '110', 'VTU', 'E&C;', '6.94', '100', '0')
(5702, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '800', '640', '1440', '3.5', '105', 'SSN College of Engineering', 'IT', '7.3', '100', '0')
(5703, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '170', '145', '315', '3.5', '94', 'IIT Indore', 'Electrical Engineering', '6.6', '10', '0')
(5704, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics & Communication', 'Fall ', '2012', '790', '530', '1320', '4', '110', 'NIT Hamirpur', 'Electronics and communication', '7.56', '10', '0')
(5705, 'Arizona State University', '6', 'Reject', 'MS', 'Computer engineering VLSI CAD', 'Fall ', '2014', '163', '142', '305', '3', '93', 'BIT VTU', 'Electronics And Communication', '8', '100', '0')
(5706, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '164', '149', '313', '3', 'None', 'Univ of Mumbai', 'Electrical', '6.441', '100', '0')
(5707, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '166', '144', '310', '3.5', '96', 'SRM', 'ECE', '8', '10', '0')
(5708, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2012', '780', '720', '1500', '4.5', '115', 'PESIT', 'Telecommunication', '7.69', '10', '0')
(5709, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '164', '158', '322', '3.5', '114', 'PESIT', 'Telecommunication Department', '8.43', '10', '0')
(5710, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics Engineering', 'Fall ', '2013', '158', '161', '319', '3.5', '112', 'Guru Nanak Dev University Amritsar', 'Electronics & Communications', '7.08', '100', '0')
(5711, 'Arizona State University', '6', 'Reject', 'MS', 'Biomedical Engineering', 'Fall ', '2012', '730', '490', '1220', '3.5', '104', 'Manipal Institue of Technology', 'Biomedical Engineering', '7.67', '10', '0')
(5712, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Spring ', '2014', '168', '149', '317', '3', '101', 'None', 'Electronics and Communication Engineering', '7.85', '10', '0')
(5713, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '160', '148', '308', '3.5', '84', 'Panjab University', 'CSE', '7.502', '100', '0')
(5714, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '164', '154', '318', '4', '111', 'Gujarat Technological University', 'ECE', '7.6819999999999995', '100', '0')
(5715, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '580', '1380', '4', '111', 'UPTU', 'Computer Science', '6.876', '100', '0')
(5716, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '166', '154', '320', '3.5', '111', 'University of Mumbai', 'Electrical Engineering', '7.06', '100', '0')
(5717, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '162', '147', '309', '3', '95', 'University of Pune', 'Electronics and Telecommunication', '6.2', '100', '12')
(5718, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '158', '153', '311', '4', '114', "St Joseph's College of Engineering", 'ECE', '8.61', '10', '24')
(5719, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '157', '146', '303', '3', '99', 'Pondicherry University', 'CSE', '8.03', '10', '0')
(5720, 'Arizona State University', '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '161', '163', '324', '4', '116', 'SDM', 'mechanical', '6.884', '100', '0')
(5721, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '168', '149', '317', '4', '107', 'University of Pune', 'Electronics and Tele-Communication', '6.3445', '100', '0')
(5722, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '440', '1220', '3', '104', 'JNTU', 'Computer Science', '6.627', '100', '0')
(5723, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '158', '166', '324', '4', 'None', 'Manipal Institue of Technology', 'electrical & electronics', '7.41', '10', '0')
(5724, 'Arizona State University', '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '800', '520', '1320', '4', '108', 'PESIT', 'Mechanical Engg.', '6', '100', '0')
(5725, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall', 'None', '166', '157', '323', '4', '113', 'DDU', 'EC', '6.5200000000000005', '100', '0')
(5726, 'Arizona State University', '6', 'Reject', 'MS', 'Biochemistry and Molecular biology', 'Fall ', '2011', '720', '590', '1310', '3', '101', 'Kurukshetra University', 'Biochemistry', '7.3', '100', '0')
(5727, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '161', '148', '309', '3.5', '100', 'Anna University', 'ECE', '8.7', '10', '0')
(5728, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics & Communication', 'Fall ', '2012', '770', '490', '1260', '3.5', '102', 'GITAM', 'ECE', '9.15', '10', '0')
(5729, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '159', '166', '325', '4.5', '110', 'Anna University', 'EEE', '7.5', '10', '0')
(5730, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '500', '1250', '4', '107', 'Pune University', 'IT', '5.8', '100', '0')
(5731, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '160', '161', '321', '4', '114', 'Yeshwantrao Chavan College of Engineering', 'Electronics and communication', '6.886', '100', '19')
(5732, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '156', '320', '4', '110', 'MITCOE University of Pune', 'IT', '5.657', '100', '0')
(5733, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '156', '151', '307', '3.5', '106', 'Pune University', 'Computer Engg.', '5.7', '100', '0')
(5734, 'Arizona State University', '6', 'Reject', 'MS', 'Telecommunication', 'Spring ', '2012', '790', '420', '1210', '3.5', '106', 'Dharamsinh Desai University', 'EC', '5.85', '100', '0')
(5735, 'Arizona State University', '6', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2012', '162', '141', '303', '3.5', '102', 'Vasavi College of Engineering', 'Civil Engineering', '6.6', '100', '0')
(5736, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '157', '144', '301', '2.5', '98', 'Jaypee Institute of Information Technology', 'Electronics and Communication', '7.2', '10', '0')
(5737, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '163', '149', '312', '3.5', '105', 'IIIT Hyderabad', 'ECE', '6.72', '10', '0')
(5738, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '158', '150', '308', '2.5', '97', 'None', '0', '8.63', '10', '0')
(5739, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '164', '157', '321', '4', '8', 'Pondicherry University', 'Computer Science', '7.1', '10', '20')
(5740, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '167', '162', '329', '3.5', '113', 'COEP', 'Computer Engineering', '7.06', '10', '0')
(5741, 'Arizona State University', '6', 'Reject', 'MS', 'MIS', 'Fall ', '2011', '800', '510', '1310', '3', '96', 'PICT', 'IT', '3.29', '4', '0')
(5742, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and computer engineering electrical engineering telecommunications engineering', 'Spring ', '2014', '158', '150', '308', '3.5', '92', 'WBUT', 'ECE', '9.77', '10', '0')
(5743, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '450', '1250', '3', '100', 'NIT Tirchy', 'Computer Science', '7.62', '10', '0')
(5744, 'Arizona State University', '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2011', '720', '330', '1050', '3.5', '103', 'Anna Univeristy', 'EEE', '7.4', '100', '0')
(5745, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '149', '310', '3', 'None', 'PESIT', 'Telecommunication', '8.1', '10', '0')
(5746, 'Arizona State University', '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '158', '147', '305', '3', 'None', "St Joseph's College of Engineering", 'Mechanical engineering', '6.74', '10', '12')
(5747, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Spring ', '2014', '165', '161', '326', '4', '114', 'KIIT', 'Electronics and Electrical', '9', '10', '0')
(5748, 'Arizona State University', '6', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2014', '156', '149', '305', '3', '102', 'JNTU', 'Computer Science', '7.8', '100', '0')
(5749, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '162', '148', '310', '3', '91', 'COER UPTU', 'Electronics and TeleCommunication', '7.6', '100', '0')
(5750, 'Arizona State University', '6', 'Reject', 'MS', 'Packaging Science', 'Fall ', '2013', '160', '152', '312', '3.5', '106', 'Anna University', 'Mechanical', '7.36', '10', '0')
(5751, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '155', '144', '299', '3.5', '96', 'VTU', 'Instrumentation Technology', '7.7', '100', '0')
(5752, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '159', '145', '304', '3', '112', 'Gujarat Technological University', 'Electronics and Telecomm.', '8.44', '10', '0')
(5753, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '580', '1350', '3.5', '96', 'Pune University', 'Computer Science', '6.3', '100', '0')
(5754, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '168', '162', '330', '3.5', '114', 'Nagpur University', 'Electrical Engineering', '6.1', '100', '0')
(5755, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '760', '520', '1280', '3', '104', 'Shri Ramdeobaba Engineering College', 'electronics and communication', '7', '100', '0')
(5756, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '161', '148', '309', '3', '97', 'WBUT', 'ECE', '7', '10', '0')
(5757, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '162', '148', '310', '3', 'None', 'VTU', 'Telecommunication', '7.1', '100', '0')
(5758, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '153', '316', '4', '94', 'Medicaps Institute of Science & Technology Indore', 'Information Technology', '8.07', '10', '0')
(5759, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '159', '148', '307', '2.5', '95', 'PESIT', 'Electronics and communication', '8.02', '10', '0')
(5760, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '163', '158', '321', '3.5', '107', 'SVNIT', 'Electronics Engineering', '6.56', '10', '0')
(5761, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '770', '530', '1300', '3.5', '112', 'University of Mumbai', 'Electronics Engineering', '6.9159999999999995', '100', '0')
(5762, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2006', '790', '460', '1250', '3.5', '263', 'JNTU', 'eee', '7.9', '100', '0')
(5763, 'Arizona State University', '6', 'Reject', 'MS', 'Master of Science in Information Technology', 'Fall ', '2014', '162', '151', '313', '3.5', 'None', 'Amrita Vishwa Vidhyapeetham', 'Computer Science', '7.32', '10', '22')
(5764, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '161', '149', '310', '3', '104', 'Malaviya NIT Jaipur', 'Electronics and Communication', '8.63', '10', '0')
(5765, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2013', '156', '153', '309', '3.5', '99', 'VIT University', 'Electronics and Instrumentation', '7.99', '10', '0')
(5766, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '690', '550', '1240', 'None', '94', 'Sardar Patel College of Engineering', 'Computers', '6.714', '100', '0')
(5767, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '161', '149', '310', '4', '108', 'R.N.S.I.T (VTU)', 'Computer science', '6.5', '100', '0')
(5768, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '160', '150', '310', '3', '88', 'MIT Pune', 'Computer science', '6.05', '100', '0')
(5769, 'Arizona State University', '6', 'Reject', 'MS', 'Industrial Engg/Robotics', 'Fall ', '2015', '161', '153', '314', '3', '108', 'University of Delhi', 'Mechanical Engineering', '6.3149999999999995', '100', '42')
(5770, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '157', '137', '294', '3.5', '87', 'CMRIT', 'ECE', '6.1', '100', '0')
(5771, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '660', '540', '1200', '3.5', '95', 'University of Rajasthan', 'ECE', '6.9', '100', '0')
(5772, 'Arizona State University', '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '161', '163', '324', '3', '109', 'R V College of Engineering', 'Mechanical Engineering', '6.7', '100', '0')
(5773, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '730', '490', '1220', '3', '102', 'JNTU', 'CSE', '7.3', '100', '0')
(5774, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '160', '151', '311', '4', '102', 'SRM', 'ECE', '8.59', '10', '22')
(5775, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '167', '156', '323', '3', '107', 'NIT Nagpur', 'ECE', '8.22', '10', '28')
(5776, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '159', '326', '3.5', '105', 'Dayananda Sagar College of Engineering', 'Information Science', '7.5', '100', '52')
(5777, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '740', '410', '1150', '4', '104', 'Anna University', 'Electrical and Electronics', '7.9', '10', '0')
(5778, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '160', '147', '307', '4', '101', 'Shivaji University', 'Electronics & Telecommunication', '6.906999999999999', '100', '0')
(5779, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '740', '430', '1170', '3.5', '100', 'Amrita School of Engineering', 'eee', '6.3', '10', '0')
(5780, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '168', '147', '315', '3.5', '101', 'RTU Kota / JECRC jaipur', 'Information Technology', '7.4', '100', '41')
(5781, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '148', '309', '3.5', '90', 'Anna University', 'Computer Science and Engineering', '7.8', '10', '0')
(5782, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '162', '152', '314', '3.5', '112', 'NIT Allahabad', 'ECE', '7.07', '10', '84')
(5783, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '790', '550', '1340', '3.5', '106', 'MIT Pune Univ', 'Electronics & TeleCommunication Engg', '5.8', '100', '0')
(5784, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '720', '420', '1140', '3.5', '98', 'VTU', 'Computer Science and engineering', '6.753', '100', '0')
(5785, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2007', '770', '570', '1340', '4.5', '107', 'None', 'Electronics and Telecommunication', '6.1', '100', '0')
(5786, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '780', '670', '1450', '4', '113', 'University of Pune', 'Electronics & Telecommunication', '6.1', '100', '0')
(5787, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Electronics', 'Fall ', '2012', '790', '610', '1400', '3.5', '115', 'JNTU', 'Electronics and Instrumentation Engineering', '7.9', '100', '0')
(5788, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '161', '152', '313', '3', '105', 'Sardar Patel College of Engineering', 'Electrical Engineering', '7.586', '100', '18')
(5789, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '156', '151', '307', '3', '100', 'Coimbatore Insitute of Technology', 'M.Sc Software Engineering', '7.8', '100', '0')
(5790, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2015', '166', '145', '311', '3', '96', 'SASTRA', 'electronics and communication engineering', '7.93', '10', '27')
(5791, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '164', '144', '308', 'None', 'None', 'Vignan Institute of Technology and Science', 'ECE', '8.3', '100', '0')
(5792, 'Arizona State University', '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '158', '143', '301', '3', '98', 'MVSR', 'Mechanical', '7', '100', '1')
(5793, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2014', '160', '151', '311', '4', '93', 'LDRP-ITR/GTU', 'ECE', '7.35', '100', '0')
(5794, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '155', '151', '306', '4', '115', 'Amrita School of Engineering', 'ECE', '8.1', '10', '0')
(5795, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '530', '1300', '4', '108', 'VTU', 'Computer Science & Engineering', '6.7', '100', '0')
(5796, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '158', '146', '304', '3', '82', 'MU', 'Electronics and Telecommunication', '7.390000000000001', '100', '0')
(5797, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '162', '158', '320', '4', '101', 'COEP', 'Electrical', '7.4', '10', '36')
(5798, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '155', '316', '3', '108', 'Pune University', 'Electronics', '5.7', '100', '0')
(5799, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '750', '510', '1260', '3.5', '104', 'Thadomal Shahani Engineering College', 'Computers', '6.1', '100', '0')
(5800, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '163', '156', '319', '4', '113', 'RMK Engineering College', 'B.E. Electrical and Electronics Engineering', '8.28', '10', '0')
(5801, 'Arizona State University', '6', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2012', '800', '450', '1250', '3', 'None', 'NIT Warangal', 'Civil engineering', '7.1', '10', '0')
(5802, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '11', '780', '500', '1280', '3.5', '105', 'Crescent Engineering College', 'CS', '6.9', '100', '0')
(5803, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '690', '430', '1120', '3.5', '89', 'Anna University', 'Electrical and Electronics Engineering', '8.1', '100', '0')
(5804, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '161', '149', '310', '3.5', '102', 'VIT', 'EEE', '8.18', '10', '0')
(5805, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '710', '550', '1260', '3', '98', 'VTU', 'Telecommunication', '7.4', '100', '0')
(5806, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '780', '440', '1220', '3.5', '102', 'Amity University', 'Computer Science And Engineering', '7.6', '10', '0')
(5807, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '165', '148', '313', '3.5', '91', 'University of Pune', 'Comp Engg', '0', '0', '0')
(5808, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '160', '153', '313', '3.5', '112', 'NMAMIT Nitte', 'Computer Science & Engineering', '6.7', '100', '0')
(5809, 'Arizona State University', '6', 'Reject', 'MS', 'Human Computer Interaction', 'Fall ', '2014', '160', '150', '310', '3.5', '108', 'NIT Tirchy', 'Instrumentation and Control Engg', '8.3', '10', '0')
(5810, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '157', '148', '305', '4', '105', 'Goa University', 'Computer Engineering', '7.8', '100', '32')
(5811, 'Arizona State University', '6', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2014', '161', '162', '323', '4', '115', 'Madras Institute of Technology', 'ECE', '8', '10', '0')
(5812, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '165', '157', '322', '3.5', '108', 'MIT', 'instrumentation', '8.7', '10', '0')
(5813, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '159', '150', '309', '3', '106', 'Amity University', 'Computer Science and Engineering', '8.36', '10', '39')
(5814, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engg/ comp engg', 'Spring ', '2012', '800', '590', '1390', '4.5', '106', 'None', '0', '7', '100', '0')
(5815, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Electronics', 'Spring ', '2014', '165', '158', '323', '3.5', '100', 'Osmania University', 'electrical and electronics engineering', '7.2', '100', '0')
(5816, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Spring ', '2012', '740', '530', '1270', '3', '99', 'JNTU', 'EEE', '5.465999999999999', '100', '0')
(5817, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '156', '314', '4', 'None', 'Anna University', 'Information Technology', '8.01', '10', '0')
(5818, 'Arizona State University', '6', 'Reject', 'MS', 'Civil Engineering', 'Spring ', '2011', '780', '310', '1090', '3', '83', 'Bapatla Engineering College', 'civil engineering', '8.3', '100', '0')
(5819, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '160', '154', '314', '3.5', '104', 'Biju Patnaik University of Technology', 'Electrical Engineering', '8.17', '10', '0')
(5820, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '400', '1200', '2.5', '94', 'Guru Gobind Singh Indraprashta University', 'electronics & communication engg', '7.006', '100', '0')
(5821, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '168', '153', '321', 'None', 'None', 'VTU', 'EC', '8', '100', '0')
(5822, 'Arizona State University', '6', 'Reject', 'MS', 'Computer engineering VLSI CAD', 'Fall ', '2012', '770', '340', '1110', '3', '97', 'VTU', 'ECE', '7', '100', '0')
(5823, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '159', '144', '303', '3', '101', 'Bangalore Institute of Technology', 'Computer Science and Engineering', '7.811', '100', '0')
(5824, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2013', '161', '144', '305', '3', '97', 'Vishwakarma Institute of Technology', 'Electronics and Telecommunication', '7.9', '10', '0')
(5825, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '750', '550', '1300', '3.5', '109', 'Coimbatore Insitute of Technology', 'CSE', '7', '10', '0')
(5826, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '770', '570', '1340', '3.5', '110', 'Pune University', 'Electronics and Telecomm', '6.2', '100', '0')
(5827, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '162', '155', '317', '4', '109', 'Sri Sairam Engineering College', 'Instrumentation and Control', '8.2', '10', '0')
(5828, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '162', '153', '315', '3', '105', 'Model Engineering College', 'Electronics And Communication Engineering', '7', '100', '42')
(5829, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '530', '1330', '3.5', '115', 'Manipal Institue of Technology', 'ECE', '8.6', '10', '0')
(5830, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2008', '790', '690', '1480', '3.5', '106', 'NIT Bhopal', 'CSE', '7.36', '10', '0')
(5831, 'Arizona State University', '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '164', '153', '317', '3.5', '108', 'UPTU', 'Mechanical Engineering', '6.7', '100', '42')
(5832, 'Arizona State University', '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '154', '146', '300', '3.5', '95', 'Gujarat Technological University', 'Mechanical Engineering', '8.1', '10', '0')
(5833, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '149', '310', '3', '104', 'MU', 'computer', '5.8950000000000005', '100', '0')
(5834, 'Arizona State University', '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '790', '540', '1330', '3', '96', 'Bangladesh University of Engineering & Technology', 'Industrial & Production Engineering', '3.84', '4', '0')
(5835, 'Arizona State University', '6', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2013', '168', '152', '320', '4', '105', 'VTU', 'Electronics', '6.4', '100', '0')
(5836, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '710', '1490', '4', '119', 'Pune University', 'Information Technology', '6.6', '100', '0')
(5837, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '159', '150', '309', '3.5', '110', 'VTU', 'Electronics & Communication', '7.65', '100', '0')
(5838, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '160', '150', '310', '4', '114', 'University of Pune', 'Electronics Engineering', '6.9', '100', '0')
(5839, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '156', '149', '305', '3', '100', 'SASTRA', 'Electronics and Communication', '9.11', '10', '52')
(5840, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '160', '157', '317', 'None', '114', 'VTU', 'ECE', '8.59', '10', '0')
(5841, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '162', '146', '308', '3.5', '97', 'Pune University', 'Computer Engineering', '7', '100', '0')
(5842, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '740', '470', '1210', '2.5', '99', 'VTU', 'cs', '6.5', '100', '0')
(5843, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2008', '800', '580', '1380', '5', '111', 'MU', 'Information Technology', '6', '100', '0')
(5844, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '163', '147', '310', '3.5', '97', 'Punjab Technical University', 'Electronics & Communication', '7.992', '100', '32')
(5845, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '156', '144', '300', '3.5', '91', 'Birla Vishvakarma Mahavidyalaya', 'Electrical Engineering', '8.11', '10', '24')
(5846, 'Arizona State University', '6', 'Reject', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(5847, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '155', '316', '4', '110', 'SJCE', 'EC', '7.6', '100', '0')
(5848, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '156', '153', '309', '3', '103', "St Joseph's College of Engineering", 'cse', '8.64', '10', '0')
(5849, 'Arizona State University', '6', 'Reject', 'MS', 'CS', 'Spring ', '2014', '160', '152', '312', '3.5', '113', 'University of Pune', 'Computer Engineering', '6.0200000000000005', '100', '0')
(5850, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics & Communication', 'Fall ', '2012', '730', '610', '1340', '3.5', '93', 'VTU', 'Electronics and Communication', '7.720000000000001', '100', '0')
(5851, 'Arizona State University', '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '740', '510', '1250', '3', '102', 'K J Somaiya College of Engiineering', 'Mechanical Engineering', '6.4590000000000005', '100', '0')
(5852, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and computer engineering electrical engineering telecommunications engineering', 'Fall ', '2014', '165', '148', '313', '3.5', '96', 'D J Sanghvi', 'EXTC', '6.76', '100', '0')
(5853, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2007', '780', '660', '1440', '4.5', '283', 'Sri Venkateswara College of Engineering', 'Computer Science', '7.2', '100', '0')
(5854, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '160', '152', '312', '4', '115', 'MU', 'Computers', '6.6450000000000005', '100', '24')
(5855, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '160', '148', '308', '3', '98', 'Sree Vidyanikethan Engineering College', 'Electronics and Communication Engineering', '7.9', '100', '0')
(5856, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '700', '1500', '4.5', '112', 'VIT Pune', 'Instrumentation & Control', '8.8', '10', '0')
(5857, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '158', '160', '318', '3.5', '114', 'MU', '0', '6.1', '100', '0')
(5858, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Electronics', 'Fall ', '2014', '161', '156', '317', '3.5', '116', 'VTU', 'EEE', '8.5', '100', '0')
(5859, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2016', '163', '155', '318', '3', '90', 'West Bengal University Of Technology', 'Electronics and Instrumentation Engineering', '8.54', '10', '33')
(5860, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2016', '166', '155', '321', '3.5', '101', 'Uttarakhand Technical University', 'Computer Science', '7.26', '100', '56')
(5861, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '161', '149', '310', '3.5', '101', 'JNTU', 'Computer Science', '6.544', '100', '0')
(5862, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '163', '152', '315', '4', 'None', 'JNTU', 'ECE', '7.5', '100', '0')
(5863, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '161', '146', '307', '4', '97', 'Amrita School of Engineering', 'Electronics and Communication', '9.01', '10', '48')
(5864, 'Arizona State University', '6', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2014', '158', '157', '315', '4', '116', 'Goa University', 'Civil Engineering', '6.8', '100', '0')
(5865, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2013', '159', '143', '302', '3', '94', 'Jaypee Institute of Information Technology', 'Electronics and Communication', '7', '10', '0')
(5866, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '159', '157', '316', 'None', '111', 'VTU', 'CSE', '7.5', '100', '0')
(5867, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '740', '440', '1180', '2.5', '90', 'Pondicherry Engineering College', 'ECE', '8.25', '10', '0')
(5868, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '143', '305', '4', '106', 'GITAM', 'ECE', '7.57', '10', '0')
(5869, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '149', '310', '2.5', '92', 'University of Pune', 'Electronics and Telecommunication', '8.57', '10', '0')
(5870, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '165', '151', '316', '3', '95', 'Uni. Of Pune VIIT', 'E&TC;', '6.7', '100', '0')
(5871, 'Arizona State University', '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '159', '144', '303', '3', '101', 'Anna University', 'Mechanical Engineering', '8.2', '10', '0')
(5872, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '154', '317', '4', '110', 'Priyadarshini College of Engineering', 'Computer Technology', '6.3149999999999995', '100', '0')
(5873, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '770', '360', '1130', '3.5', '111', 'Anna University', 'Computer Science & Engg', '7.9', '100', '0')
(5874, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '151', '313', '3', '93', 'University of Mumbai', 'Computer Science', '6.2299999999999995', '100', '36')
(5875, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '570', '1370', '3.5', '99', 'BIT Mesra', 'Mechanical Engineering', '7.1', '100', '0')
(5876, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '160', '153', '313', '3.5', '100', 'NMU', '0', '6.1', '100', '0')
(5877, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '168', '152', '320', '3', '103', 'Velammal Engineering College', 'Electronics and Communication', '8.8', '100', '0')
(5878, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2012', '740', '490', '1230', '4', '105', 'Manipal Institue of Technology', 'Electronics & Coomunication', '8.59', '10', '0')
(5879, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '710', '480', '1190', '4', '109', 'MU', 'ELECTRONICS', '6.7', '100', '0')
(5880, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '167', '154', '321', '4', '113', 'univ of kerala', 'ec', '8.8', '10', '0')
(5881, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2008', '800', '430', '1230', '3.5', '104', 'Dhirubhai Ambani Institute of Information & Communication Technology', 'Information and Communication Technology', '9.18', '10', '0')
(5882, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '152', '319', '3', '100', 'NIT Calicut', 'Electrical Engg', '7.6', '10', '0')
(5883, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '161', '162', '323', '4', '110', 'VTU', 'Electronics and Communication', '6.295', '100', '0')
(5884, 'Arizona State University', '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '157', '146', '303', '2.5', 'None', 'Madras Institute of Technology', 'ECE', '6.5', '10', '0')
(5885, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '151', '312', '3', '112', 'VTU', 'eee', '7', '100', '0')
(5886, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '730', '620', '1350', '4', '111', 'Bangalore Institute of Technology', 'Electronics and Communication', '5.85', '100', '0')
(5887, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '620', '1420', '3', '97', 'MU', 'Electronics & Telecommunications', '6.07', '100', '0')
(5888, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '160', '141', '301', '3', '90', 'Anna University', 'ECE', '8', '100', '0')
(5889, 'Arizona State University', '6', 'Reject', 'MS', 'Manufacturing Engineering', 'Fall ', '2014', '156', '145', '301', '3', '83', 'DBIT', 'Mechanical', '5.872', '100', '34')
(5890, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '159', '141', '300', '3', '91', 'BVBCET', 'Computer and Information Science', '8.55', '10', '0')
(5891, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '750', '420', '1170', '3.5', '100', 'RGPV', 'Computer', '6.5', '100', '0')
(5892, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '160', '149', '309', '3.5', '109', 'Pune University', 'Electronics &Telecommunication;', '7.4', '100', '0')
(5893, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '168', '158', '326', '4', '110', 'University of Pune', 'Computer Engineering', '5.9', '100', '0')
(5894, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '160', '156', '316', '4', '112', 'Panjab University', 'Computer Science and Engineering', '7.2', '100', '28')
(5895, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '163', '148', '311', '3', '91', 'Panjab University', 'ECE', '8.22', '100', '0')
(5896, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '160', '144', '304', '3.5', '98', 'RNSIT', 'Computer Science', '7.5', '100', '0')
(5897, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '165', '145', '310', '3', '95', 'Sardar Patel University', 'Electronics', '3.5', '4', '0')
(5898, 'Arizona State University', '6', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '157', '147', '304', '3', '102', 'VIT', 'IT', '7.93', '10', '0')
(5899, 'Arizona State University', '6', 'Reject', 'MS', 'Chemical Engineering', 'Fall ', '2013', '164', '154', '318', '3', '93', 'NIT Calicut', 'CHEMICAL ENGINEERING', '7.42', '10', '0')
(5900, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '149', '310', '2.5', 'None', 'Coimbatore Insitute of Technology', 'Electronics and Communitaion', '6.76', '10', '0')
(5901, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '740', '420', '1160', '3', '105', 'None', 'ECE', '8.27', '100', '0')
(5902, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '167', '153', '320', '3.5', '110', 'Panjab University', 'Electronics and communication', '8.16', '10', '0')
(5903, 'Arizona State University', '6', 'Reject', 'MS', 'Wireless communications', 'Fall ', '2014', '163', '154', '317', '3.5', '104', 'JNTU', 'Electronics and Communication', '8.364', '100', '42')
(5904, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '165', '144', '309', '3', '85', 'JNTU', 'ece', '7.75', '100', '0')
(5905, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '158', '142', '300', '3', '83', 'Pune University', 'computer engineering', '6.415000000000001', '100', '0')
(5906, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '400', '1200', '2.5', '102', 'K J Somaiya College of Engiineering', 'Electronics', '6.2', '100', '0')
(5907, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '165', '155', '320', '3.5', '104', 'MU', 'Electrical Engineering', '7.1', '100', '30')
(5908, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science/ Mgmt', 'Spring ', '2014', '165', '155', '320', '4', '112', 'JNTU', 'Biotechnology', '7.114', '100', '0')
(5909, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '168', '147', '315', '3.5', '96', 'VIT', 'ELECTRONICS AND COMMUNICATION', '8.35', '10', '0')
(5910, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '156', '151', '307', '3.5', '103', 'md university rohtak', 'ece', '7.5200000000000005', '100', '0')
(5911, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '490', '730', '1220', '3', '104', 'University of Pune', 'electronics and telecommunication', '6.2490000000000006', '100', '0')
(5912, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '158', '143', '301', '3', '90', 'RGTU', 'Electronics and communication', '8.39', '10', '0')
(5913, 'Arizona State University', '6', 'Reject', 'MS', 'Embedded systems', 'Fall ', '2012', '154', '147', '301', '3.5', '99', 'KSIT Visvesvaraya Technological University', 'Electronics & Communication', '7.2', '100', '0')
(5914, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '161', '149', '310', '4', '117', 'Gujarat Technological University', 'ELECTRONICS AND COMMUNICATION', '9.13', '10', '20')
(5915, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '159', '147', '306', '3', '96', 'K J Somaiya College of Engiineering', 'ETRX', '6.75', '100', '0')
(5916, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '340', '1140', '4.5', '111', 'VTU', 'CS', '7', '100', '0')
(5917, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall', 'None', '163', '155', '318', '3.5', '99', 'Madras Institute of Technology', 'ECE', '8.74', '10', '0')
(5918, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '159', '154', '313', '4', '110', 'VIT', 'ECE', '8.34', '10', '0')
(5919, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '165', '162', '327', '3', '109', 'Sri Venkateswara College of Engineering', 'EEE', '7.11', '10', '0')
(5920, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '160', '142', '302', '3', '86', 'Cochin University of Science and Technology', 'Computer Science', '7.8', '100', '0')
(5921, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '150', '311', 'None', '95', 'Amrita School of Engineering', 'ECE', '7.9', '10', '0')
(5922, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '156', '149', '305', '3', '81', 'Walchand College Of Engineering', 'Computer sci and engg', '5.803', '100', '0')
(5923, 'Arizona State University', '6', 'Reject', 'MS', 'Information Security', 'Fall ', '2011', '770', '430', '1200', '3.5', '97', 'Amrita School of Engineering', 'Computer Science', '7.5', '10', '0')
(5924, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '720', '450', '1170', '3', '84', 'Anna University', 'electronics and instrumentation', '6.6', '100', '0')
(5925, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '167', '146', '313', 'None', '88', 'Madras Institute of Technology', 'information technology', '8.6', '10', '0')
(5926, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '165', '156', '321', '4', '103', 'SASTRA', 'Computer Science', '7.04', '10', '0')
(5927, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '163', '150', '313', '4', '106', 'Global Academy of Technology', 'Electrical & Electronics Engineering', '7.76', '100', '0')
(5928, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '168', '149', '317', '3', '102', 'BVM Engineering College', 'Electronics and Telecommunication', '7.7', '10', '0')
(5929, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '630', '450', '1080', '3.5', '95', 'HKBKCE', 'Computer Science', '0.75', '100', '0')
(5930, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '150', '313', '4', '106', 'Amrita School of Engineering', 'Computer Science Engineering', '7.36', '10', '0')
(5931, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '157', '146', '303', '3.5', '91', 'Kurukshetra University', 'CSE', '6.76', '100', '0')
(5932, 'Arizona State University', '6', 'Reject', 'MS', 'Management of Technology', 'Fall ', '2013', '158', '147', '305', '3', '92', 'VTU', 'ECE', '8.13', '10', '0')
(5933, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', 'None', 'None', '0', '3.5', '106', 'None', 'CSE', '0.755', '100', '36')
(5934, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '141', '305', '4', '102', 'GRIET', 'Information Technology', '0', '0', '0')
(5935, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2013', '160', '140', '300', '3', '81', 'Andhra University', 'ECE', '8.2', '10', '0')
(5936, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '156', '150', '306', '3.5', '99', 'VTU', 'EC', '7.5', '100', '0')
(5937, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Spring ', '2013', '164', '149', '313', '3.5', '99', 'Govt. Engineering College Trichur[University of Calicut]', 'Electrical & Electronics Engineering', '7', '100', '0')
(5938, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '158', '152', '310', '3', '107', 'N I E Mysore', 'Computer Science and Engineering', '9.24', '10', '41')
(5939, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '165', '157', '322', '3', 'None', 'None', '0', '8.68', '10', '0')
(5940, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '164', '150', '314', '3', '103', 'Indus Inst. of Tech. and Eng.', 'E.C.', '8.77', '10', '0')
(5941, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '730', '380', '1110', '3', '93', 'MU', '0', '6.3', '100', '0')
(5942, 'Arizona State University', '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2007', '730', '440', '1170', '3.5', '240', 'PSG College of Technology', 'Automotive Engg', '8.11', '10', '0')
(5943, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '152', '314', '4', '107', 'VTU', 'ECE', '7.8', '100', '0')
(5944, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '640', '1440', '3', '108', 'Amrita School of Engineering', 'Information Technology', '7.1', '10', '0')
(5945, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Electronics', 'Fall ', '2014', '158', '152', '310', '3', 'None', 'SSN College of Engineering', 'EEE', '8.1', '100', '0')
(5946, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '750', '430', '1180', '4', '109', 'BIT Mesra', 'Electronics and Communication', '7.92', '10', '0')
(5947, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '165', '156', '321', '4', '114', 'VTU', 'ece', '7.6', '100', '0')
(5948, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '165', '152', '317', '3.5', '104', 'University of Mumbai', 'Electronics Engineering', '6.667', '100', '0')
(5949, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '470', '1250', '3', '106', 'MU', 'Instrumentation', '6.284000000000001', '100', '0')
(5950, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2012', '730', '500', '1230', '3', '91', 'B.V.Bhoomraddi College', 'Electrical & Electronics', '8.26', '10', '0')
(5951, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '161', '151', '312', '4', '109', 'PESIT', 'Telecommunication', '8.46', '10', '0')
(5952, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '800', '670', '1470', '4', '116', 'VTU', 'Electrical Engineering', '7.2', '100', '0')
(5953, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '160', '150', '310', 'None', '110', 'Anna University', 'ECE', '8.46', '10', '16')
(5954, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2013', '158', '142', '300', '3', '95', 'Rajasthan Technical University', 'ECE', '6.2', '100', '0')
(5955, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '161', '140', '301', '3.5', '100', 'Sir MVIT', 'Electronics & Communication', '8.15', '100', '0')
(5956, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '700', '480', '1180', '3.5', '99', 'SSN College of Engineering', 'Computer science and engineering', '7.2', '100', '0')
(5957, 'Arizona State University', '6', 'Reject', 'MS', 'Computational Science', 'Fall ', '2014', '154', '149', '303', '3.5', '94', 'RKDF IST', 'IT', '7.4', '100', '0')
(5958, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '790', '410', '1200', '3.5', '109', 'Anna University', 'Computer Science and Engineering', '7.1', '10', '0')
(5959, 'Arizona State University', '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2011', '730', '530', '1260', '3', '93', 'Uni of Mumbai', 'Production', '5.89', '100', '0')
(5960, 'Arizona State University', '6', 'Reject', 'MS', 'Materials Science & Engineering', 'Fall ', '2014', '158', '154', '312', '2.5', '107', 'NIT Rourkela', 'Ceramic Engineering', '6.8', '10', '33')
(5961, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2006', '800', '650', '1450', '4', '277', 'MU', 'Electronics', '6.2', '100', '0')
(5962, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '159', '154', '313', '4', '105', 'Bangalore Institute of Technology', 'Electronics and Communcication Engineering', '6.82', '100', '0')
(5963, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '153', '156', '309', '4', '111', 'None', 'Computer Science', '7', '10', '30')
(5964, 'Arizona State University', '6', 'Reject', 'MS', 'MIS', 'Fall ', '2015', '154', '142', '296', '3', '80', 'UPTU', 'CSE', '6.1', '100', '0')
(5965, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '158', '151', '309', '4', '110', 'None', 'Information Technology', '8.1', '10', '0')
(5966, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2007', '790', '560', '1350', '4', '273', 'SVCE', 'Comp Science', '7.33', '100', '0')
(5967, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '148', '310', '2.5', '92', 'University of Pune', 'IT', '6', '100', '25')
(5968, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '163', '150', '313', '3', '99', 'NIT SILCHAR ASSAM INDIA', 'ELECTRICAL ENGINEERING', '6.93', '10', '0')
(5969, 'Arizona State University', '6', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2013', '156', '142', '298', '3', '97', 'SIES Graduate School of Technology', 'EXTC', '0', '0', '0')
(5970, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '158', '147', '305', '4', '7', 'Osmania University', 'ECE', '8.120000000000001', '100', '0')
(5971, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '152', '145', '297', '3', '98', 'None', '0', '8.7', '10', '0')
(5972, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '560', '1350', '3.5', '114', 'BITS Pilani', 'CSIS', '0', '0', '0')
(5973, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '158', '146', '304', '3', '95', 'UVCE', 'Electronics and Communications', '7.715999999999999', '100', '0')
(5974, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '690', '590', '1280', '3', '104', 'SASTRA', 'IT', '0.8119999999999999', '100', '0')
(5975, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2014', '160', '151', '311', '2.5', '0', 'VR Siddhartha Engineering College Vijayawada', 'Electronics & Instrumentation', '8.53', '100', '0')
(5976, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '157', '324', '4.5', '109', 'Jaypee Institute of Information Technology', 'Computer Science', '8', '10', '36')
(5977, 'Arizona State University', '6', 'Reject', 'MS', 'Electronic and Telecommunication Engineering', 'Fall ', '2014', '156', '145', '301', '3.5', 'None', 'SCSVMV University', 'ECE', '8.88', '10', '0')
(5978, 'Arizona State University', '6', 'Reject', 'MS', 'Information Security', 'Fall ', '2014', '159', '149', '308', '3', '103', 'SASTRA', 'Computer Science', '7.5', '10', '0')
(5979, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '700', '430', '1130', '3.5', 'None', 'S.V.C.E', 'EEE', '7.3', '100', '0')
(5980, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '145', '309', '3.5', '98', 'Pune University', 'Information technology', '6.3', '100', '0')
(5981, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '162', '154', '316', '3.5', '114', 'VTU', 'Electronics and Communication', '8.31', '10', '0')
(5982, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '157', '149', '306', '3', '103', 'Thakur College of Engineering and Technology', 'IT', '5.8', '100', '12')
(5983, 'Arizona State University', '6', 'Reject', 'MS', 'MIS', 'Spring ', '2016', '158', '149', '307', '4', '101', 'University of Mumbai', 'Computers', '6.5', '100', '25')
(5984, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '760', '640', '1400', '4', '112', 'MU', 'EXTC', '5.9', '100', '0')
(5985, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '550', '1320', '4', '103', 'SVCE', 'CSE', '7.2', '100', '0')
(5986, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '160', '147', '307', '3', '86', 'MDU', 'MCA', '7.4', '100', '45')
(5987, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '157', '144', '301', '3', '80', 'Dr.Ambedkar Institute of Technology', 'Electronics and Communication', '8.92', '10', '0')
(5988, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '160', '144', '304', '3', '91', 'VTU', 'Electronics and Communication', '8.12', '10', '0')
(5989, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '740', '610', '1350', '4', '107', 'VTU', 'Electronics and Communication', '7.1', '100', '0')
(5990, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', 'None', 'None', '0', 'None', 'None', 'VTU', 'Electronics & Communication', '7.05', '100', '77')
(5991, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '780', '540', '1320', '3', '104', 'CoE Trivandrum', 'ECE', '7.85', '10', '0')
(5992, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '166', '150', '316', '3.5', '110', 'Pune University', 'Electronics and Telecommunication', '7', '100', '0')
(5993, 'Arizona State University', '6', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2011', '800', '610', '1410', '3.5', '109', 'Anna University', 'Information Technology', '7.7', '100', '0')
(5994, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '161', '157', '318', '3', '108', 'GKV', 'ECE', '7.6', '100', '0')
(5995, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '530', '1330', '4.5', '114', 'RTM Nagpur University', 'Electronics and Communication Engg.', '6.24', '100', '0')
(5996, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2012', '790', '480', '1270', '4', '109', 'VTU', 'ECE', '7.01', '100', '0')
(5997, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '149', '307', '3', '94', "St Joseph's College of Engineering", 'Electronics And Communication', '7.545', '100', '0')
(5998, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '144', '302', '3', '91', 'MU', 'I.T', '7.478', '100', '0')
(5999, 'Arizona State University', '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '163', '149', '312', '4.5', '106', 'MU', '0', '5.8', '100', '0')
(6000, 'Arizona State University', '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '158', '153', '311', '4', '100', 'Nit Allahabad', 'Mechanical Engineering', '6.02', '10', '43')
(6001, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '800', '360', '1160', '3', '103', 'MU', 'Electronics and Communicatiion', '7.128', '100', '0')
(6002, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Graphics and Game Technology', 'Fall ', '2013', '161', '155', '316', '3', '107', 'VTU', 'Electronics & Communication', '7.8', '100', '0')
(6003, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '162', '325', '4', '111', 'University of Kerala', 'Computer Science', '8.1', '10', '36')
(6004, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '620', '1420', '4', '103', 'BMSCE', 'Electronics and Communications', '6.81', '100', '0')
(6005, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '157', '152', '309', '3', '104', 'MU', 'EXTC', '7.048', '100', '12')
(6006, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '161', '151', '312', '4', '101', 'Rajasthan Technical University', 'Electronics & Communication Engg', '7.01', '100', '0')
(6007, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '157', '152', '309', '3', '103', 'Nagpur University', 'Computer Technology', '7.12', '100', '0')
(6008, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '150', '311', '3.5', '94', 'NIT Paatna', 'ELECTRICAL ENGINEERING', '8.57', '10', '0')
(6009, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Spring ', '2013', '790', '600', '1390', '3', 'None', 'Shri Guru Gobind Singhji Institute of Engineering And Technology', 'Electronics and Telecommunication', '7.7', '10', '0')
(6010, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '160', '322', '3.5', '113', 'Pune University', 'Computer Engineering', '3.36', '4', '31')
(6011, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '400', '1190', '3.5', '100', 'Anna University', 'CS', '7.6', '100', '0')
(6012, 'Arizona State University', '6', 'Reject', 'MS', 'CS / MSIS / ITM', 'Fall ', '2015', '170', '152', '322', '3.5', '97', 'Manipal Institue of Technology', 'Chemical', '6.64', '10', '56')
(6013, 'Arizona State University', '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '157', '149', '306', '3.5', '94', 'Velammal Engineering College', 'Production Engineering', '7.9', '10', '2')
(6014, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '770', '690', '1460', '3', '105', "Vivekanand Educational Society's Institute Of Technology Mumbai", 'Electronics and Telecommunication', '6.5', '100', '0')
(6015, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '156', '145', '301', '3', '92', 'Dr Ambedkar Institute of Technology', 'Telecommunications', '8.257', '100', '0')
(6016, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '164', '149', '313', '3', '104', 'Nirma Institute of Technology', 'Electronics and Communication Engineering', '8.1', '10', '0')
(6017, 'Arizona State University', '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2011', '720', '440', '1160', '3', '105', 'JNTU', 'Mechanical', '6.2', '100', '0')
(6018, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '160', '144', '304', '3', '98', 'KLE College of Engineering and Technology Belgaum', 'Electronics and Communication', '6.626', '100', '0')
(6019, 'Arizona State University', '6', 'Reject', 'MS', 'Communication Engineering', 'Fall ', '2014', '159', '150', '309', '3', '93', 'UPTU', 'Electronics & Communication', '7', '100', '0')
(6020, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2014', '168', '152', '320', '3.5', 'None', 'mharana pratap college of technology gwalior', 'Electrical', '7.4799999999999995', '100', '0')
(6021, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Electronics', 'Fall ', '2013', '164', '152', '316', 'None', '112', 'FRCRCE', 'Electronics', '7', '100', '0')
(6022, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and electrical engineering', 'Fall ', '2013', '162', '160', '322', '4', '113', 'BMSCE', 'ECE', '7.8', '100', '0')
(6023, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '161', '156', '317', '4', '115', 'Manipal Institue of Technology', 'Electronics and Communication', '8.62', '10', '26')
(6024, 'Arizona State University', '6', 'Reject', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(6025, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '540', '1340', '4', '105', 'University of Mumbai', 'Electronics & Telecommunication', '6.1', '100', '0')
(6026, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '154', '152', '306', '3', '109', 'MU', 'ELECTRICAL', '7', '100', '0')
(6027, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical & Computer Engg/MIS/Industrial/Systems Engg', 'Fall ', '2014', '156', '147', '303', '4', '104', 'Anna University', 'EEE', '8.025', '100', '29')
(6028, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '165', '147', '312', '3.5', '99', 'PSG College of Technology', 'Electronics and Communication', '8.55', '10', '34')
(6029, 'Arizona State University', '6', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2014', '157', '156', '313', '4', '114', 'National University of Sciences and Technology', 'Mechatronics Engineering', '2.67', '4', '0')
(6030, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '720', '420', '1140', '4', '106', 'Pune University', 'E&TC;', '0', '0', '0')
(6031, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '610', '1410', '3', '108', 'MU', 'Electronics and Telecom', '6.6', '100', '0')
(6032, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '150', '312', '3', '105', 'Dharamsinh Desai University', 'Information Technology', '8.17', '10', '9')
(6033, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '168', '155', '323', '4', '119', 'Amrita Vishwa Vidhyapeetham', 'ECE', '8.79', '10', '0')
(6034, 'Arizona State University', '6', 'Reject', 'MS', 'Mathematics', 'Fall ', '2011', '780', '530', '1310', '3.5', '100', 'ISM Dhanbad', 'Applied Mathematics', '8.43', '10', '0')
(6035, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '156', '157', '313', '4', '112', 'Siksha O Anusandhan University', 'Electronics & Communication Engineering', '7.69', '10', '0')
(6036, 'Arizona State University', '6', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2011', '1310', '550', '1860', '3.5', '103', 'CUSAT', 'Civil', '7.9', '100', '0')
(6037, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '158', '152', '310', '3', '113', 'Goa University', 'Electronics and Telecommunications', '7', '100', '40')
(6038, 'Arizona State University', '6', 'Reject', 'MS', 'Industrial Engineering', 'Spring ', '2015', '160', '150', '310', '3.5', '88', 'KL University', 'Mechanical', '7.3', '10', '9')
(6039, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2014', '162', '151', '313', '3', '101', 'Amrita Vishwa Vidhyapeetham', 'Electronics and Instrumentation Engineering', '7.48', '10', '43')
(6040, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '162', '151', '313', '3.5', '112', 'VIT', 'Electronics and Communication', '0.893', '100', '24')
(6041, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '162', '151', '313', '3.5', '101', 'University of Pune', 'IT', '6.4', '100', '0')
(6042, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '160', '146', '306', '3.5', '106', 'Madras Institute of Technology', 'Information Technology', '8.2', '10', '54')
(6043, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '147', '308', '3.5', '109', 'VIT University', 'ECE', '8.45', '10', '0')
(6044, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '160', '153', '313', '4', '102', 'Sri Venkateswara College of Engineering', 'EEE', '7.5', '10', '0')
(6045, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2016', '800', '650', '1450', '3.5', '114', 'Manipal Institue of Technology', 'Electronics and Communications', '3.61', '4', '8')
(6046, 'Arizona State University', '6', 'Reject', 'MS', 'Computational Biology', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'Master of Technology Anticipated graduation July 2013 Jawaharlal Nehru Univesity ', 'School of computational and systems biology', '8.15', '10', '0')
(6047, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '165', '148', '313', '3', '89', 'Sreenidhi Institute of Science & Technology', 'ECE', '8.2', '100', '0')
(6048, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '165', '148', '313', '3', '89', 'Sreenidhi Institute of Science & Technology', 'ECE', '8.2', '100', '0')
(6049, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '155', '152', '307', '3', '105', 'Reva Institute of Technology', 'Computer Science', '7.340000000000001', '100', '0')
(6050, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '500', '1300', '3', '102', 'SSN College of Engineering', 'EEE', '8.218', '10', '0')
(6051, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '166', '152', '318', '4', '108', 'Govt. Engineering College Thrissur Calicut University', 'Electronics and Communication', '7.709999999999999', '100', '0')
(6052, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '161', '155', '316', '3', '103', 'RGTU', 'IT', '7.3', '100', '0')
(6053, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '151', '313', '3.5', '106', 'MU', 'Computer Engineering', '6.025', '100', '58')
(6054, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '770', '600', '1370', '3.5', '104', 'MU', 'CE', '7', '100', '0')
(6055, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '158', '147', '305', '3.5', '100', 'Pune University', 'Computer Science', '6.2', '100', '0')
(6056, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '168', '149', '317', '3.5', '105', 'Anna University', 'ECE', '7.567', '10', '0')
(6057, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '156', '138', '294', '3.5', '92', 'M.D.U.', 'Computer science', '6.6', '100', '0')
(6058, 'Arizona State University', '6', 'Reject', 'MS', 'Civil Engineering', 'Spring ', '2016', '157', '143', '300', '3', '84', 'Anna University', 'civil engineering', '6.3', '10', '0')
(6059, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '162', '153', '315', '3', '103', 'NITK Surathkal', 'ECE', '8.82', '10', '30')
(6060, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '166', '152', '318', '4', '111', 'NITK Surathkal', 'Electrical & Electronics', '8.3', '10', '24')
(6061, 'Arizona State University', '6', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2013', '159', '151', '310', '3', '109', 'MU', 'Electronics and telecom', '6.45', '100', '0')
(6062, 'Arizona State University', '6', 'Reject', 'MS', 'MIS', 'Fall ', '2015', '165', '154', '319', '3.5', '107', 'R V College of Engineering', 'Telecom', '6.29', '100', '60')
(6063, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '580', '1350', '4', '112', 'SSIT VTU', 'IT', '6.9', '100', '0')
(6064, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2012', '770', '630', '1400', '3', '104', 'Technological Edu. Institute of Piraeus', 'Electrical Engineering', '6.49', '10', '0')
(6065, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '168', '153', '321', '3', '104', 'BITS Pilani', 'Computer Science', '7.2', '10', '0')
(6066, 'Arizona State University', '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '161', '146', '307', '3', '99', 'COEP', 'Instrumentation & Control', '7.57', '10', '20')
(6067, 'Arizona State University', '6', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2008', '780', '560', '1340', '4', '108', 'Aeronautical Society of India', 'Aerospace', '5.827', '100', '0')
(6068, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '510', '1300', '3', '91', 'K J Somaiya College of Engiineering', 'Electronics & Telecom', '6.1', '100', '0')
(6069, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '168', '150', '318', '2.5', '95', 'SRM', 'EEE', '9.15', '10', '0')
(6070, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '151', '313', '3.5', '98', 'DMCE University of Mumbai', 'Electronics', '5.7', '100', '0')
(6071, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '168', '154', '322', '3', '96', 'L D College Of Engineering', 'COMPUTER', '7.24', '10', '12')
(6072, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2013', '163', '148', '311', '3', '100', 'Sardar Vallabhbhai National Institute of Technology', 'Electrical Engineering', '7.84', '10', '0')
(6073, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '170', '156', '326', '3', '107', 'IIT Bombay', 'Electical Engineering', '7.81', '10', '0')
(6074, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '164', '149', '313', '4', '104', 'VTU', 'Instrumentation Tech.', '7.8', '100', '24')
(6075, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '750', '450', '1200', '3', '104', 'nrec', 'ece', '8.3', '100', '0')
(6076, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '146', '307', '3.5', '100', 'Jain University', 'Electronics & Communication', '7.114', '100', '0')
(6077, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '141', '300', '2.5', 'None', 'JNTU', 'CSE', '7.8', '100', '0')
(6078, 'Arizona State University', '6', 'Reject', 'MS', 'Information Assurance', 'Fall ', '2013', '159', '150', '309', '3', '92', 'RTU', 'IT', '6.2', '100', '0')
(6079, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '157', '150', '307', '3', '95', 'Amity University', 'CSE', '8.35', '10', '0')
(6080, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '158', '150', '308', '4', '101', 'VTU', 'Electronics & Communication', '6.95', '100', '0')
(6081, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '790', '610', '1400', '3', '98', 'NIT Warangal', 'Electronics and Communication Engineering', '7.64', '10', '0')
(6082, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '161', '153', '314', '3.5', '99', 'MU', 'EE', '7.2', '100', '0')
(6083, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '730', '450', '1180', '3', '105', 'Sri Sairam Engineering College', 'Electronics and communication', '8.4', '100', '0')
(6084, 'Arizona State University', '6', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '152', '152', '304', '3', '83', 'VTU', 'Mechanical', '7', '100', '0')
(6085, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '158', '149', '307', '2', '90', 'VIT Pune', 'Electronics', '6.345000000000001', '100', '0')
(6086, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2014', '165', '149', '314', '3', 'None', 'KLEF UNIVERSITY', 'EEE', '7.01', '10', '0')
(6087, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '160', '154', '314', '3.5', '109', 'SASTRA', 'ECE', '7.704', '10', '0')
(6088, 'Arizona State University', '6', 'Reject', 'MS', 'Biomedical Engineering', 'Fall ', '2014', '159', '146', '305', '3', '95', 'D j Sanghvi', 'Biomedical engineering', '3.5', '4', '0')
(6089, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '750', '570', '1320', '3.5', 'None', 'Manipal Institue of Technology', 'ECE', '8.53', '10', '0')
(6090, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '730', '540', '1270', '4', '98', 'MU', 'Computer', '6.32', '100', '0')
(6091, 'Arizona State University', '6', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Spring ', '2015', '159', '149', '308', '3', '95', 'Vaish College of Engineering', 'IT', '7.31', '100', '30')
(6092, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '161', '140', '301', '2.5', '99', 'VTU', 'ECE', '9.53', '10', '12')
(6093, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and computer science', 'Fall ', '2011', '800', '410', '1210', '4', '104', 'NITK Surathkal', 'Electrical and Electronics', '8.01', '10', '0')
(6094, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '162', '147', '309', '4', '104', 'Anna University', 'EIE', '8.03', '10', '0')
(6095, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '152', '313', '3', '105', 'SASTRA', 'B.tech Mechatronics', '8', '10', '18')
(6096, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '148', '311', '3.5', '93', "Siksha 'O' Anusandhan University", 'Electrical and Electronics Engineering', '8.32', '10', '30')
(6097, 'Arizona State University', '6', 'Reject', 'MS', 'CS', 'Fall ', '2015', '157', '162', '319', '4', '105', 'Nirma Institute of Technology', 'Computer Engineering', '8.06', '10', '24')
(6098, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '156', '150', '306', '3', '104', 'Pune University', 'Electrical Engineering', '5.939', '100', '0')
(6099, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '159', '141', '300', '3', 'None', 'RMK Engineering College', 'Electronics and Communication', '7.6', '100', '0')
(6100, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '166', '157', '323', '4', '113', 'DDU', 'EC', '6.5200000000000005', '100', '0')
(6101, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Electronics', 'Fall ', '2012', '159', '155', '314', '3.5', '102', 'Sardar Patel University', 'Electronics & Communication', '3.45', '4', '0')
(6102, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '157', '152', '309', '3', '105', 'PICT', 'Information Technology', '7.353', '100', '0')
(6103, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '580', '1380', '4', '110', 'VTU', 'ECE', '7.62', '100', '0')
(6104, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2014', '162', '152', '314', '2.5', '100', 'ANU', 'ECE', '7.470000000000001', '100', '0')
(6105, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Spring ', '2014', '160', '159', '319', '4.5', '110', 'Anna University', 'ECE', '8.6', '100', '0')
(6106, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '164', '144', '308', '3.5', '99', 'VTU', 'Electronics and communication', '8.25', '100', '0')
(6107, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '152', '310', '3.5', '102', 'Mepco Schlenk Engineering College', 'Computer Science', '8.21', '10', '0')
(6108, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engg/ comp engg', 'Fall', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '20')
(6109, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '161', '150', '311', '3', '98', 'Fr. Conceicao Rodrigues College of Engineering', 'Electronics Engineering', '6.5', '100', '0')
(6110, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '161', '157', '318', '3', '101', 'VNR VJIET', 'Computer Science', '6.821', '100', '0')
(6111, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science/ Electronics and Communication', 'Fall ', '2015', '158', '152', '310', '3.5', '106', 'University of Pune', 'Electronics and Telecommunications', '5.8', '100', '92')
(6112, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '164', '136', '300', '2.5', '85', 'GITAM', 'CSE', '7.87', '10', '0')
(6113, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '168', '146', '314', '3', '103', 'Keio', 'electrical engineering', '3.6', '4', '96')
(6114, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2016', '161', '144', '305', 'None', '96', 'Vasavi College of Engineering', 'it', '7.5', '100', '0')
(6115, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2006', '780', '520', '1300', '4.5', '280', 'JNTU', 'Computer Science and Engineering', '6.7', '100', '0')
(6116, 'Arizona State University', '6', 'Reject', 'MS', 'microelectronics', 'Spring ', '2012', '750', '380', '1130', '3.5', '80', 'MBM Jodhpur India', 'ECE', '7.1', '100', '0')
(6117, 'Arizona State University', '6', 'Reject', 'MS', 'Chemical/Environmental Engg.', 'Fall ', '2006', '800', '530', '1330', '4.5', '293', 'G. H. Patel College of Engineering and Technology', 'Chemical Engineering', '8.35', '10', '0')
(6118, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '169', '148', '317', '3', '104', 'NIT Tirchy', 'Electronics and Communication', '7.77', '10', '36')
(6119, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '162', '156', '318', '4', '112', 'BNMIT', 'Electronics and communication', '7.15', '100', '0')
(6120, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2007', '750', '640', '1390', '4', '267', 'SIES Graduate School of Technology', 'COMPUTER', '6', '100', '0')
(6121, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '157', '155', '312', '3.5', '108', 'Thiagarajar College of engineering', 'ECE', '8.4', '10', '0')
(6122, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2013', '161', '154', '315', '3', '96', 'VTU', 'EC', '6.7', '100', '0')
(6123, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '162', '152', '314', '3', '90', 'B V Bhoomaraddi College of Engg & Tech (Affiliated to VTU)', 'Electronics and Communication', '9.1', '10', '0')
(6124, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '158', '147', '305', '3', '100', 'RNSIT', 'Electronics', '7.6', '100', '17')
(6125, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '160', '145', '305', '3.5', '104', 'S.J.B. Institute of Technology', 'Information Science and Engineering', '7.45', '100', '24')
(6126, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '161', '148', '309', '3', '90', 'BITS Dubai', 'ECE', '7.7', '10', '0')
(6127, 'Arizona State University', '6', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2014', '163', '149', '312', '3', '109', 'CBIT', 'Ece', '7.5', '100', '0')
(6128, 'Arizona State University', '6', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2015', '159', '150', '309', '4', '110', 'VIT University', 'School of Mechanical and Building Sciences', '7.64', '10', '13')
(6129, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '760', '640', '1400', '3.5', '113', 'MU', 'Elec and Telecom', '6.709999999999999', '100', '0')
(6130, 'Arizona State University', '6', 'Reject', 'MS', 'MIS/CS', 'Fall ', '2015', '161', '147', '308', '4', '94', 'SRM', 'EEE', '7.01', '10', '18')
(6131, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2008', '780', '640', '1420', '4.5', '102', 'Anna University', 'CSE', '8.1', '100', '0')
(6132, 'Arizona State University', '6', 'Reject', 'MS', 'CS', 'Fall ', '2014', '158', '153', '311', '3.5', '104', 'Guru Gobind Singh Indraprashta University', 'Computer Science Engg', '7.2', '100', '0')
(6133, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '161', '144', '305', '3', '93', 'Sri Krishna College Of Engineering And Technology', 'ECE', '7.75', '10', '0')
(6134, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '710', '430', '1140', '3', '95', "St Joseph's College of Engineering", 'cse', '7', '100', '0')
(6135, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '148', '309', '4', '103', 'CEG', 'Electronics and Communication', '7.97', '10', '27')
(6136, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '168', '149', '317', '3.5', '95', 'Nagpur University', 'Electronics Telecommunication', '7.2', '100', '0')
(6137, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2012', '740', '440', '1180', '3', '106', 'MU', 'Computer Engineering', '5.6049999999999995', '100', '0')
(6138, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '165', '148', '313', '3', '94', 'BITS Pilani', 'Electronics and Instrumentation', '5.81', '10', '0')
(6139, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '156', '147', '303', '3', '85', 'UPTU', 'Computer Science', '7.144', '100', '0')
(6140, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '163', '158', '321', '3.5', '111', 'VTU', 'Electronics and Communication', '8.2', '10', '32')
(6141, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2014', '163', '149', '312', '3', '91', 'Shri Guru Gobind Singhji Institute of Engineering And Technology', 'Electronics and Tele-communication', '7.93', '10', '0')
(6142, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '520', '1280', '3.5', '97', 'SJCE', 'Electronics and Communication', '6.3', '100', '0')
(6143, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '168', '152', '320', 'None', 'None', 'JSS Noida', 'Information Technology', '7', '100', '33')
(6144, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2016', '158', '151', '309', '3', '93', 'Mody University', 'MCA', '9.2', '10', '0')
(6145, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '164', '147', '311', '3', '94', 'B V Bhoomaraddi College of Engg & Tech (Affiliated to VTU)', 'Electronics & Communication', '8.91', '10', '20')
(6146, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '165', '151', '316', 'None', '112', 'Sri Venkateswara College of Engineering', 'EEE', '7.94', '10', '0')
(6147, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '700', '600', '1300', '4', '106', 'Amrita School of Engineering', 'Electronics & Communication', '7.56', '10', '0')
(6148, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '770', '310', '1080', '2.5', '93', 'Amity University', 'Computer Science and Engineering', '7.5', '10', '0')
(6149, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '162', '151', '313', '3.5', '112', 'VTU', 'ECE', '7.4159999999999995', '100', '58')
(6150, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2015', '163', '152', '315', '3', '104', 'Anna University', 'Electronics and Communication Engineering', '9.28', '10', '36')
(6151, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '166', '152', '318', '4', '112', 'MU', 'Electronics and Telecommunication', '6.296', '100', '0')
(6152, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '164', '155', '319', '3.5', '110', 'MGIT JNTU', 'ECE', '7.5200000000000005', '100', '0')
(6153, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2015', '800', '490', '1290', '3', 'None', 'NIT Warangal', 'eee', '7.92', '10', '0')
(6154, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '158', '147', '305', '3', '101', 'UVCE', 'ECE', '8.157', '100', '0')
(6155, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '156', '149', '305', '3.5', '97', 'RNSIT', 'Computer Science & Engineering', '8.1', '100', '0')
(6156, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '165', '152', '317', '3', '107', 'DA-IICT', 'Information and Communication Technology', '7.15', '10', '12')
(6157, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '148', '309', '3', '104', 'University of Madras', 'EEE', '8.1', '100', '0')
(6158, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '152', '318', '3', '103', 'Punjab Technical University', 'CSE', '7.5', '100', '0')
(6159, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '162', '154', '316', '3.5', '110', 'Jamia Millia Islamia', 'Electronics and Communication', '9.37', '10', '0')
(6160, 'Arizona State University', '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '590', '1390', '3.5', '105', 'Nagpur University', 'Mechanical', '7.1', '100', '0')
(6161, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '156', '147', '303', '4', '90', 'Velammal Engineering College', 'Department of Electronics and Instrumentation', '3.96', '5', '0')
(6162, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2008', '780', '470', '1250', '4.5', '111', 'Nagpur University', 'Electronics Engineering', '6.95', '100', '0')
(6163, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '800', '550', '1350', '3', '104', 'Jamia Millia Islamia', 'Computer Engineering', '7.23', '10', '0')
(6164, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '620', '530', '1150', '4', '103', 'Pune University', 'Information technology', '6.3', '100', '0')
(6165, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '153', '319', '4', '105', 'GLA Institute of Technology and Management', 'Electronics and Communication Engineering', '7.3', '100', '0')
(6166, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '154', '150', '304', '3', '91', 'VTU', 'Electronics and Communication', '7.3', '100', '0')
(6167, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '168', '159', '327', '4', '110', 'UPTU', 'ECE', '7.368', '100', '0')
(6168, 'Arizona State University', '6', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '770', '380', '1150', '3', '94', 'MU', 'Computer Engineering', '5.7780000000000005', '100', '0')
(6169, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Spring ', '2016', '161', '147', '308', '4', '105', 'JNTU', 'ECE', '8.16', '100', '0')
(6170, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', 'None', 'None', '0', 'None', '106', 'GITAM', 'Electronics and Communication', '7.15', '10', '0')
(6171, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '700', '530', '1230', '3.5', '104', 'None', 'Information Technology', '0', '100', '0')
(6172, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '164', '149', '313', '4', '102', 'UPTU', 'Electronics and Communication Engineering', '7.248', '100', '0')
(6173, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '160', '321', '4', 'None', 'MU', 'Computer Science', '6.13', '100', '0')
(6174, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '163', '145', '308', '3', '92', 'VTU', 'Electronics and Communication', '7.337999999999999', '100', '0')
(6175, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2010', '760', '520', '1280', '3.5', '110', 'MU', 'Computer Engineering', '6', '100', '0')
(6176, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '155', '317', '3.5', '103', 'Manipal Institue of Technology', 'Computer Science', '8.54', '10', '16')
(6177, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '163', '146', '309', 'None', '99', 'Global Academy Of Technology', 'Electronics and Communication', '7.2829999999999995', '100', '0')
(6178, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2015', '164', '154', '318', '4', '108', 'UPTU', 'Electronics and Communication Engineering', '7.42', '100', '39')
(6179, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Spring ', '2014', '158', '160', '318', '4.5', '110', 'Anna University', 'ECE', '8.3', '100', '0')
(6180, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '160', '153', '313', '3.5', '105', 'MRCE - affiliated to MDU', 'electronics and communication', '6', '100', '0')
(6181, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '153', '311', '3.5', '107', 'BIT Mesra', 'Computer Science Engineering', '7.42', '10', '0')
(6182, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '167', '151', '318', '3', '99', 'K J Somaiya College of Engiineering', 'Computers', '6.5', '100', '0')
(6183, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '167', '159', '326', '4.5', '117', 'BVDU', 'Electronics & Telecommunication', '6.3', '100', '0')
(6184, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2013', '156', '149', '305', '3.5', '100', 'SRR Engineering College', 'EEE', '7.94', '10', '0')
(6185, 'Arizona State University', '6', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '164', '156', '320', '3', '102', 'GITAM', 'E C E', '7.4', '10', '0')
(6186, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '740', '470', '1210', '3', '110', 'Bharati Vidyapeeth', 'ECE', '6.7', '100', '0')
(6187, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '143', '304', '2.5', '89', 'PESIT', 'Telecommunication', '6.5', '100', '0')
(6188, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '150', '308', 'None', 'None', 'PSG College of Technology', 'Computer Science', '7.97', '10', '0')
(6189, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '720', '570', '1290', '3.5', '95', 'SRM', 'Instrumenation & Control Engineering', '7.6', '10', '0')
(6190, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '156', '317', '3', '94', 'Rajiv Gandhi Prodyogiki Vishwavidyalaya', 'computer science', '8.32', '10', '0')
(6191, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '158', '145', '303', '3.5', '95', 'VTU', 'E&C;', '8.455', '100', '0')
(6192, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '164', '149', '313', '3.5', '100', 'SRM', 'eee', '8.637', '10', '0')
(6193, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '158', '148', '306', '3', '100', 'VTU', 'Instrumentation Technology', '7.7', '100', '0')
(6194, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '157', '145', '302', '3.5', '99', 'None', '0', '8.2', '100', '0')
(6195, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '160', '153', '313', '4', '108', 'VTU', 'Electrical and electronics', '7', '100', '0')
(6196, 'Arizona State University', '6', 'Reject', 'MS', 'Project Management', 'Fall ', '2014', '158', '148', '306', '3', '93', 'I.T.S. Engineering College- Gautam Buddha Tech University', 'Mechanical Engineering', '6.659999999999999', '100', '0')
(6197, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '154', '144', '298', 'None', '89', 'VTU', 'ECE', '7.8', '100', '0')
(6198, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '720', '550', '1270', '3', '90', 'Madras Institute of Technology', 'ECE', '8.9', '10', '0')
(6199, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '161', '146', '307', '3', '94', 'BITS Pilani', 'Msc Tech. Information Systems', '6.12', '10', '0')
(6200, 'Arizona State University', '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '740', '550', '1290', '3.5', '95', 'Vishwakarma Institute of Technology', 'Mechanical Engineering', '6.564', '100', '0')
(6201, 'Arizona State University', '6', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2014', '154', '146', '300', '3', '89', 'Bangalore Institute of Technology', 'Telecommunication (VTU)', '7.8', '100', '33')
(6202, 'Arizona State University', '6', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2014', '164', '161', '325', '4', '116', 'K J Somaiya College of Engiineering', 'Electronics and Telecommunication', '6.548', '100', '0')
(6203, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '165', '164', '329', '3.5', '110', 'St. Peters University', 'computer science', '8.5', '10', '17')
(6204, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '590', '1360', 'None', '105', 'Model Engineering College', 'Computer Science', '7.3', '100', '0')
(6205, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and computer engineering electrical engineering telecommunications engineering', 'Fall ', '2015', '166', '156', '322', '3.5', '109', 'Anna University', 'Electrical & Electronics Engineering', '7.79', '10', '0')
(6206, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2016', '160', '146', '306', '3.5', '102', 'None', 'Computer Science', '7.659999999999999', '100', '27')
(6207, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '330', '1080', '3.5', '93', 'VTU', 'CS', '7.13', '100', '0')
(6208, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '161', '145', '306', '3', '89', 'Rajasthan University', 'Electronics and Communication Engineering', '7.2', '100', '55')
(6209, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '700', '530', '1230', '3', '95', 'SSN College of Engineering', 'EEE', '8', '100', '0')
(6210, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '166', '148', '314', '3', '100', 'Pune University', 'Electronics & Telecom', '7', '100', '0')
(6211, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '160', '145', '305', '3', '95', 'CBIT', 'CSE', '7.840000000000001', '100', '12')
(6212, 'Arizona State University', '6', 'Reject', 'MS', 'Information Security', 'Fall ', '2011', '800', '430', '1230', '3.5', '94', 'Amrita School of Engineering', 'INFORMATION TECHNOLOGY', '7.22', '10', '0')
(6213, 'Arizona State University', '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '161', '157', '318', '3.5', 'None', 'IIT Kanpur', 'Industrial (M.tech)', '9.5', '10', '0')
(6214, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '800', '450', '1250', '4', '109', 'Coimbatore Insitute of Technology', 'EEE', '8.22', '10', '0')
(6215, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '800', '520', '1320', '3', '95', 'University of Mumbai', 'Electronics and Telecommunication', '6.8870000000000005', '100', '0')
(6216, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and computer science', 'Fall ', '2012', '740', '610', '1350', 'None', '112', 'University of Pune', 'ENTC', '6.0200000000000005', '100', '0')
(6217, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '163', '152', '315', '4', '100', 'CMRIT', 'Telecommunication', '7.7', '100', '0')
(6218, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '162', '166', '328', '5', '119', 'SRM', 'EEE', '8.2', '10', '0')
(6219, 'Arizona State University', '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '170', '151', '321', '4', '105', 'BITS Pilani', 'BE(Hons). Mechanical', '6.55', '10', '0')
(6220, 'Arizona State University', '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '490', '1290', '3', '102', 'MU', 'Mechanical', '5.5', '100', '0')
(6221, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2015', '167', '156', '323', '3.5', '116', 'RMD Engineering College Anna University', 'ECE', '8.7', '10', '6')
(6222, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '161', '148', '309', '3.5', 'None', 'MU', 'Computer', '6.8', '100', '0')
(6223, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '740', '620', '1360', '4', 'None', 'Delhi College Of Engineeing', 'Information Technology', '7.132', '100', '0')
(6224, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '165', '142', '307', '3.5', '98', 'Guru Gobind Singh Indraprashta University', 'computer Science and Engineering', '7.8', '100', '0')
(6225, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '160', '148', '308', '3', '100', 'Nagpur University', 'ELECTRONICS', '6.5', '100', '0')
(6226, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science and Engineering', 'Fall ', '2015', '162', '157', '319', '3', '114', 'JSS Noida', 'ECE', '6.11', '100', '24')
(6227, 'Arizona State University', '6', 'Reject', 'MS', 'MIS', 'Spring ', '2015', '159', '157', '316', '4', '116', 'UPTU', 'CSE', '7.023999999999999', '100', '24')
(6228, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '157', '141', '298', '3', '92', 'MDU', 'ECE', '7', '100', '0')
(6229, 'Arizona State University', '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '168', '157', '325', '3.5', '104', 'VCET', 'MEchanical', '6.4', '100', '12')
(6230, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '153', '316', '3', 'None', 'Jaypee Institute of Information Technology', 'IT', '7.5', '100', '17')
(6231, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '158', '146', '304', '3', '105', 'University of Pune', 'Information technology', '5.93', '100', '0')
(6232, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '152', '317', '4', '106', 'MU', 'Computer Engineering', '6.2', '100', '0')
(6233, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '155', '316', '4', '104', 'NIT Calicut', 'Electronics and Communication Engineering', '6.8', '10', '0')
(6234, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '790', '560', '1350', '3', 'None', 'VIT University', 'ECE', '8', '10', '0')
(6235, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '740', '600', '1340', '3.5', '103', 'JNTU', 'Computer science', '6.9', '100', '0')
(6236, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '159', '143', '302', '3', 'None', 'JNTU', 'Electronics and Communication', '7.5200000000000005', '100', '27')
(6237, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2007', '800', '670', '1470', '4.5', '290', 'VJTI', 'Electronics', '7.109999999999999', '100', '0')
(6238, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '156', '152', '308', '3', '106', 'Pune University', 'Computer Engg.', '6.023', '100', '0')
(6239, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '170', '151', '321', '4', '103', 'NITK Surathkal', 'EEE', '6.72', '10', '0')
(6240, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '168', '147', '315', '3', '91', 'Gujarat Technological University', 'Computer Engineering', '7.96', '10', '29')
(6241, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall', 'None', '168', '145', '313', '3', '93', 'NIT', 'ECE', '7.45', '10', '28')
(6242, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '740', '520', '1260', '3', '99', 'MSRIT', 'E&C;', '7.4', '100', '0')
(6243, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '510', '1300', '3', '98', 'PICT', 'IT', '6.4', '100', '0')
(6244, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '160', '143', '303', '2.5', '87', 'Sardar Vallabhbhai National Institute of Technology', 'Computer Engineering', '7.86', '10', '0')
(6245, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '600', '1380', '3.5', '111', 'Pune University', 'Electronics and Telecommunication', '6.8', '100', '0')
(6246, 'Arizona State University', '6', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2015', '160', '144', '304', '4', '101', 'MDU', 'Aeronautical Engineering', '7.3', '100', '0')
(6247, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics & Communication', 'Fall ', '2013', '162', '147', '309', '3.5', '99', 'VTU', 'Electroncis and communication', '7.2', '100', '0')
(6248, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '165', '164', '329', '4.5', '119', 'Dayananda Sagar College of Engineering', 'ece', '7.8', '100', '0')
(6249, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '152', '310', '4', 'None', 'National Institute of Engineerint VTU', 'Information Science', '0', '0', '0')
(6250, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '163', '144', '307', '3', '93', 'MAIT GGSIPU', 'Electrical and Electronics Engineering', '7.106999999999999', '100', '0')
(6251, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '158', '143', '301', '3', '106', 'MU', 'IT', '5.8', '100', '0')
(6252, 'Arizona State University', '6', 'Reject', 'MS', 'Bioinformatics', 'Fall ', '2013', '165', '146', '311', '3', '101', 'MANIT (NIT) Bhopal', 'Bioinformatics', '7.13', '10', '25')
(6253, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '160', '148', '308', '2.5', '103', 'Anna University', 'Instrumentation and Control', '8.7', '10', '0')
(6254, 'Arizona State University', '6', 'Reject', 'MS', 'Construction Management', 'Fall ', '2014', '168', '149', '317', '4', 'None', 'IIT Roorkee', 'Architecture and Planning', '6.22', '10', '61')
(6255, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Spring ', '2014', '160', '154', '314', '4.5', '104', 'NIT Warangal', 'Electronics & Communication Engineering', '7.3', '10', '0')
(6256, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '161', '148', '309', '3', '93', 'Anna University', 'EE', '8.99', '10', '0')
(6257, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '760', '600', '1360', '3.5', 'None', 'Shri Vaishnav Institute of Science and Technology Indore', 'Electronics and communication', '6.634', '100', '0')
(6258, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '153', '315', '3', '99', 'Amrita Vishwa Vidhyapeetham', 'Electronics & Communications', '8.52', '10', '0')
(6259, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '580', '1350', '3.5', '96', 'Pune University', 'Computer Science', '6.3', '100', '0')
(6260, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '159', '148', '307', '3', 'None', 'Vignan Institute of Technology and Science', 'School of Electronics', '8.6', '100', '0')
(6261, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '163', '153', '316', '3.5', '110', 'Anna University', 'Electronics and Communication', '8.15', '100', '0')
(6262, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '141', '304', '3', '87', 'JNTU', 'Information Technology', '8.1', '100', '20')
(6263, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '780', '590', '1370', '3.5', '102', 'Anna University', 'ece', '7.1', '100', '0')
(6264, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '13', '163', '153', '316', '4', '109', 'University of Pune', 'E&C;', '6.95', '100', '0')
(6265, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall', 'None', 'None', 'None', '0', 'None', 'None', 'University of Petroleum and Energy studies', 'EEE', '3.46', '4', '0')
(6266, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '800', '570', '1370', '3', '107', 'JNTU', 'ece', '8.059999999999999', '100', '0')
(6267, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '560', '1360', '4', '100', 'Rajasthan Technical University', 'Electronics Instrumentation & Control Engg', '6.7', '100', '0')
(6268, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '157', '152', '309', '3.5', '97', 'MU', 'Computer Science', '5.607', '100', '0')
(6269, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '164', '147', '311', '3', '95', 'GVP Vishakapatnam', 'Information Technology', '7.1', '100', '0')
(6270, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2016', '162', '156', '318', '3.5', '105', 'Maharishi Dayanand University', 'Electronics And Communication', '6.9', '100', '0')
(6271, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '720', '1520', '4', '115', 'VJTI', 'ELECTRICAL', '7.3', '10', '0')
(6272, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2006', '800', '640', '1440', '5.5', '287', 'MU', 'IT', '6.2', '100', '0')
(6273, 'Arizona State University', '6', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2010', '780', '610', '1390', '4', '106', 'Crescent Engineering College', 'Electrical and Electronics', '6.7', '100', '0')
(6274, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '760', '530', '1290', '3.5', '100', 'VIT', 'electronics and communication', '8.07', '10', '0')
(6275, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2008', '770', '370', '1140', '3.5', '99', 'Anna University', 'EIE', '7.4', '100', '0')
(6276, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '159', '147', '306', '3.5', '96', 'University of Mumbai', 'Electronics and Telecommunication', '5.8', '100', '0')
(6277, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '150', '313', '3', '103', 'NIT Surathkal', 'Computer Science', '7.1', '10', '0')
(6278, 'Arizona State University', '6', 'Reject', 'MS', 'Electronic and Telecommunication Engineering', 'Fall ', '2012', '790', '620', '1410', '3.5', '108', 'MU', 'Electronics and Telecommunication', '6.9', '100', '0')
(6279, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2006', '800', '610', '1410', '4.5', '270', 'MSRIT', 'CSE', '7.5', '100', '0')
(6280, 'Arizona State University', '6', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2014', '163', '145', '308', '3', '87', 'Amrita School of Engineering', 'ECE', '8.48', '10', '24')
(6281, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '600', '1400', '3', 'None', 'Thapar University', 'ECE', '8.8', '10', '0')
(6282, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '780', '610', '1390', '4', '108', 'MU', 'Computer Engnineering', '6.1', '100', '0')
(6283, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '160', '153', '313', '4.5', '110', 'School of Engineering and Technology - Jain University Bangalore', 'Electronics and Communications', '7.614', '100', '6')
(6284, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '156', '145', '301', '3', '94', 'Mahrishi Dayanand University', 'Electrical', '6.8', '100', '0')
(6285, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '750', '570', '1320', '3.5', '99', 'Coimbatore Insitute of Technology', 'CSE', '7.5', '10', '0')
(6286, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '160', '141', '301', '3.5', '95', 'SSN College of Engineering', 'ECE', '8.16', '10', '0')
(6287, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '150', '309', '3', '105', 'Madras Institute of Technology', 'Information Technology', '0.73', '100', '0')
(6288, 'Arizona State University', '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '160', '159', '319', '3.5', '111', 'MU', 'Automobile Engineering', '6.2', '100', '0')
(6289, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '169', '152', '321', '2', '101', 'BITS Pilani', 'ELECTRONICS & COMMUNICATIONS', '8.58', '10', '0')
(6290, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '160', '146', '306', '3', '100', 'Institute of Technical Education and Research', 'Computer Science', '7.35', '10', '0')
(6291, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '800', '560', '1360', '3', '90', 'IIIT Hyderabad', 'Computer Science', '6.46', '10', '0')
(6292, 'Arizona State University', '6', 'Reject', 'MS', 'Subsea Engineering', 'Fall ', '2014', '168', '147', '315', '2.5', '97', 'Panjab University', 'Mechanical', '7.6', '100', '20')
(6293, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '370', '1120', '3', '91', 'St thomas college of engg & tech(under West Bengal University of technology)', 'Information Technology', '8.37', '10', '0')
(6294, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '154', '162', '316', '4.5', '113', 'Walchand College Of Engineering', 'CSE', '8.06', '10', '16')
(6295, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '159', '155', '314', '3.5', '106', 'West Bengal University Of Technology', 'Computer Science and Engineering', '7.84', '10', '20')
(6296, 'Arizona State University', '6', 'Reject', 'MS', 'Biomedical Engineering', 'Spring ', '2013', '760', '470', '1230', '3', '102', 'SRM', 'Biomedical Engineering', '7.912', '10', '0')
(6297, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '157', '321', '4', 'None', 'Pune University', 'Computer Engineering', '7.1', '100', '0')
(6298, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '170', '155', '325', '3.5', '111', 'ASE Blr', 'ECE', '8.22', '10', '0')
(6299, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2009', '890', '450', '1340', '3', '103', 'SVCE', 'IT', '7', '100', '0')
(6300, 'Arizona State University', '6', 'Reject', 'MS', 'software engineering', 'Spring ', '2013', '720', '350', '1070', 'None', '104', 'MU', 'Masters of Engg I.T.', '7.1', '100', '0')
(6301, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '168', '159', '327', '3.5', '112', 'Bangladesh University of Engineering & Technology', 'Electrical and Electronic Engineering', '3.94', '4', '0')
(6302, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '165', '152', '317', '3', '101', 'BPUT', 'EEE', '8.57', '10', '0')
(6303, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '159', '158', '317', '3.5', '115', 'COEP', 'E&TC;', '6.37', '10', '14')
(6304, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '154', '315', '3.5', '106', 'Maharishi Dayanand University', 'ECE', '7', '100', '0')
(6305, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '162', '149', '311', '3.5', '110', 'Manipal Institue of Technology', 'Electronics and Communications Engg.', '7.54', '10', '0')
(6306, 'Arizona State University', '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '163', '146', '309', '3.5', '102', 'Pune University', 'Mechanical Engineering', '7', '100', '0')
(6307, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '150', '312', '3.5', '96', 'Manipal Institue of Technology', 'ECE', '8.85', '10', '0')
(6308, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '460', '1240', '3.5', '104', 'Sinhgad College of Engineering', 'Computer Science', '6.5', '100', '0')
(6309, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '157', '150', '307', '3', '95', 'Fr. Conceicao Rodrigues College of Engineering', 'Information Technology', '6.531999999999999', '100', '0')
(6310, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2007', '550', '790', '1340', '4', '267', 'MU', 'Electronics', '5.9', '100', '0')
(6311, 'Arizona State University', '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '158', '156', '314', '4', '113', 'MU', 'Chemical Engineering', '5.6450000000000005', '100', '25')
(6312, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '163', '152', '315', '3', '101', 'UPTU', 'Electrical & Electronics Engineering', '7.772', '100', '0')
(6313, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '160', '156', '316', '3', '98', 'MU', 'Elecronics and Telecommunication', '6.4', '100', '0')
(6314, 'Arizona State University', '6', 'Reject', 'MS', 'EE / CS', 'Fall ', '2012', '151', '158', '309', '4.5', '105', 'VTU', 'EEE', '7.4', '100', '0')
(6315, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and computer engineering electrical engineering telecommunications engineering', 'Fall ', '2013', '160', '150', '310', '3', '105', 'M N M jain Engineering College', 'Electronics and Communication', '7', '100', '0')
(6316, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '155', '145', '300', '3.5', '98', 'CMRIT', 'Electronics and Communication', '7.93', '100', '0')
(6317, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '162', '145', '307', '3', '100', 'NMAM Institute of Technology Nitte', 'Electronics and Communication', '9.09', '10', '40')
(6318, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '156', '157', '313', '3', '108', 'Walchand College Of Engineering', 'Electronics and Telecommunications', '6.94', '100', '9')
(6319, 'Arizona State University', '6', 'Reject', 'MS', 'MEMS & NANOTECHNOLOGY', 'Fall ', '2012', '730', '560', '1290', '4', '112', 'Amrita Vishwa Vidhyapeetham', 'Electronics and Communication', '8.94', '10', '0')
(6320, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '147', '314', '3.5', '105', 'PEC University of Technology', 'Electrical Engineering', '7.6', '10', '0')
(6321, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2011', '740', '570', '1310', '3.5', '110', 'University of Mumbai', 'Electronics', '6.2', '100', '0')
(6322, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '155', '162', '317', '4', '112', 'BITS Dubai', 'Electronics and Communication Engineering (ECE)', '8.81', '10', '0')
(6323, 'Arizona State University', '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '740', '350', '1090', '3.5', '87', 'VIT Pune', 'Mech Engg', '6.5', '100', '0')
(6324, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '160', '152', '312', '3', 'None', 'Sri Sairam Engineering College', 'Electronics and Communication Engineering', '7.4', '10', '0')
(6325, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '750', '610', '1360', '3', '100', 'Pune University', 'Computer Science', '6.4', '100', '0')
(6326, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '160', '150', '310', '3', '102', 'Govind Ballabh Pant Engg College', 'Electronics and Communication', '7.2', '100', '29')
(6327, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '780', '590', '1370', '3', '100', 'BITS Pilani', 'Electrical and Electronics', '7.88', '10', '0')
(6328, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering/Comp Science', 'Spring ', '2016', '170', '162', '332', '3.5', '115', 'University of Pune', 'Computer Engineering', '6.2', '100', '37')
(6329, 'Arizona State University', '6', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2014', '161', '149', '310', '3', '107', 'Sir MVIT', 'Civil engineering', '0', '0', '0')
(6330, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '156', '149', '305', '3', '8', 'SASTRA', 'EEE', '8.13', '10', '0')
(6331, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '780', '550', '1330', '3', '98', 'RGTU', 'EC', '7.3', '100', '0')
(6332, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '730', '480', '1210', '4', '114', 'MU', 'Electronics and Telecommunication', '6.487', '100', '0')
(6333, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '670', '390', '1060', '3', '108', 'VTU', 'Computer Science', '7.45', '100', '0')
(6334, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '156', '151', '307', '4', '100', 'Pondicherry University', 'Electronics and Instrumentation', '8.2', '10', '0')
(6335, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '165', '152', '317', '3', '108', 'NMIMS', 'Electronics And Telecommunications', '3', '4', '0')
(6336, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Networks', 'Spring ', '2013', '166', '159', '325', '4', '115', 'Dhirubhai Ambani Institute of Information & Communication Technology', 'Information and Communication Technology', '6.56', '10', '0')
(6337, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '740', '440', '1180', '3.5', '94', 'Amrita Vishwa Vidhyapeetham', 'Electronics & Communication', '7.3', '10', '0')
(6338, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2014', '160', '152', '312', '3', '102', 'nit raipur', 'electrical', '7.12', '10', '0')
(6339, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '800', '400', '1200', '2.5', '100', 'VIT University', 'ECE', '8.51', '10', '0')
(6340, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '720', '450', '1170', '4', '108', 'Anna University', 'Computer Science and Engg.', '7.04', '10', '0')
(6341, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '166', '158', '324', '3', '95', 'Vignan Institute of Technology and Science', 'electronics and communications', '7.06', '100', '0')
(6342, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '157', '318', '4', '112', 'Sri Jayachamarajendra College of Engineering', 'Electronics and comm', '7.7', '100', '0')
(6343, 'Arizona State University', '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2013', '162', '153', '315', '3', 'None', 'RGPV', 'Mechanical', '6.8', '100', '0')
(6344, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering/Comp Science', 'Fall ', '2013', '162', '158', '320', '3.5', 'None', 'BITS Pilani', 'Electrical and Electronics', '7.75', '10', '0')
(6345, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '164', '152', '316', '3.5', '101', 'Ambedkar Institute of technology', 'ECE', '7.776999999999999', '100', '0')
(6346, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '168', '149', '317', '3', '97', 'Jaypee Institute of Information Technology', 'Computer Science', '7.8', '100', '30')
(6347, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '170', '161', '331', '4.5', '115', 'West Bengal University Of Technology', 'ECE', '8.66', '10', '12')
(6348, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '148', '311', '3', '99', 'SVITS', 'CSE', '6.5', '100', '30')
(6349, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '166', '155', '321', '2.5', '109', 'NIT ALLAHABAD', 'ece', '7.86', '10', '66')
(6350, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '153', '311', '3', '103', 'Amity University', 'CSE', '7.2', '10', '0')
(6351, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '151', '312', '3', '97', 'PESIT', 'IS', '6.648000000000001', '100', '0')
(6352, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '520', '1320', '3.5', '94', 'Sona College', 'Information Technology', '8', '100', '0')
(6353, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '560', '1310', '4', '105', 'MU', 'Information Technology(B.E. I.T)', '5.88', '100', '0')
(6354, 'Arizona State University', '6', 'Reject', 'MS', 'Aerospace Engineering', 'Fall', 'None', '159', '145', '304', '4.5', '100', 'VTU', 'mechanical', '7.2', '100', '0')
(6355, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '145', '308', '3', '89', 'CET Odisha', 'CSE', '8', '10', '0')
(6356, 'Arizona State University', '6', 'Reject', 'MS', 'CS', 'Fall ', '2014', '167', '149', '316', '3.5', '101', 'Biju Patnaik University of Technology', 'Electrical and Electronics engineering', '7.86', '10', '0')
(6357, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '168', '158', '326', '4', '119', 'University of Pune', 'InformationTechnology', '6.2', '100', '0')
(6358, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2007', '770', '580', '1350', '4', '270', 'University of Mumbai', 'Computer Engineering', '5.95', '100', '0')
(6359, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2012', '730', '410', '1140', '3', '109', 'Guru Jambheshwar University of Science & Technology', 'ECE', '8.67', '10', '0')
(6360, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2010', '770', '690', '1460', '4.5', '116', 'None', 'Computer Science', '8.48', '10', '0')
(6361, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '161', '149', '310', '3', '95', 'Pune University', 'Computer Engg.', '6.515000000000001', '100', '0')
(6362, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '156', '145', '301', '3.5', '105', 'JNTU', 'CSE', '7.32', '100', '0')
(6363, 'Arizona State University', '6', 'Reject', 'MS', 'Bioinformatics', 'Fall', 'None', 'None', 'None', '0', '3', 'None', 'IIT BHU', 'Biomedical Engineering', '7.83', '10', '0')
(6364, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '160', '149', '309', '3.5', '100', 'BITS Pilani', 'M.Sc(Tech) Information Systems', '7.17', '10', '0')
(6365, 'Arizona State University', '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '156', '158', '314', '4.5', '105', 'Amrita School of Engineering', 'Mechanical engineering', '6.42', '10', '0')
(6366, 'Arizona State University', '6', 'Reject', 'MS', 'Engineering Management / Industrial Engineering / IMSE', 'Fall ', '2014', '166', '156', '322', '3', '104', 'Institute of Chemical Technology', 'Polymer and Surface Coating', '6.32', '100', '0')
(6367, 'Arizona State University', '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '167', '152', '319', '3', '111', 'Sardar Patel College of Engineering', 'Mechanical', '6.8', '100', '14')
(6368, 'Arizona State University', '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '710', '430', '1140', '2.5', '89', 'Anna University', 'MECHANICAL', '7.84', '10', '0')
(6369, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2006', '800', '520', '1320', '4.5', '273', 'SPCE', 'Electrical', '6.5', '100', '0')
(6370, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2011', '780', '630', '1410', '3', '100', 'Sathyabama University', 'ECE', '7.5', '100', '0')
(6371, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '160', '155', '315', '3.5', '106', 'M.V.S.R Engineering College', 'Electronics and Communication', '7.85', '100', '0')
(6372, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '590', '1390', '3', '94', 'JNTU', 'CSE', '6.8', '100', '0')
(6373, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '700', '460', '1160', '4', '101', 'Sri Venkateswara College of Engineering', 'ECE', '7.4', '100', '0')
(6374, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '720', '620', '1340', '3.5', '96', 'SRM', 'Computer Science', '9.35', '10', '0')
(6375, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '159', '152', '311', '3.5', 'None', 'Anna University', 'ECE', '7.4', '100', '0')
(6376, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '740', '480', '1220', '3', '100', 'University of Mumbai', 'Electronics and Telecommunication', '6.3', '100', '0')
(6377, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '580', '1380', '3', '109', 'PSG College of Technology', 'ECE', '9.29', '10', '0')
(6378, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '156', '152', '308', '3', '101', 'Anna University', 'Electronics and Communication Engineering', '7.6', '10', '0')
(6379, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '150', '153', '303', '3.5', '99', 'JNTU', 'electronics and instrumentation', '7.5', '100', '0')
(6380, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '153', '147', '300', '4', 'None', 'Amrita School of Engineering', 'ECE', '6.33', '10', '0')
(6381, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '720', '550', '1270', '3', '81', 'Anna University', 'Computer Science and Engineering', '8', '100', '0')
(6382, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '167', '154', '321', '3', '110', 'Amity School of Engineering and Technology', 'Instrumentation & Control Engineering', '6.6', '100', '0')
(6383, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Spring ', '2014', '159', '148', '307', '4', '103', 'SRM', 'ECE', '8.06', '10', '0')
(6384, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '161', '154', '315', '3', '105', 'VTU', 'Telecommunication', '7.82', '10', '0')
(6385, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '152', '314', '4', '114', 'VTU', 'Information Science', '6', '100', '0')
(6386, 'Arizona State University', '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '166', '160', '326', '4', '110', 'IIITDM-Jabalpur', 'Mechanical', '6.9', '10', '4')
(6387, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '166', '147', '313', '3', '86', 'Pune University', 'e&tc;', '8.66', '10', '0')
(6388, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '160', '146', '306', '3', '104', 'University of Pune', 'Electronics and Telecommunicatio', '7.1', '100', '0')
(6389, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '155', '149', '304', '3.5', '110', 'VTU', 'Computer Science', '7.8', '100', '0')
(6390, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics & Communication', 'Fall ', '2014', '164', '159', '323', '4', '115', 'CUSAT', 'ECE', '6.523000000000001', '100', '6')
(6391, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '158', '144', '302', '3', 'None', 'MREC(JNTUH)', 'ECE', '7.9', '100', '0')
(6392, 'Arizona State University', '6', 'Reject', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(6393, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '760', '600', '1360', '3.5', '114', 'VTU', 'Electronics and Communication', '8.004000000000001', '100', '0')
(6394, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '166', '151', '317', '4', '107', 'PESIT', 'Electronics and Communication Engineering', '7.7', '10', '28')
(6395, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '165', '153', '318', '4', '109', 'SJCE', 'Electronics and Communication', '6.720000000000001', '100', '49')
(6396, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '530', '1330', '4', '102', 'Anna University', 'Electronics and Communication Engg.', '7.12', '10', '0')
(6397, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '157', '161', '318', '3', '95', 'Pune University', 'ECE', '7.35', '10', '0')
(6398, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '770', '330', '1100', '3', '102', 'Amrita School of Engineering', 'ECE', '7', '10', '0')
(6399, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '162', '149', '311', '3.5', '89', 'GITAM', 'ELECTRONICS AND COMMUNICATION', '8.36', '10', '0')
(6400, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '460', '1250', '3', '93', 'Coimbatore Insitute of Technology', 'CSE', '7.87', '10', '0')
(6401, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering/Comp Science', 'Fall ', '2013', '157', '152', '309', '2.5', '99', 'PESIT', 'Electronics and Communication', '7.9', '100', '0')
(6402, 'Arizona State University', '6', 'Reject', 'MS', 'Sustainable enrgy and environment', 'Fall ', '2011', '800', '580', '1380', '4', '114', 'NITK Surathkal', 'Electrical & electronics', '6.99', '10', '0')
(6403, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '440', '1200', '3', '90', 'NITK Surathkal', 'Computer Engineering', '7.1', '100', '0')
(6404, 'Arizona State University', '6', 'Reject', 'MS', 'Embedded systems', 'Fall ', '2012', '780', '600', '1380', '3', '106', 'VIT Mumbai University', 'Electronics', '6.2', '100', '0')
(6405, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2008', '750', '520', '1270', '5', '114', 'PESIT', 'CS', '7.6', '100', '0')
(6406, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '750', '380', '1130', '3.5', '94', 'MU', 'Electronics', '6.5', '100', '0')
(6407, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '750', '570', '1320', '4', '106', 'K J Somaiya College of Engiineering', 'IT', '0', '0', '0')
(6408, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '760', '600', '1360', '4', '104', 'JNTU', 'cs', '7.2', '100', '0')
(6409, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '168', '149', '317', '3.5', '106', 'SASTRA', 'ECE', '7.4', '10', '0')
(6410, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2008', '800', '640', '1440', '4.5', '118', 'Bangalore Institute of Technology', 'ECE', '7.776999999999999', '100', '0')
(6411, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2011', '720', '560', '1280', '4', '110', 'Imperial college of Engineering and research Pune', 'E&TC;', '6.7', '100', '0')
(6412, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '158', '152', '310', '5', '109', 'Sathyabama University', 'EEE', '8.07', '10', '0')
(6413, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '161', '147', '308', '3', '97', 'Dayananda Sagar College of Engineering', 'Telecommunication', '7.5', '100', '0')
(6414, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '168', '148', '316', '3.5', '97', 'R V College of Engineering', 'ECE', '8.81', '10', '0')
(6415, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '162', '138', '300', '3', '87', 'Gujarat Technological University', 'Electronics and Communication', '8.05', '10', '0')
(6416, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '154', '316', '3.5', 'None', 'JNTU', 'Information Technology', '7.411', '100', '0')
(6417, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '710', '370', '1080', '3.5', '100', 'Pune University', 'Electronics Engineering', '5.813000000000001', '100', '0')
(6418, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering and Computer Science', 'Fall ', '2013', '163', '153', '316', '3', '104', 'BNMIT', 'ECE', '8', '100', '0')
(6419, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Electronics', 'Fall ', '2012', '730', '570', '1300', '3.5', '103', 'MU', 'EXTC', '3.4', '4', '0')
(6420, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '580', '1380', '2.5', '101', 'Kakatiya University', 'ece', '7.01', '100', '0')
(6421, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2007', '780', '520', '1300', '3', '277', 'K J Somaiya College of Engiineering', 'Computer Engineering', '5.3', '100', '0')
(6422, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '550', '1350', '4', '102', 'MU', 'Computer Science', '6.3', '100', '0')
(6423, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '170', '153', '323', '3', '97', 'IIT Kharagpur', 'Electrical Engineering', '7.22', '10', '0')
(6424, 'Arizona State University', '6', 'Reject', 'MS', 'Embedded systems', 'Fall ', '2012', '169', '162', '331', '4', '115', 'VTU', 'ECE', '8.43', '10', '0')
(6425, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '800', '610', '1410', '3', '107', 'University of Mumbai', 'Computer Engineering', '6.14', '100', '24')
(6426, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '162', '157', '319', '3', '104', 'MU', 'Information Technology', '5.8', '100', '15')
(6427, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '167', '162', '329', '4.5', '115', 'Datta Meghe College of Engineering', 'Electronics', '5.9399999999999995', '100', '0')
(6428, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Spring ', '2014', '160', '160', '320', '3.5', '113', 'Fr. Conceicao Rodrigues College of Engineering', 'Electronics Engineering', '6.7829999999999995', '100', '0')
(6429, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '164', '158', '322', '4', '108', 'Gujarat Technological University', 'Computer Engineering', '7.71', '10', '0')
(6430, 'Arizona State University', '6', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2012', '800', '670', '1470', '5', '115', 'Cochin University of Science and Technology', 'Mechanical Engg.', '7.6', '100', '0')
(6431, 'Arizona State University', '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '164', '149', '313', '3', '109', 'MU', 'Instrumentation', '6.32', '100', '0')
(6432, 'Arizona State University', '6', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Spring ', '2013', '163', '155', '318', '3.5', '115', 'Shivaji University', 'Information Technology', '6.5', '100', '0')
(6433, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '159', '323', '4.5', '115', 'Anna University', 'Computer Science and Engineering', '7.65', '10', '0')
(6434, 'Arizona State University', '6', 'Reject', 'MS', 'Industrial Engineering', 'Spring ', '2014', '155', '149', '304', '3', '89', 'PSG College of Technology', 'Mechanical Engineering', '7.96', '10', '0')
(6435, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '157', '151', '308', 'None', '95', 'VTU', 'EEE', '6.7', '100', '22')
(6436, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2006', '800', '500', '1300', '4', '283', 'University of Kerala', 'Electronics & Communication', '7.7', '100', '0')
(6437, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '152', '154', '306', '3', '108', 'Sri Krishna College Of Engineering And Technology', 'ECE', '7.6', '10', '0')
(6438, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '730', '490', '1220', '3', '102', 'VTU', 'Electronics and Communication', '6.6', '100', '0')
(6439, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '170', '149', '319', '3', '95', 'VJTI', 'Electronics', '8.22', '10', '12')
(6440, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '168', '151', '319', '3', '99', 'Nirma Institute of Technology', 'Eletronics and Communication', '7.52', '10', '0')
(6441, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '162', '160', '322', '4', '112', 'Bangalore University', 'electrical', '7', '100', '0')
(6442, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '153', '315', '3.5', '106', 'RGPV', 'I.T', '6.7', '100', '0')
(6443, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '161', '325', '4', '114', 'Pune University', 'CS', '5.9', '100', '0')
(6444, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall', 'None', '160', '151', '311', '3', '101', 'GITAM', 'ECE', '8.63', '10', '0')
(6445, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '420', '1220', '3', '100', 'CVRCE', 'Electronics and Instrumentation', '7.001', '100', '0')
(6446, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '153', '315', '2.5', '106', 'Jaypee Institute of Information Technology', 'Computer Science & Engineer', '6.8', '10', '0')
(6447, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Electronics', 'Fall ', '2013', '165', '154', '319', '4', '110', 'Pune University', 'Computer', '5.3', '100', '0')
(6448, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '159', '149', '308', '3', '104', 'Anna University', 'ECE', '7.9', '100', '0')
(6449, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '161', '158', '319', '3.5', '102', 'Amrita School of Engineering', 'EEE', '7.55', '10', '41')
(6450, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '166', '153', '319', '4', '106', 'VTU', 'Electronics & Communication', '8.4', '100', '24')
(6451, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '163', '156', '319', '3', '107', 'VTU', 'Electronics & Communication', '8.15', '100', '24')
(6452, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '153', '312', '3', 'None', 'JNTU', 'ELECTRONICS & COMMUNICATION ENGINEERING', '7.3', '100', '0')
(6453, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '160', '147', '307', '2.5', 'None', 'GITAM', 'Electronics and Communication', '7.8', '10', '0')
(6454, 'Arizona State University', '6', 'Reject', 'MS', 'energy', 'Fall ', '2012', '159', '144', '303', '3', '86', 'G.B.P.U.A.T Pantnagar', 'Electrical', '7.87', '10', '0')
(6455, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '530', '1320', '3.5', '103', 'JNTU', 'CSE', '7', '100', '0')
(6456, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Networks', 'Fall ', '2013', '162', '154', '316', '4.5', '112', 'VTU', 'Telecommunication', '8.1059', '100', '0')
(6457, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2015', '166', '158', '324', '4', '115', 'VTU', 'Electronics & Communication', '7.406000000000001', '100', '25')
(6458, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '790', '580', '1370', '2.5', '102', 'SRM', 'Computer Science', '8', '10', '0')
(6459, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '162', '146', '308', '3.5', '96', 'MU', 'Electronics', '6.715000000000001', '100', '0')
(6460, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '168', '163', '331', '4', '114', 'IIT BHU', 'Electronics Engineering', '8.04', '10', '0')
(6461, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '152', '314', '3.5', '107', 'VTU', 'Information Science', '6.4', '100', '0')
(6462, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '149', '311', '3.5', '104', 'MU', 'Electronics and Telecommunication', '6.5', '100', '0')
(6463, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '168', '157', '325', '3.5', '105', 'Shri Vaishnav Institute Of Technology and Science', 'Electronics and Communication', '7', '100', '0')
(6464, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and computer engineering electrical engineering telecommunications engineering', 'Fall ', '2013', '164', '156', '320', '3', '109', 'Amrita School of Engineering', 'EIE(elec & instrumentation)', '7.36', '10', '0')
(6465, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '160', '146', '306', '4', 'None', 'Don Bosco Institute of Technology', 'Infortmation Technology', '6.5', '100', '0')
(6466, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '160', '145', '305', '3', '98', 'Anna University', 'ECE', '8.29', '10', '3')
(6467, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '164', '153', '317', '3', '102', 'JNTU', 'ECE', '7.4', '100', '0')
(6468, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '163', '149', '312', '3', 'None', 'Amrita School of Engineering', 'EEE', '7.43', '10', '27')
(6469, 'Arizona State University', '6', 'Reject', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(6470, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '160', '153', '313', '3', '112', 'Amrita School of Engineering', 'Electronics and communication', '8.19', '10', '24')
(6471, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '167', '149', '316', '3', '104', 'Jaypee Institute of Information Technology', 'CSE', '7.4', '10', '0')
(6472, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2016', '160', '144', '304', '3.5', 'None', 'Reva Institute of Technology', 'Electronics and communication', '7.2', '100', '12')
(6473, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '163', '150', '313', '3', '93', 'Amrita School of Engineering', 'Electronic and Instrumentation', '8.01', '10', '0')
(6474, 'Arizona State University', '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '163', '145', '308', '3', '94', 'LJIET', 'Mechanical', '6.69', '10', '0')
(6475, 'Arizona State University', '6', 'Reject', 'MS', 'Industrial Engineering', 'Spring ', '2012', '690', '630', '1320', '2.5', '89', 'MIT Pune', 'Mechanical Sandwich', '6.1530000000000005', '100', '0')
(6476, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '640', '1440', '4', '115', 'NIT Karnataka', 'EEE', '6.76', '10', '0')
(6477, 'Arizona State University', '6', 'Reject', 'MS', 'Information Assurance', 'Fall ', '2015', '151', '154', '305', '4', '96', 'Anna University', 'ECE', '7.18', '10', '29')
(6478, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '740', '490', '1230', '3.5', '97', 'Vidyalankar Institute of Technology', 'ETRX', '6.2', '100', '0')
(6479, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '159', '147', '306', '3', '99', 'BVBCET', 'Electronics and Communication', '8.52', '10', '0')
(6480, 'Arizona State University', '6', 'Reject', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(6481, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '162', '152', '314', '4', '107', 'MU', 'Electrical', '6.4', '100', '18')
(6482, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '630', '1430', '3.5', '108', 'SPCE', 'Electrical', '6.2', '100', '0')
(6483, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering & Information Technology', 'Fall ', '2015', '160', '154', '314', '4', '112', 'MU', 'Instrumentation Engineeering', '6.555', '100', '0')
(6484, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '164', '146', '310', '3', '110', 'P.T.U.', 'ECE', '7.5', '100', '0')
(6485, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '680', '560', '1240', '3', '86', 'Coimbatore Insitute of Technology', 'EEE', '8.41', '10', '0')
(6486, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '161', '146', '307', '3.5', '105', 'Sri Venkateswara College of Engineering', 'ECE', '7.26', '10', '0')
(6487, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '167', '155', '322', 'None', '112', 'SASTRA', 'ECE', '0', '0', '0')
(6488, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '740', '450', '1190', '3', 'None', 'MU', 'Electronics and Telecommunications', '7', '100', '27')
(6489, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2011', '770', '500', '1270', '3', '93', 'VJTI', 'COMPUTER', '6.5', '10', '0')
(6490, 'Arizona State University', '6', 'Reject', 'MS', 'Chemical/Environmental Engg.', 'Fall ', '2015', '161', '154', '315', '3', '102', 'Anna University', 'Chemical Engineering', '7.51', '10', '0')
(6491, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '163', '158', '321', 'None', 'None', 'LNMIIT', 'ECE', '8.1', '10', '0')
(6492, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '161', '141', '302', '3', 'None', 'U.P.T.U.', 'Electrical Engineering', '7.4319999999999995', '100', '30')
(6493, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '157', '149', '306', '3.5', '103', 'VTU', 'Electronics and Communication', '7.275', '100', '0')
(6494, 'Arizona State University', '6', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2006', '800', '650', '1450', '5', '287', 'Nirma Institute of Technology', 'ec', '7.3', '100', '0')
(6495, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '330', '1130', '3', '84', 'Velammal Engineering College', 'Information technology', '7.1', '100', '0')
(6496, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '156', '147', '303', '3', '93', 'VTU', 'Electronics and Communication', '0', '0', '0')
(6497, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '150', '317', '3.5', '107', 'MU', 'Computer Engineering', '5.8', '100', '34')
(6498, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '143', '305', '3', '86', 'MU', 'Electronics And Telecommunication', '7.1', '100', '0')
(6499, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2016', '156', '153', '309', '3.5', '107', 'VTU', 'Electronics and Communication', '6.7', '100', '57')
(6500, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2013', '157', '147', '304', '3', '112', 'VTU', 'Electronics and communication', '8.26', '100', '0')
(6501, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '159', '152', '311', 'None', 'None', 'MU', 'EXTC', '6.640000000000001', '100', '0')
(6502, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '157', '143', '300', '3.5', '97', 'Sri Sairam Engineering College', 'Instrumentation and Control Engineering', '7.82', '10', '0')
(6503, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '154', '313', '3.5', '97', 'SVCE', 'EEE', '7.5040000000000004', '100', '0')
(6504, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '153', '317', '3.5', '109', 'MIT', 'Electronics', '0.65', '100', '0')
(6505, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '167', '152', '319', '3', '101', 'Jaypee Institute of Information Technology', 'ECE', '7.1', '100', '0')
(6506, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '149', '313', '3.5', '104', 'D j Sanghvi', 'IT', '6.2', '100', '0')
(6507, 'Arizona State University', '6', 'Reject', 'MS', 'physics', 'Fall ', '2013', '163', '156', '319', '3.5', '100', 'Guru Gobind Singh Indraprashta University', 'ECE', '7.2', '100', '0')
(6508, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '142', '305', '3', '89', 'Amrita School of Engineering', 'Electronics and Communication Engineering', '7.01', '10', '0')
(6509, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '158', '158', '316', '4', '100', 'PICT', 'Information Technology', '3.56', '4', '33')
(6510, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2008', '690', '320', '1010', '3.5', '250', 'Atharva College', 'Electronics and telecommunication', '6.7', '100', '0')
(6511, 'Arizona State University', '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '165', '150', '315', '3', '90', 'Dr. B.R Ambedkar NIT Jalandhar', 'Mechanical Engineering', '6.7', '10', '44')
(6512, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '570', '1370', '3.5', '114', 'MU', 'Electronics and Telecommunication', '7', '100', '0')
(6513, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '143', '309', '3', '98', 'MSU', 'Computer Science', '3.64', '4', '24')
(6514, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '151', '317', '3.5', '101', 'CEG', 'Information Technology', '7.1', '10', '30')
(6515, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '160', '147', '307', '3', '101', 'Anna University', 'EEE', '8', '10', '0')
(6516, 'Arizona State University', '6', 'Reject', 'MS', 'Chemical Engineering', 'Fall ', '2011', '740', '580', '1320', '4', '104', 'MSRIT', 'Chemical Engineering', '0.767', '100', '0')
(6517, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '170', '149', '319', '3.5', '111', 'Amrita School of Engineering', 'EIE', '7.7', '10', '0')
(6518, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '152', '314', '3.5', '93', 'SASTRA', 'EEE', '8.36', '10', '0')
(6519, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '159', '150', '309', '3', '96', 'VTU', 'ECE', '7.6', '100', '0')
(6520, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '760', '440', '1200', '3.5', '92', 'PESIT', 'electronics and communication', '6.4', '100', '0')
(6521, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '160', '151', '311', '3', '88', 'JNTU', 'EE', '7.8', '100', '0')
(6522, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '164', '141', '305', '3', '81', 'Vardhaman', 'ece', '6.9', '100', '0')
(6523, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '156', '144', '300', '3.5', '94', 'B.S.A.Crescent Engineering College', 'Electrical and Electronics Engineering', '6.9', '100', '0')
(6524, 'Arizona State University', '6', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2015', '156', '161', '317', 'None', '117', 'Rajiv Gandhi Technical University', 'Information Technology', '6.7', '100', '0')
(6525, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '530', '1290', '3', '89', 'Govt College of Engineering', 'Computer Science & Engineering', '7.1125', '100', '0')
(6526, 'Arizona State University', '6', 'Reject', 'MS', 'electronics', 'Fall ', '2012', '740', '530', '1270', '3.5', '106', 'MU', 'Electronics', '6.85', '100', '0')
(6527, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2006', '790', '690', '1480', '5', '300', 'Vidylankar Institute of Technology', 'Computer Engineering', '5.7', '100', '0')
(6528, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '161', '155', '316', '3.5', '104', 'Sardar Patel University', 'Electronics', '7.47', '10', '53')
(6529, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '158', '142', '300', '3', '94', 'MSRIT', 'TC', '8.1', '10', '0')
(6530, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '640', '1430', '4.5', '115', 'MNM Jain Engineering College', 'CSE', '7.51', '100', '0')
(6531, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '158', '147', '305', '3', '90', 'WBUT', 'Electrical Engineering', '8.71', '10', '0')
(6532, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '145', '306', '3', '93', 'VTU', 'telecommunication', '7.840000000000001', '100', '0')
(6533, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Summer ', '2016', '163', '153', '316', '3.5', '102', 'IIIT Hyderabad', 'ECE', '8.4', '10', '0')
(6534, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '780', '590', '1370', '3', '98', 'BITS Pilani', 'Electrical and Electronics', '7.1', '10', '0')
(6535, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2008', '780', '540', '1320', '3.5', '105', 'MDU', 'Computer science', '6.6', '100', '0')
(6536, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '161', '156', '317', '3', '97', 'Sir MVIT', 'Telecommunication', '6.83', '100', '0')
(6537, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '163', '144', '307', '3', '95', 'JNTU', 'Electronics & Communications Engineering', '7.483', '100', '0')
(6538, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2016', '163', '153', '316', '3.5', '104', 'SVCE', 'Computer Science', '6.89', '10', '0')
(6539, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '158', '148', '306', '3.5', '103', 'None', 'ECE', '8.18', '10', '0')
(6540, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '160', '146', '306', '2.5', '91', 'Andhra University', 'E E E', '7.1', '100', '0')
(6541, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '158', '145', '303', '2.5', '105', 'None', 'IT', '7.57', '10', '0')
(6542, 'Arizona State University', '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '162', '157', '319', '3', '116', 'MU', 'Mechanical', '6.3', '100', '0')
(6543, 'Arizona State University', '6', 'Reject', 'MS', 'Aerospace Engineering', 'Spring ', '2013', '159', '150', '309', '2.5', '87', 'JNTU', 'Mechanical engg', '6.5', '100', '0')
(6544, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '159', '142', '301', '3', 'None', 'SVNIT', 'Electrical Engineering', '6.92', '10', '0')
(6545, 'Arizona State University', '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '152', '151', '303', '3', '98', 'University of Mumbai', 'Production Engineering', '7.1', '100', '24')
(6546, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '550', '1350', '4.5', '115', 'BITS Hyderabad', 'Electronics and Communication Engineering', '6.5', '10', '0')
(6547, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '163', '146', '309', '3.5', 'None', 'NMIMS', 'Electronics and Telecommunication', '3.55', '4', '0')
(6548, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '470', '1230', '3.5', '99', 'Panjab University', 'University Institute of Engineering and Technology', '7.05', '100', '0')
(6549, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '740', '460', '1200', '4', '104', 'Univ. of Mumbai', 'Electronics', '6.1', '100', '0')
(6550, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics & Communication', 'Fall', '2013', '166', '159', '325', '4', '113', 'Amrita Coimbatore', 'ECE', '7.73', '10', '0')
(6551, 'Arizona State University', '6', 'Admit', 'MS', 'Software Engineering', 'Fall', '2018', '-1', '-1', '-1', '-1', '100', 'Jaypee University of Engineering and Technology', 'Computer Science', '7.7', '100', '24')
(6552, 'Arizona State University', '6', 'Admit', 'MS', 'Software Engineering', 'Fall', '2017', '163', '145', '308', '4.5', '103', 'Anna University', 'Information Technology', '8.07', '10', '0')
(6553, 'Arizona State University', '6', 'Admit', 'MS', 'Aerospace Engineering', 'Fall', '2018', '150', '163', '313', '4', '98', 'SRM University', 'Mechanical Engineering', '9', '10', '0')
(6554, 'California State University, East Bay', '7', 'Reject', 'MS', 'Computer Science', 'Fall', '2018', '150', '133', '283', '-1', '-1', 'VR Siddhartha engineering college', 'Computer Science', '7.88', '10', '0')
(6555, 'California State University, East Bay', '7', 'Admit', 'MS', 'Engineering Management', 'Spring', '2017', '154', '135', '289', '2', '87', 'Kiit', 'Mechanical Engineering', '7', '10', '38')
(6556, 'Clarkson University', '8', 'Admit', 'MS', 'Engineering Management', 'Fall', '2019', '156', '138', '294', '3.5', '-1', 'KL University', 'Chemical Engineering', '6.53', '10', '13')
(6557, 'Clemson University', '9', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '155', '145', '300', '4.5', '85', 'GGSIPU', 'Electronics & Communication Engineering', '7.6', '100', '0')
(6558, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '770', '460', '1230', '3', '105', 'fr.c.r.c.e.(bandra)', 'production engineering', '7.536', '100', '0')
(6559, 'Clemson University', '9', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '167', '162', '329', '4', '110', 'University of Pune', 'E&TC;', '6.375', '100', '0')
(6560, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '170', '150', '320', '3', '104', 'BITS Goa', 'Mechanical', '6.32', '10', '48')
(6561, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '730', '390', '1120', '3', '90', 'IET DAVV', 'Computer Engineering', '0', '0', '0')
(6562, 'Clemson University', '9', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '680', '1460', '4.5', '110', 'MIT University of Pune', 'Electronics and Telecommunication', '6.5', '100', '0')
(6563, 'Clemson University', '9', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2013', '160', '157', '317', '3.5', '111', "St.Peter's Engineering College", 'Electronics & Instrumentation', '7.5', '100', '0')
(6564, 'Clemson University', '9', 'Admit', 'MS', 'Electronics and Communication', 'Spring ', '2013', '163', '145', '308', 'None', '96', 'RNSIT', 'ECE', '7.5', '100', '0')
(6565, 'Clemson University', '9', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2014', '164', '152', '316', '3.5', '106', 'Assam Engineering College', 'Civil Engineering', '7.959999999999999', '100', '0')
(6566, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '158', '152', '310', '3.5', '98', 'Shri Ramdeobaba Engineering College', 'Industrial Engineering', '7.7', '100', '0')
(6567, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '168', '152', '320', '3', 'None', 'Osmania University', 'Mechanical', '7.12', '100', '22')
(6568, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '164', '160', '324', '4.5', '112', 'NIT Calicut', 'Mechanical Engineering', '7.9', '10', '48')
(6569, 'Clemson University', '9', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '165', '145', '310', '3.5', '108', 'SVNIT', 'Electronics', '8.7', '10', '0')
(6570, 'Clemson University', '9', 'Admit', 'MS', 'Automotive Engineering', 'Fall ', '2012', '153', '150', '303', '3.5', '106', 'None', '0', '0', '0', '0')
(6571, 'Clemson University', '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '166', '148', '314', '4', '102', 'Maharishi Dayanand University', 'ECE', '7.773999999999999', '100', '0')
(6572, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '790', '420', '1210', '3', '93', 'K J Somaiya College of Engiineering', 'Mechanical', '6.6', '100', '0')
(6573, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '164', '151', '315', '3.5', '112', 'Pune University', 'Mechanical Engineering', '5.6899999999999995', '100', '12')
(6574, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '154', '317', '3.5', '114', 'PESIT', 'Information Science', '8.32', '10', '0')
(6575, 'Clemson University', '9', 'Admit', 'MS', 'Automotive Engineering', 'Fall ', '2013', '160', '152', '312', '3.5', '110', 'VIT University', 'Mechanical Engineering', '8.25', '10', '0')
(6576, 'Clemson University', '9', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '800', '590', '1390', '3.5', '107', 'UPTU', 'Computer Science', '6.5', '100', '0')
(6577, 'Clemson University', '9', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '168', '159', '327', '4', '111', 'MU', 'Electronics', '5.779999999999999', '100', '37')
(6578, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '167', '152', '319', '4', '116', 'Vishwakarma Institute of Technology', 'Mechanical Engineering', '9.47', '10', '22')
(6579, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '680', '640', '1320', '4.5', '114', 'University of Pune', 'Computer Engineering', '6.544', '100', '0')
(6580, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '156', '150', '306', '4', 'None', 'Anna University', 'Computer Science', '7.3', '100', '0')
(6581, 'Clemson University', '9', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2014', '162', '150', '312', '3', '108', 'University of Petroleum and Energy Studies', 'Civil Engineering', '3.13', '4', '0')
(6582, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '163', '158', '321', '4', '109', 'MU', 'Computer Engineering', '6.7', '100', '0')
(6583, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '700', '640', '1340', '3', '109', 'Pune University', 'Computer Engineering', '2.9', '4', '0')
(6584, 'Clemson University', '9', 'Admit', 'MS', 'Automotive Engineering', 'Fall ', '2011', '760', '590', '1350', '3', '92', 'West Bengal University Of Technology', 'Automobile', '7.55', '10', '0')
(6585, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '540', '1290', '3.5', '105', 'VTU', 'Computer Science', '7.1', '100', '0')
(6586, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '170', '149', '319', '3', '102', 'MSRIT', 'Mechanical', '9.51', '10', '0')
(6587, 'Clemson University', '9', 'Admit', 'MS', 'Electronics & Communication', 'Fall ', '2012', '720', '620', '1340', '3.5', '108', 'Sri Venkateswara College of Engineering', 'ECE', '8.05', '10', '0')
(6588, 'Clemson University', '9', 'Admit', 'MS', 'Electronics and electrical engineering', 'Fall ', '2014', '164', '157', '321', '4.5', '114', 'MU', 'Electronics', '6.444', '100', '0')
(6589, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '790', '520', '1310', '3.5', '273', 'Cochin University of Science and Technology', 'Computer Science', '7.45', '100', '0')
(6590, 'Clemson University', '9', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2012', '1340', '560', '1900', '3', 'None', 'COEP', 'Computer Science', '7.64', '10', '0')
(6591, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '170', '150', '320', '3', '105', 'BITS Pilani', 'Mechanical', '8.62', '10', '24')
(6592, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '166', '152', '318', '3.5', '108', 'PESIT', 'Mechanical', '9.13', '10', '12')
(6593, 'Clemson University', '9', 'Admit', 'MS', 'Automotive Engineering', 'Fall ', '2012', '164', '145', '309', '3', '95', 'Andhra University', 'Mechanical Engineering', '7.56', '10', '0')
(6594, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '165', '149', '314', '3.5', '91', 'University of Pune', 'Mechanical Engineering', '5.93', '100', '0')
(6595, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '161', '148', '309', '3', '96', 'Walchand College Of Engineering', 'IT', '7.66', '10', '29')
(6596, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '790', '570', '1360', '3', 'None', 'YCCE', 'mechanical', '6.4', '100', '0')
(6597, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '370', '1170', '3', '102', 'PICT', 'IT', '6.5', '100', '0')
(6598, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '750', '550', '1300', '3.5', '110', 'Sri Venkateswara College of Engineering', 'Mechanical', '7.2', '10', '0')
(6599, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '790', '540', '1330', '4', '109', 'CEG', 'Mechanical engineering', '7', '10', '0')
(6600, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '167', '163', '330', 'None', 'None', 'R V College of Engineering', '0', '8.63', '10', '0')
(6601, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '168', '145', '313', '2.5', '87', 'CBIT', 'CSE', '8', '100', '0')
(6602, 'Clemson University', '9', 'Admit', 'MS', 'Automotive Engineering', 'Fall ', '2012', '161', '147', '308', '3.5', '98', 'MU', 'Mechanical Engineering', '5.7', '100', '0')
(6603, 'Clemson University', '9', 'Admit', 'MS', 'Sustainable enrgy and environment', 'Fall ', '2012', '161', '152', '313', '3.5', '97', 'NIT Nagpur', 'Mechanical', '6.9', '10', '0')
(6604, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '160', '152', '312', '3.5', '109', 'COEP', 'Instrumentation and Control', '8.16', '10', '0')
(6605, 'Clemson University', '9', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '570', '1360', '4', '110', 'PESIT', 'Telecommunications', '8.33', '10', '0')
(6606, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '154', '316', '4', '114', 'GITAM', 'CS', '7.6', '10', '0')
(6607, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '780', '1570', '4.5', '107', 'University of Pune', 'Information technology', '5.85', '100', '0')
(6608, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '790', '560', '1350', '3', '100', 'Panjab University', 'Mechanical Engineering', '6.563', '100', '0')
(6609, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '165', '162', '327', '3', '109', 'NIT Silchar', '0', '6.96', '10', '54')
(6610, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '155', '159', '314', '4', '114', 'SRM', 'Mechanical Engineering', '7.484', '10', '30')
(6611, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '159', '151', '310', '3.5', '98', 'SRKNEC', 'Electronics', '6.1', '100', '0')
(6612, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '160', '152', '312', '4', '101', 'MU', 'Mechanical Engg.', '6.8', '100', '0')
(6613, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '165', '149', '314', '3', '95', 'RGPV', 'Mechanical Engineering', '7', '10', '0')
(6614, 'Clemson University', '9', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '750', '560', '1310', '3.5', '111', 'Anna University', 'EEE', '8.02', '10', '0')
(6615, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '660', '1460', '4', '116', 'WBUT', 'Computer Science Engineering', '8.93', '10', '0')
(6616, 'Clemson University', '9', 'Admit', 'MS', 'Instrumentation and Control', 'Fall ', '2015', '162', '149', '311', '3.5', '105', 'Anna University', 'Electronics and Instrumentation', '7.6', '10', '18')
(6617, 'Clemson University', '9', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '780', '640', '1420', '4', '105', 'Pune University', 'E-tc', '5.7', '100', '0')
(6618, 'Clemson University', '9', 'Admit', 'MS', 'Automotive Engineering', 'Fall ', '2011', '780', '520', '1300', '3', '98', 'SRM', 'ECE', '7', '10', '0')
(6619, 'Clemson University', '9', 'Admit', 'MS', 'Automotive Engineering', 'Fall ', '2012', '166', '151', '317', '3.5', '103', 'Anna University', 'Mechanical', '8.6', '100', '0')
(6620, 'Clemson University', '9', 'Admit', 'MS', 'Automotive Engineering', 'Fall ', '2011', '730', '590', '1320', '3.5', '105', 'SRM', 'Mechanical Engineering', '9.2', '10', '0')
(6621, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '640', '1420', '4', '108', 'Anna University', 'Mathematics and Computer Applications', '8.79', '10', '0')
(6622, 'Clemson University', '9', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '160', '155', '315', '4', '94', 'DTU', 'ECE', '6.3', '100', '0')
(6623, 'Clemson University', '9', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2011', '700', '360', '1060', 'None', '105', 'Softvision College', 'Bioinformatics', '7.8', '100', '0')
(6624, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '164', '155', '319', '4', '110', 'Anna University', 'EEE', '6.45', '10', '0')
(6625, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '156', '142', '298', '3', '92', 'Pune University', 'Production Engineering', '0', '0', '0')
(6626, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '163', '150', '313', '2.5', '97', 'VIT', 'IT', '8.79', '10', '0')
(6627, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '167', '157', '324', '3.5', '109', 'NIT Tirchy', 'Mechanical Engineering', '7.04', '10', '11')
(6628, 'Clemson University', '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '750', '650', '1400', '3.5', '104', 'SBMJCE', 'ECE', '6.5', '100', '0')
(6629, 'Clemson University', '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '165', '158', '323', '3.5', '111', 'Amrita Vishwa Vidhyapeetham', 'Electrical and Electronics Engineering', '7.21', '10', '0')
(6630, 'Clemson University', '9', 'Admit', 'MS', 'Electronics Instrumentation and Control', 'Fall ', '2014', '155', '158', '313', '3.5', '114', 'RMK Engineering College', 'ELECTRONICS AND INSTRUMENTATION', '8.4', '10', '0')
(6631, 'Clemson University', '9', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '166', '156', '322', '4', '108', 'Amrita School of Engineering', 'ECE', '7.86', '10', '18')
(6632, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '167', '154', '321', '4', '103', 'LNMIIT', 'cs', '6.33', '10', '0')
(6633, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2008', '740', '400', '1140', '4', '83', 'VIT', 'Mechanical', '7.44', '10', '0')
(6634, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '730', '500', '1230', '3', '104', 'UPTU', 'Computer Science', '6.7', '100', '0')
(6635, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '164', '152', '316', '4', '100', 'GGSIPU', 'Mechanical and Automation Engineering', '7.7700000000000005', '100', '0')
(6636, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '158', '154', '312', '3', '109', 'GGSIPU', 'Computer Science', '7.8', '100', '0')
(6637, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '700', '400', '1100', '3', '93', 'Pune University', 'IT', '6.4', '100', '0')
(6638, 'Clemson University', '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2010', '800', '600', '1400', '4', '105', 'VIT', 'EEE', '9.28', '10', '0')
(6639, 'Clemson University', '9', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2011', '730', '470', '1200', '3', '100', 'University of Pune', 'Chemical Engineering', '6', '100', '0')
(6640, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '750', '500', '1250', '3.5', '112', 'VTU', 'Mechanical', '7.6659999999999995', '100', '0')
(6641, 'Clemson University', '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '590', '1390', '4.5', '108', 'Amrita School of Engineering', 'EIE', '7.45', '10', '0')
(6642, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '161', '156', '317', '4', 'None', 'BMSCE', 'Industrial Engineering', '7.1', '100', '0')
(6643, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '163', '147', '310', '3', 'None', 'Osmania University', 'mechanical engineering', '8.7', '100', '1')
(6644, 'Clemson University', '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '155', '157', '312', '3.5', '110', 'R V College of Engineering', 'Instrumentation Technology', '0.942', '100', '0')
(6645, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '155', '317', '3', '101', 'NIT Alld', 'CSE', '7.7', '10', '48')
(6646, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '165', '149', '314', '3.5', '103', 'Rajasthan Technical University', 'Computer Science and Engineering', '7.3', '100', '0')
(6647, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '790', '490', '1280', '3.5', '96', 'Rajiv Gandhi Prodyogiki Vishwavidyalaya', 'Information Technology', '8.1', '100', '0')
(6648, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '770', '590', '1360', '3', '102', 'Rajiv Gandhi Institute Of Technology', 'MECHANICAL ENGINEERING', '6.3', '100', '0')
(6649, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2006', '800', '520', '1320', '4', '290', 'Crescent Engineering College', 'Mechanical Engineering', '7.6', '100', '0')
(6650, 'Clemson University', '9', 'Admit', 'MS', 'Electronics & Communication', 'Fall ', '2012', '790', '530', '1320', '4', '110', 'NIT Hamirpur', 'Electronics and communication', '7.56', '10', '0')
(6651, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '159', '155', '314', 'None', '93', 'ESPOL - ECU', 'Elect & Comput Science', '7.52', '10', '0')
(6652, 'Clemson University', '9', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2014', '170', '149', '319', '3', '96', 'NIT Bhopal', 'CIVIL', '6.98', '10', '31')
(6653, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '164', '155', '319', '4.5', '115', 'VJTI', 'PRODUCTION', '8.3', '10', '0')
(6654, 'Clemson University', '9', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '780', '560', '1340', '3.5', '104', 'MU', 'Electronics & Telecommunication', '6.2', '100', '0')
(6655, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '440', '1220', '3', '104', 'JNTU', 'Computer Science', '6.627', '100', '0')
(6656, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '380', '1170', '3', '104', 'SVCE', 'CS', '7.7', '100', '0')
(6657, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '169', '158', '327', '4', '109', 'Nanjing University', 'Software Institute', '8.290000000000001', '100', '0')
(6658, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2008', '760', '490', '1250', '3.5', '97', 'JNTU', 'Computer Engg', '6.8', '100', '0')
(6659, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '151', '154', '305', '4', '115', 'Gurukula Kangri Vishwavidyalaya', 'Computer Science Engineering', '8.209999999999999', '100', '0')
(6660, 'Clemson University', '9', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2013', '162', '156', '318', '4', '114', 'Techno India College of Technology Rajarhat (West Bengal University of Technology)', 'Electronics and Communication', '8.29', '10', '0')
(6661, 'Clemson University', '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '164', '159', '323', '4', 'None', 'Clemson University', 'Electrical Engineering', '3.81', '4', '0')
(6662, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '162', '155', '317', '4', '111', 'ITM University M.D.U. Rohtak', 'Mechanical', '8.28', '10', '0')
(6663, 'Clemson University', '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall', 'None', '160', '156', '316', '4', 'None', 'None', 'ECE', '8.87', '10', '0')
(6664, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '790', '530', '1320', '3', '114', 'Anna University', 'Mechanical Engineering', '8.1', '10', '0')
(6665, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '620', '1420', '4', '114', 'MU', 'IT', '7.24', '100', '0')
(6666, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '159', '153', '312', '3.5', '107', 'Pune University', 'IT', '6.2', '100', '0')
(6667, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '620', '1400', '3', '109', 'University of Pune', 'Computer', '7.2', '100', '0')
(6668, 'Clemson University', '9', 'Admit', 'MS', 'Architectural Engineering', 'Fall ', '2014', 'None', 'None', '0', 'None', 'None', 'JNAFAU HYDERABAD', '0', '0', '0', '0')
(6669, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '168', '155', '323', '4', '110', 'MU', 'Mechanical engg.', '5.5', '100', '0')
(6670, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '162', '150', '312', '4.5', '101', 'None', 'Mechanical Engineering', '8.2', '10', '0')
(6671, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '161', '161', '322', '4', '112', 'SVNIT Surat', 'Mechanical', '8.3', '10', '0')
(6672, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '700', '540', '1240', '3', '99', 'Sri Venkateswara College of Engineering', 'Information Technology', '7.2', '100', '0')
(6673, 'Clemson University', '9', 'Admit', 'MS', 'Architecture', 'Fall ', '2015', '162', '157', '319', 'None', '115', 'MU', "Rachana Sansad\\'s Academy of Architecture Mumbai", '6.75', '100', '12')
(6674, 'Clemson University', '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '161', '154', '315', '3.5', '107', 'Goa University', 'Electronics & Telecommunications', '7.2', '100', '48')
(6675, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '154', '315', '3.5', '112', 'MU', 'Computer Engineering', '5.6', '100', '0')
(6676, 'Clemson University', '9', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '580', '1380', '3.5', '107', 'NIT Durgapur', 'Electronics and Communication Engineering', '7.78', '10', '0')
(6677, 'Clemson University', '9', 'Admit', 'MS', 'Automotive Engineering', 'Fall ', '2010', '740', '730', '1470', '1470', '112', 'Thapar University', 'Mechanical Engineering', '8.13', '10', '0')
(6678, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '157', '153', '310', '4', '108', 'VTU', 'Computer Science', '6.6', '100', '0')
(6679, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '157', '323', '4', '110', 'Galgotias College of Engineering and Technology', 'Electronics and Instrumentation', '7.926', '100', '0')
(6680, 'Clemson University', '9', 'Admit', 'MS', 'Robotics', 'Fall ', '2015', '164', '153', '317', '3', '91', 'Mepco Schlenk Engineering College', 'EEE', '8.51', '10', '0')
(6681, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '780', '650', '1430', '3.5', '113', 'Fr.C.R.I.T. Vashi', 'Electronics and Tele Comm', '0', '0', '0')
(6682, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '710', '1500', '2.5', '114', 'Anna University', 'CSE', '7.58', '10', '0')
(6683, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '800', '500', '1300', '3', '100', 'NIT Jaipur', 'Mechanical Engineering', '7.56', '10', '0')
(6684, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '155', '152', '307', '3.5', '91', 'VIT University', 'CSE', '8.34', '10', '0')
(6685, 'Clemson University', '9', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2014', '164', '142', '306', '3', '93', 'GMRIT', 'Mechanical', '7.8', '100', '0')
(6686, 'Clemson University', '9', 'Admit', 'MS', 'Civil Engineering', 'Spring ', '2015', '163', '151', '314', '3', 'None', 'SRM', 'Civil Engineering', '8.82', '10', '0')
(6687, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '550', '1300', '3.5', '109', 'Coimbatore Insitute of Technology', 'CSE', '7', '10', '0')
(6688, 'Clemson University', '9', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2013', '157', '136', '293', '3.5', '87', 'RTM Nagpur University', 'Electrical Engg', '6.503', '100', '0')
(6689, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(6690, 'Clemson University', '9', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '790', '510', '1300', '4', '114', 'NIT Rourkela', 'Electronics and Communication Department', '9.45', '10', '0')
(6691, 'Clemson University', '9', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '760', '640', '1400', '4.5', '113', 'JNTU', 'ECE', '7.9', '100', '0')
(6692, 'Clemson University', '9', 'Admit', 'MS', 'Civil Engineering', 'Spring ', '2014', '154', '149', '303', '3', '7', 'MVGR College of Engg (JNTU-K)', 'Civil Engineering', '6.811', '100', '0')
(6693, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall', 'None', '168', '153', '321', '3', '107', 'NIT Hamirpur', 'Mechanical Engineering', '7.4', '10', '0')
(6694, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '690', '520', '1210', '3.5', '96', 'Koneru Lakshmaiah College of Engineering', 'Industrial & Production Engineering', '7.4', '100', '0')
(6695, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '710', '420', '1130', '3', '97', 'M.G.M College of Eng', 'Computer', '7.2', '100', '0')
(6696, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '160', '155', '315', '4.5', 'None', 'SSN College of Engineering', 'Mechanical', '8.1', '10', '0')
(6697, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '370', '720', '1090', '3.5', '93', 'Osmania University', 'Mechanical', '0', '0', '0')
(6698, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '720', '540', '1260', '3.5', '107', 'B N M Institute of Technology', 'ISE', '7.172', '100', '0')
(6699, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '158', '153', '311', '3.5', '103', 'VTU', 'Computer Science Engg', '7', '100', '0')
(6700, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '740', '470', '1210', '3', '87', 'Vishwakarma Institute of Technology', 'Industrial Engineering', '9.45', '10', '0')
(6701, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '740', '510', '1250', '3', '102', 'K J Somaiya College of Engiineering', 'Mechanical Engineering', '6.4590000000000005', '100', '0')
(6702, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '800', '570', '1370', '3.5', '113', 'Govt Rajiv Gandhi Institute of Technology', 'ME', '7.8', '100', '0')
(6703, 'Clemson University', '9', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2015', '161', '157', '318', '4.5', '114', 'NUST', 'Electrical and Power Engineering Department - Electronics Engineering', '3.13', '4', '3')
(6704, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '155', '314', '4', '106', 'University of Mumbai', 'Computer Engineering', '5.574', '100', '0')
(6705, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '710', '540', '1250', '3', '81', 'Thiagarajar College of engineering', 'Computer Science', '9.31', '10', '0')
(6706, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '163', '153', '316', '3.5', '107', 'Sardar Patel University', 'mechanical engineering', '8.43', '10', '0')
(6707, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '159', '144', '303', '3', '91', 'GITAM', 'Mechanical Engineering', '9.11', '10', '0')
(6708, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '390', '1190', '3', '103', 'Pune University', 'Information Technology', '6.892', '100', '0')
(6709, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '360', '1130', '3.5', '111', 'Anna University', 'Computer Science & Engg', '7.9', '100', '0')
(6710, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '790', '380', '1170', '3.5', '101', 'RGPV', 'Information Technology', '7.616', '100', '0')
(6711, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '720', '440', '1160', '4', '107', 'Pune University', 'Mechanical Engineering', '6.872', '100', '0')
(6712, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '157', '146', '303', '4', '110', 'Government Engineering College Thrissur Kerala', 'Mechanical Engineering', '7.25', '100', '0')
(6713, 'Clemson University', '9', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(6714, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '720', '530', '1250', '3.5', '101', 'Anna University', 'Mechanical Engineering', '8.05', '100', '0')
(6715, 'Clemson University', '9', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2012', '164', '156', '320', '4', '110', 'University of Calicut', 'INSTRUMENTATION & CONTROL', '7.74', '100', '0')
(6716, 'Clemson University', '9', 'Admit', 'MS', 'biosystems engineering', 'Fall ', '2011', '710', '650', '1360', '4', '104', 'SASTRA', 'biotechnology', '9.5', '10', '0')
(6717, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '680', '570', '1250', '3.5', '106', 'MU', 'Information Technology', '6.5', '100', '0')
(6718, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '155', '147', '302', '3.5', '110', 'None', 'ECE', '8.1', '100', '0')
(6719, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '650', '1450', '4', '106', 'NIT Durgapur', 'CSE', '8.68', '10', '0')
(6720, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '420', '1170', '3', '96', 'COEP', 'IT', '7.05', '10', '0')
(6721, 'Clemson University', '9', 'Admit', 'MS', 'Automotive Engineering', 'Fall ', '2013', '159', '145', '304', '3', '93', 'Ajalakshmi Engineering College', 'Automobile Engineering', '8.1', '10', '0')
(6722, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '160', '320', '4', '109', 'B M S College of Engineering', 'Computer Science and Engineering', '7.74', '100', '0')
(6723, 'Clemson University', '9', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '158', '155', '313', '4.5', '106', 'VTU', 'Electronics and Communication', '7.3', '100', '13')
(6724, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '800', '600', '1400', '4', '111', 'SSN College of Engineering', 'Mechanical Engineering', '8.99', '10', '0')
(6725, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '160', '147', '307', '3.5', 'None', 'Anna University', 'Mechanical Engineering', '8.1', '100', '0')
(6726, 'Clemson University', '9', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2012', '760', '630', '1390', '4', '108', 'K J Somaiya College of Engiineering', 'Electronics', '7', '100', '0')
(6727, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '160', '146', '306', '3', 'None', 'Coimbatore Insitute of Technology', 'Mechanical', '9.15', '10', '0')
(6728, 'Clemson University', '9', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2011', '690', '500', '1190', '2.5', '89', 'AISSMS College of Engineering Pune', 'Civil', '6.4', '100', '0')
(6729, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '750', '510', '1260', '3.5', '86', 'Anna University', 'Computer Science', '8.040000000000001', '100', '0')
(6730, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '158', '153', '311', '4', '117', 'VTU', 'Information Science and Engineering', '7.5', '100', '0')
(6731, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '670', '430', '1100', '2.5', '100', 'SASTRA', 'Information and Communication Tech.', '6.6', '10', '0')
(6732, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '162', '157', '319', '4', '113', 'BIT Mesra', 'Mechanical', '8.5', '10', '0')
(6733, 'Clemson University', '9', 'Admit', 'MS', 'Automotive Engineering', 'Fall ', '2013', '168', '153', '321', '3', '102', 'NIT Surat', 'Production Engineering', '8.24', '10', '0')
(6734, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Spring ', '2014', '156', '150', '306', '3', '100', 'Manipal Institue of Technology', 'MECHANICAL', '7', '10', '0')
(6735, 'Clemson University', '9', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '780', '650', '1430', 'None', '120', 'VTU', 'ECE', '7.3709999999999996', '100', '0')
(6736, 'Clemson University', '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2007', '780', '370', '1150', '5', '270', 'College of Technology Pantnagar', 'Electronics and Communication Engineering', '7.922', '10', '0')
(6737, 'Clemson University', '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '166', '151', '317', '3.5', '111', 'Amrita School of Engineering', 'Electrical Engineering', '8.2', '10', '0')
(6738, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '157', '146', '303', '3', '96', 'Anna University', 'Mechanical Engineering', '7', '10', '0')
(6739, 'Clemson University', '9', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2014', '800', '570', '1370', '3.5', '109', 'MSRIT', 'Electrical and Electronics', '8.74', '10', '24')
(6740, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '790', '490', '1280', '3.5', '110', 'MU', 'Mechanical', '7.3', '100', '0')
(6741, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '660', '1460', '3.5', '113', 'None', 'Electronics and Comm', '7.56', '100', '0')
(6742, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical / Industrial Engg.', 'Fall ', '2013', '163', '160', '323', '4.5', '117', 'Manipal Institue of Technology', 'Mechanical', '8.7', '10', '0')
(6743, 'Clemson University', '9', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '780', '530', '1310', '4', '103', 'Anna University', 'ECE', '8.4', '100', '0')
(6744, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '159', '149', '308', '3', '99', 'Thiagarajar College of engineering', 'mechanical', '8.87', '10', '0')
(6745, 'Clemson University', '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '600', '1390', '4', '108', 'Asansol Engineering College', 'Elctrical Engineering', '8.27', '10', '0')
(6746, 'Clemson University', '9', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '162', '154', '316', '3.5', '114', 'VTU', 'Electronics and Communication', '8.31', '10', '0')
(6747, 'Clemson University', '9', 'Admit', 'MS', 'Applied Mathematics', 'Fall ', '2013', '750', '530', '1280', '2.5', '102', 'University of Dhaka', 'Mathematics', '7.24', '100', '0')
(6748, 'Clemson University', '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '760', '540', '1300', '3.5', '113', 'University of Pune', 'Electrical', '7.813', '100', '0')
(6749, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '480', '1260', '3', '104', 'Pune University', 'Computer Engineering', '6.5200000000000005', '100', '0')
(6750, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '166', '157', '323', '3', '103', 'Goa University', 'Mechanical Dept.', '7.43', '100', '0')
(6751, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '163', '151', '314', '3', '106', 'Anna University', 'Information technology', '8', '100', '0')
(6752, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '800', '580', '1380', '3.5', '111', 'Delhi College Of Engineeing', 'Mechanical Engineering', '6.7', '100', '0')
(6753, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '780', '380', '1160', '4', '96', 'MU', 'Mechanical', '6.5', '100', '0')
(6754, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '770', '460', '1230', '4', '110', 'Pune University', 'Mechanical', '7.109999999999999', '100', '0')
(6755, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '163', '152', '315', 'None', '105', 'MU', 'Mechanical', '7.0120000000000005', '100', '0')
(6756, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '720', '500', '1220', '3.5', '108', 'University of Mumbai', 'Mechanical Engineering', '6.1', '100', '0')
(6757, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '165', '150', '315', '4', '106', 'None', 'Mechanical Engineering', '9.1', '10', '0')
(6758, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '163', '149', '312', '4.5', '106', 'MU', '0', '5.8', '100', '0')
(6759, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '780', '440', '1220', '3', '97', 'MU', 'Instrumentation Engineering', '6.5', '100', '0')
(6760, 'Clemson University', '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '150', '311', '3.5', '94', 'NIT Paatna', 'ELECTRICAL ENGINEERING', '8.57', '10', '0')
(6761, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '720', '440', '1160', '3', '105', 'JNTU', 'Mechanical', '6.2', '100', '0')
(6762, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '168', '152', '320', '3.5', '103', 'Sardar Patel University', 'Mechanical', '9.18', '10', '0')
(6763, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '164', '152', '316', '3', '97', 'University of Mumbai', 'Production Engineering', '7.029999999999999', '100', '0')
(6764, 'Clemson University', '9', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2012', '800', '540', '1340', '2.5', '104', 'NIT DGP', 'CE', '3.64', '4', '0')
(6765, 'Clemson University', '9', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2012', '770', '600', '1370', '3.5', '104', 'Pune University', 'Electronics and Telecom', '7.286', '100', '0')
(6766, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '520', '1320', '4', '90', 'Reputed private institute [deemed university] equivalent in standard to a upper-middle-ranked NIT', 'Computer Science', '6', '10', '0')
(6767, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '450', '1250', '3.5', '98', 'JNTU', 'ECE', '7.4', '100', '0')
(6768, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '169', '151', '320', '3.5', '108', 'NIT Jaipur', 'Mechanical', '6.2', '10', '0')
(6769, 'Clemson University', '9', 'Admit', 'MS', 'None', 'Fall ', '2013', '164', '153', '317', '4', '114', 'CEG', 'Manufacturing Engineering', '8.81', '10', '0')
(6770, 'Clemson University', '9', 'Admit', 'MS', 'Civil and Environmental Engg', 'Fall ', '2015', '164', '149', '313', '4', '113', 'Pondicherry University', 'Civil Engg', '7.7', '10', '0')
(6771, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '800', '520', '1320', '3.5', '94', 'Pune University', 'Mechanical', '7.74', '100', '0')
(6772, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '610', '1410', '4', '107', 'R V College of Engineering', 'computer science', '7.9', '100', '0')
(6773, 'Clemson University', '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '160', '153', '313', '4', '102', 'Sri Venkateswara College of Engineering', 'EEE', '7.5', '10', '0')
(6774, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '152', '150', '302', '3', '93', 'None', '0', '3.87', '4', '0')
(6775, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '780', '520', '1300', '4', '112', 'VTU', 'Mechanical', '7.7', '100', '0')
(6776, 'Clemson University', '9', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Spring ', '2016', '159', '154', '313', '3.5', '113', 'VTU', 'Electrical and Electronics', '8.008', '100', '17')
(6777, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '151', '313', '3.5', '106', 'MU', 'Computer Engineering', '6.025', '100', '58')
(6778, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '167', '158', '325', '3', '110', 'VIT University', 'Mechanical', '8.73', '10', '0')
(6779, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '720', '380', '1100', '3.5', '88', 'Anna University', 'CSE', '8', '10', '0')
(6780, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '720', '380', '1100', '3.5', '88', 'Anna University', 'Computer Science', '8', '10', '0')
(6781, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '520', '1290', '3', '118', 'SSN College of Engineering', 'Information Technology', '7.2', '100', '0')
(6782, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '690', '1480', '3', '97', 'Pune University', 'Computer', '7.3', '100', '0')
(6783, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '750', '500', '1250', '3.5', '100', 'University of Pune', 'Mechanical', '6.7', '100', '0')
(6784, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '800', '430', '1230', '4', '104', 'JNTU', 'mechanical engineering', '7.4', '100', '0')
(6785, 'Clemson University', '9', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2012', '770', '630', '1400', '3', '104', 'Technological Edu. Institute of Piraeus', 'Electrical Engineering', '6.49', '10', '0')
(6786, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '420', '1170', '3', '94', 'TCET mumbai university', 'Information technology', '6.242', '100', '0')
(6787, 'Clemson University', '9', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '169', '161', '330', '4', '109', 'NIT Rourkela', 'Electronics and Instrumentation Engg', '9.41', '10', '0')
(6788, 'Clemson University', '9', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2011', '770', '530', '1300', '3.5', '106', 'SAKEC Mumbai University', 'Electronics', '7.023000000000001', '100', '0')
(6789, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '167', '157', '324', '3.5', '102', 'None', 'Mechanical', '8', '100', '29')
(6790, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '159', '148', '307', '3', '101', 'University of Pune', 'Mechanical', '6.8', '100', '0')
(6791, 'Clemson University', '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '740', '590', '1330', '4', '104', 'NIT Silchar', 'Electrical Engineering', '6.67', '10', '0')
(6792, 'Clemson University', '9', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2011', '790', '520', '1310', '3', '99', 'BITS Pilani', 'Electronics & Instrumentation', '8', '10', '0')
(6793, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '150', '308', '3.5', '102', 'PSG College of Technology', 'ECE', '9.2', '10', '33')
(6794, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '170', '158', '328', '3.5', '108', 'IIT Indore', 'Mechanical Engineering', '7.16', '10', '24')
(6795, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', 'None', 'None', '0', 'None', 'None', 'VIT University', 'Mechanical', '7.82', '10', '0')
(6796, 'Clemson University', '9', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2011', '620', '580', '1200', '3.5', '86', 'Pune University', 'computer engg', '6', '100', '0')
(6797, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '165', '155', '320', '3.5', '113', 'None', '0', '3.2', '4', '44')
(6798, 'Clemson University', '9', 'Admit', 'MS', 'Computer Engineering', 'Fall', 'None', '770', '500', '1270', '3.5', '111', 'Ansal Institute of Technology', 'Computer Science', '7.3', '100', '0')
(6799, 'Clemson University', '9', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '610', '1410', '3.5', '108', 'DA-IICT', 'ECE', '6.79', '10', '0')
(6800, 'Clemson University', '9', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '752', '491', '1243', '3', '235', 'BITS Pilani', 'ENGGINEERING', '7', '10', '0')
(6801, 'Clemson University', '9', 'Admit', 'MS', 'Automotive Engineering', 'Fall ', '2011', '730', '580', '1310', 'None', '113', 'NMAMIT Karkala Karnataka', 'Mech Engineering', '8.6', '10', '0')
(6802, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '760', '490', '1250', '3', '89', 'Pune University', 'Mechanical', '6.3', '100', '0')
(6803, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '163', '146', '309', '3.5', '106', 'Pune University', 'Mechanical Engineering', '6.3', '100', '0')
(6804, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '770', '730', '1500', '4', '114', 'VIT University', 'Mechanical with spl. in Energy', '8.63', '10', '0')
(6805, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '161', '154', '315', '3.5', '111', 'Delhi College Of Engineeing', 'Production and Industrial Engg', '6.5', '100', '0')
(6806, 'Clemson University', '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '165', '154', '319', '3.5', '107', 'Pune University', 'E&TC;', '6.5', '100', '0')
(6807, 'Clemson University', '9', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2011', '760', '540', '1300', '3', '101', 'JNTU', 'Computer Science', '0', '0', '0')
(6808, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '163', '152', '315', '4', '111', 'COEP', 'Production Engineering (Sandwich)', '8.94', '10', '16')
(6809, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '780', '520', '1300', '4.5', '280', 'JNTU', 'Computer Science and Engineering', '6.7', '100', '0')
(6810, 'Clemson University', '9', 'Admit', 'MS', 'Electrical and computer engineering electrical engineering telecommunications engineering', 'Fall ', '2015', '162', '157', '319', '3', '112', 'PCCOE Pune University', 'Electronics and Telecommunication Engineering', '0', '0', '28')
(6811, 'Clemson University', '9', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '720', '640', '1360', '4', 'None', 'BNMIT', 'ECE', '7.3', '100', '0')
(6812, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '160', '152', '312', '3', '102', 'VTU', 'Mechanical engineering', '7.35', '100', '0')
(6813, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Spring', 'None', '167', '149', '316', '2.5', '90', 'NIT Warangal', 'ECE', '7.36', '10', '26')
(6814, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Spring ', '2012', '800', '620', '1420', '4', '102', 'Thiagarajar College of engineering', 'Mechanical engineering', '8.77', '10', '0')
(6815, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '154', '152', '306', '3.5', '102', 'PESIT', 'Mechanical Engineering', '6.3', '10', '0')
(6816, 'Clemson University', '9', 'Admit', 'MS', 'Automotive Engineering', 'Fall ', '2012', '161', '149', '310', 'None', '96', 'K J Somaiya College of Engiineering', 'mechanical engineering', '6.4', '100', '0')
(6817, 'Clemson University', '9', 'Admit', 'MS', 'Automotive Engineering', 'Fall ', '2012', '161', '149', '310', '310', '96', 'K J Somaiya College of Engiineering', 'mechanical engineering', '6.4', '100', '0')
(6818, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '165', '149', '314', '3.5', '109', 'Univ Of Pune', 'Mechanical', '5.8', '100', '0')
(6819, 'Clemson University', '9', 'Admit', 'MS', 'Automotive Engineering', 'Fall ', '2012', '160', '156', '316', '4.5', '111', 'NIT Calicut', 'Mechanical', '6.23', '10', '0')
(6820, 'Clemson University', '9', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2011', '790', '320', '1110', '3', '102', 'MU', 'Civil', '7.8', '100', '0')
(6821, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '158', '151', '309', '3', '93', 'Mody University', 'MCA', '9.2', '10', '0')
(6822, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '164', '152', '316', '3.5', '110', 'Pune University', 'Mechanical Engineering', '6.9799999999999995', '100', '0')
(6823, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '158', '150', '308', '2.5', 'None', 'Panimalar Engineering College', 'Computer science', '7.4', '100', '0')
(6824, 'Clemson University', '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '165', '151', '316', 'None', '112', 'Sri Venkateswara College of Engineering', 'EEE', '7.94', '10', '0')
(6825, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '153', '315', '3.5', '103', 'Andhra University', 'CSE', '8.14', '10', '47')
(6826, 'Clemson University', '9', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '161', '156', '317', '4', '111', 'Osmania University', 'ECE', '8.23', '100', '0')
(6827, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '160', '148', '308', '3', '100', 'MU', 'Computer Engineer', '5.6', '100', '0')
(6828, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '162', '155', '317', '3.5', '106', 'Anna University / Sri Ramakrishna Engineering College', 'Mechanical Engineering', '8.45', '10', '33')
(6829, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '161', '152', '313', '4', '102', 'SRM', 'Mechanical Engg', '8.6', '10', '0')
(6830, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '720', '400', '1120', '4', '104', 'ICFAI', 'CSE', '7.95', '10', '0')
(6831, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '165', '160', '325', '4', '109', 'Calicut University', 'Mechanical Engineering', '7.96', '10', '0')
(6832, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '161', '152', '313', '4', '107', 'Sri Sairam Engineering College', 'Electronics and Instrumentation', '7.95', '10', '0')
(6833, 'Clemson University', '9', 'Admit', 'MS', 'Automotive Engineering', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(6834, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '161', '159', '320', '3.5', 'None', 'Aurora College of Engineering', 'Mechanical Engg', '6.970000000000001', '100', '0')
(6835, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '520', '1310', '4', '107', 'PESIT', 'Electronics and communication', '7.726999999999999', '100', '0')
(6836, 'Clemson University', '9', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '159', '139', '298', '2', 'None', 'None', 'Computer Science', '8.37', '10', '0')
(6837, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '158', '154', '312', '3', 'None', 'MVSR', 'I.T', '8.2', '100', '0')
(6838, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '720', '300', '1020', '3.5', '101', 'None', '0', '0', '0', '0')
(6839, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '720', '300', '1020', '3.5', '101', 'R N S Institute of Technology', 'Computer Science', '7.4', '100', '0')
(6840, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Spring ', '2012', '780', '450', '1230', 'None', '98', 'Anna University', 'Mechanical', '7.36', '10', '0')
(6841, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '166', '152', '318', '4', '105', 'BITS Pilani', 'Mechanical Eng', '8.98', '10', '0')
(6842, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '162', '162', '324', '3.5', '111', 'Anna University', 'Mechanical Engineering', '7.8', '100', '44')
(6843, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '169', '156', '325', '3.5', '102', 'VTU', 'ECE', '7', '100', '0')
(6844, 'Clemson University', '9', 'Admit', 'MS', 'Electrical and computer science', 'Fall ', '2012', '740', '610', '1350', 'None', '112', 'University of Pune', 'ENTC', '6.0200000000000005', '100', '0')
(6845, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '166', '157', '323', '3', '102', 'VNR VJIET', 'Computer Science', '7.529999999999999', '100', '0')
(6846, 'Clemson University', '9', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '760', '660', '1420', '4', '108', 'The Technological institute of Textile and Sciences Bhiwani', 'Electronics & Communication Engineering', '6.83', '100', '0')
(6847, 'Clemson University', '9', 'Admit', 'MS', 'Electronics and Communication', 'Spring ', '2016', '163', '158', '321', '5.5', 'None', 'University of Calicut', 'Electronics and Communication Engineering', '6.5', '100', '54')
(6848, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '168', '157', '325', '3.5', '104', 'VCET', 'MEchanical', '6.4', '100', '12')
(6849, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '650', '440', '1090', '3', '91', 'Government College Of Engineering Aurangabad', 'Information Technology', '6.9', '100', '0')
(6850, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '750', '430', '1180', '3.5', '101', 'CBIT', 'IT', '7.375', '100', '0')
(6851, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '164', '155', '319', '3.5', '109', 'Pune University', 'Mechanical Engineering', '8.83', '10', '0')
(6852, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '800', '630', '1430', '4', '109', 'Shivaji University', 'mechanical', '7.7', '10', '0')
(6853, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '159', '154', '313', '3', 'None', 'Guru Gobind Singh Indraprashta University', 'Electrical and electronics', '7.5', '100', '0')
(6854, 'Clemson University', '9', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '165', '164', '329', '4.5', '119', 'Dayananda Sagar College of Engineering', 'ece', '7.8', '100', '0')
(6855, 'Clemson University', '9', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '160', '156', '316', '4', '103', 'Delhi College Of Engineeing', 'Electrical Engineering', '6.6', '100', '22')
(6856, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '570', '1330', '3', '110', 'COEP', 'Computer Science', '6.790000000000001', '100', '0')
(6857, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '750', '500', '1250', '3', '86', 'Chilkur Balaji Institute of Tecnology (JNTUH)', 'C.S.E', '7.8', '100', '0')
(6858, 'Clemson University', '9', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2015', '159', '160', '319', '3.5', '109', 'VTU', 'Civil Engineering', '8.05', '100', '0')
(6859, 'Clemson University', '9', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall', 'None', '167', '148', '315', '4.5', '108', 'Osmania University', 'Electronics and Communication Engineering', '8.67', '100', '0')
(6860, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '155', '315', '3', '109', 'MGIT (JNTU)', 'CSE', '7.4', '100', '0')
(6861, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '164', '148', '312', '3', 'None', 'VIT University', 'Mechanical( ABET Accredited)', '0.9099999999999999', '100', '0')
(6862, 'Clemson University', '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(6863, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '158', '154', '312', '4', '113', 'Pune University', 'Electronics & Telecommunication', '6', '100', '8')
(6864, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '155', '319', '3.5', '105', 'NMIMS', 'Computer Science', '3.26', '4', '0')
(6865, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '400', '1190', '3', '98', 'JSSATE / VTU', 'CS', '7.4', '100', '0')
(6866, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '800', '720', '1520', '4', '116', 'NIT Durgapur', 'Computer Science and Engineering', '7.89', '10', '0')
(6867, 'Clemson University', '9', 'Admit', 'MS', 'Civil Engineering', 'Fall', 'None', '159', '150', '309', '3.5', '96', 'Amrita School of Engineering', 'Civil', '0.819', '100', '0')
(6868, 'Clemson University', '9', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '750', '620', '1370', '3.5', '103', 'COEP', 'Electronics and Telecommunication', '7.8', '10', '0')
(6869, 'Clemson University', '9', 'Admit', 'MS', 'Electrical and computer science', 'Fall ', '2011', '750', '620', '1370', '3.5', '103', 'COEP', 'Electronics and Telecommunication', '7.8', '10', '0')
(6870, 'Clemson University', '9', 'Admit', 'MS', 'Electronic and Telecommunication Engineering', 'Fall ', '2012', '790', '620', '1410', '3.5', '108', 'MU', 'Electronics and Telecommunication', '6.9', '100', '0')
(6871, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '158', '143', '301', '3.5', 'None', 'SNIST', 'Electronics and Computer Engineering', '8.298', '100', '15')
(6872, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '158', '147', '305', '3.5', '104', 'VTU', 'Industrial engineering', '7.3', '100', '0')
(6873, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '730', '670', '1400', '4', '115', 'None', 'Mechanical Engineering', '7.6', '100', '0')
(6874, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '160', '159', '319', '3.5', '111', 'MU', 'Automobile Engineering', '6.2', '100', '0')
(6875, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '430', '1230', '4', '110', 'Pune University', 'Computer', '6.9', '100', '0')
(6876, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '700', '480', '1180', '3', '89', 'Anna University', 'Computer Science', '7.2', '100', '0')
(6877, 'Clemson University', '9', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '170', '155', '325', '3.5', '111', 'ASE Blr', 'ECE', '8.22', '10', '0')
(6878, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '156', '150', '306', '3', '105', 'BVBCET', 'mechanical', '8.98', '10', '0')
(6879, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '160', '150', '310', '3', 'None', 'MU', 'CS', '6.1', '100', '0')
(6880, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '350', '1150', '3.5', '104', 'Madras Institute of Technology', 'Computer Science', '8', '10', '0')
(6881, 'Clemson University', '9', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2011', '740', '570', '1310', '3.5', '110', 'University of Mumbai', 'Electronics', '6.2', '100', '0')
(6882, 'Clemson University', '9', 'Admit', 'MS', 'Automotive Engineering', 'Fall ', '2013', '800', '630', '1430', '4.5', '113', 'University of Mumbai', 'Information Technology', '6.6', '100', '34')
(6883, 'Clemson University', '9', 'Admit', 'MS', 'Automotive Engineering', 'Fall ', '2016', '162', '155', '317', '3', 'None', 'Medicaps Institute of Science & Technology Indore', 'automobile', '6.67', '10', '0')
(6884, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '158', '146', '304', '3', '96', 'Don Bosco Institute of Technology', 'IT', '6.7', '100', '24')
(6885, 'Clemson University', '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2007', '800', '630', '1430', '4', '283', 'Osmania University', 'Electronics and Communication', '8.292', '100', '0')
(6886, 'Clemson University', '9', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '160', '152', '312', '3.5', '95', 'University of Pune', 'E&TC;', '6.58', '100', '8')
(6887, 'Clemson University', '9', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2014', '161', '149', '310', '3', '107', 'Sir MVIT', 'Civil engineering', '0', '0', '0')
(6888, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '750', '470', '1220', '4', '109', 'The National Institute of Engineering', 'Mechanical Engineering', '6.5', '100', '0')
(6889, 'Clemson University', '9', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '168', '151', '319', '4', '117', 'BITS Hyderabad', 'ECE', '9.22', '10', '0')
(6890, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '790', '450', '1240', '3', '97', 'VITU', 'Mechanical', '8.5', '10', '0')
(6891, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '160', '155', '315', '3.5', '105', 'BITS Pilani', 'Mechanical', '7.39', '10', '0')
(6892, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '158', '146', '304', '3.5', '7', 'Anna University', 'Mechanical engg', '0.798', '100', '0')
(6893, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '160', '149', '309', '3.5', '104', 'Chaitanya Bharathi Institute of Technology', 'Mechanical Production', '7.6', '100', '0')
(6894, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '750', '420', '1170', '3', '100', 'GGSIPU', 'mechanical n automation', '7.3', '100', '0')
(6895, 'Clemson University', '9', 'Admit', 'MS', 'Automotive Engineering', 'Fall ', '2015', '170', '158', '328', '4', '107', 'Sri Venkateswara College of Engineering', 'EEE', '8.4', '100', '46')
(6896, 'Clemson University', '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '760', '580', '1340', '4', '110', 'GITAM', 'EEE', '6.6', '10', '0')
(6897, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '161', '152', '313', '4', '109', 'JNTU', 'CS', '7.1', '100', '0')
(6898, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '590', '1390', '3', '105', 'Anna University', 'Computer Science', '8.2', '100', '0')
(6899, 'Clemson University', '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '163', '155', '318', '3.5', '111', 'Velammal Engineering College', 'EEE', '8.5', '10', '0')
(6900, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2010', '740', '620', '1360', '4', '114', 'Mar Athanasius College of Engineering Kerala', 'Mechanical Engineering', '7', '100', '0')
(6901, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '800', '600', '1400', '3', '109', 'Vasavi College of Engineering', 'mech', '7.07', '100', '0')
(6902, 'Clemson University', '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2010', '790', '550', '1340', '4', '100', 'PESIT', 'ECE', '6.945', '100', '0')
(6903, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '164', '156', '320', '3', '107', 'COEP', 'Production engineering', '8.11', '10', '0')
(6904, 'Clemson University', '9', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '166', '154', '320', '3', '107', 'Delhi College Of Engineeing', 'Electrical and Electronics', '7.419', '100', '24')
(6905, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '163', '143', '306', '3.5', '107', 'K J Somaiya College of Engiineering', 'Mechanical Engg', '6.5', '100', '0')
(6906, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '720', '530', '1250', '3', '91', 'University of Pune', 'information technology', '6.5', '100', '0')
(6907, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '164', '161', '325', '4', '114', 'SPCE', 'Mech', '7.414', '100', '0')
(6908, 'Clemson University', '9', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(6909, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '156', '158', '314', '4.5', '105', 'Amrita School of Engineering', 'Mechanical engineering', '6.42', '10', '0')
(6910, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '161', '141', '302', '3', '107', 'SRKNEC', 'Industrial Engineering', '7.089', '100', '0')
(6911, 'Clemson University', '9', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2009', '780', '440', '1220', '4.5', '103', 'Anna University', 'Computer Science and Engineering', '7.7', '100', '0')
(6912, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '157', '154', '311', '4', '111', 'Swami Vivekananda Institute of Science and Technology', 'Mechanical Enginnering', '7.8', '10', '0')
(6913, 'Clemson University', '9', 'Admit', 'MS', 'Electronics & Communication', 'Fall ', '2012', '750', '570', '1320', '4', '99', 'GITAM', 'ECE', '8.98', '10', '0')
(6914, 'Clemson University', '9', 'Admit', 'MS', 'Automotive Engineering', 'Fall ', '2015', '167', '150', '317', '4', '104', 'NIT Raipur', 'Mechanical Engineering', '8.89', '10', '0')
(6915, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '520', '1300', '3.5', '114', 'None', 'Computer Science', '7.6', '100', '0')
(6916, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '167', '160', '327', '4.5', '115', 'Pune University', 'mechanical', '6.3', '100', '42')
(6917, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '530', '1330', '3', '96', 'Pune University', 'Information technology', '6.5', '100', '0')
(6918, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '760', '530', '1290', '3', '113', 'Sri Venkateswara College of Engineering', 'Mechanical Engineering', '8.28', '10', '0')
(6919, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '800', '440', '1240', '3.5', '98', 'NIT Bhopal', 'Computer Science & Engg.', '7', '10', '0')
(6920, 'Clemson University', '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '740', '690', '1430', '3.5', '111', 'PSG College of Technology', 'EEE (SW)', '8.3', '10', '0')
(6921, 'Clemson University', '9', 'Admit', 'MS', 'Civil Engineering', 'Spring ', '2014', '150', '147', '297', '3.5', 'None', 'MSRIT', 'civil', '7.9', '10', '0')
(6922, 'Clemson University', '9', 'Admit', 'MS', 'Electrical/ Art & Technology', 'Fall ', '2012', '166', '155', '321', '4', '113', 'University of Pune', 'E&TC;', '5.8', '100', '0')
(6923, 'Clemson University', '9', 'Admit', 'MS', 'Electrical & Computer Engg/MIS/Industrial/Systems Engg', 'Fall ', '2013', '161', '156', '317', '4.5', '113', 'University of Mumbai', 'Electronics', '7.3', '100', '0')
(6924, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '780', '470', '1250', '3', '96', 'MITS', 'MECHANICAL', '7.8', '100', '0')
(6925, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '165', '152', '317', '3.5', '109', 'National Institute of Engineering', 'Mechanical', '0.89', '100', '0')
(6926, 'Clemson University', '9', 'Admit', 'MS', 'Bioresource/Biosystems Engg', 'Fall ', '2012', '800', '550', '1350', '3.5', '110', 'Manipal Institue of Technology', 'Biotechnology', '8.83', '10', '0')
(6927, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '730', '520', '1250', '3', '100', 'Pune University', 'Mechanical', '6.2', '100', '0')
(6928, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Spring', 'None', '159', '150', '309', '3', '98', 'None', '0', '7.3', '100', '0')
(6929, 'Clemson University', '9', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2011', '750', '620', '1370', '4', 'None', 'PSG College of Technology', 'Biotechnology', '8.48', '10', '0')
(6930, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '570', '1320', '4', '106', 'K J Somaiya College of Engiineering', 'IT', '0', '0', '0')
(6931, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '164', '157', '321', '4', '100', 'MU', 'mechanical', '7.6', '100', '0')
(6932, 'Clemson University', '9', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(6933, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '154', '316', '3.5', 'None', 'JNTU', 'Information Technology', '7.411', '100', '0')
(6934, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '780', '380', '1160', '3', '98', 'Vignan Institute of Technology and Science', 'Mechanical Engineering', '7.81', '100', '0')
(6935, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '169', '152', '321', '4', '103', 'IIT Indore', 'Mechanical', '8.43', '10', '12')
(6936, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall', 'None', '163', '160', '323', '3.5', '105', 'Telangana', 'Mechanical', '8', '100', '12')
(6937, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '156', '137', '293', '2.5', '92', 'SRM', 'Mechanical Engineering', '8.391', '10', '0')
(6938, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '156', '148', '304', '4', '109', 'JNTU', 'Mechatronics', '7.058', '100', '0')
(6939, 'Clemson University', '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2010', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(6940, 'Clemson University', '9', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Spring ', '2014', '160', '160', '320', '3.5', '113', 'Fr. Conceicao Rodrigues College of Engineering', 'Electronics Engineering', '6.7829999999999995', '100', '0')
(6941, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '730', '360', '1090', '3', '92', 'Thiagarajar College of engineering', 'Computer Science Engineering', '7.56', '10', '0')
(6942, 'Clemson University', '9', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '161', '152', '313', '4.5', 'None', 'Amrita School of Engineering', 'Electrical and Electronics', '8.2', '10', '0')
(6943, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '740', '600', '1340', '4', '114', 'Modern College of Engineering', 'Mechanical Engineering', '7.6', '100', '0')
(6944, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '750', '350', '1100', '3', '90', 'NIT Rourkela', 'Mechanical', '8.36', '10', '0')
(6945, 'Clemson University', '9', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '162', '154', '316', '4.5', '108', 'University of Pune', 'Electronics & Telecommunications', '5.8', '100', '0')
(6946, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '168', '159', '327', '4', '115', 'NITK Surathkal', 'Mechanical Engg', '7.6', '10', '18')
(6947, 'Clemson University', '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '790', '550', '1340', '4', '101', 'COEP', 'Electrical', '7.48', '10', '0')
(6948, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '167', '167', '334', '5', '116', 'NITK Surathkal', 'Mechanical', '8.2', '10', '21')
(6949, 'Clemson University', '9', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2014', '162', '151', '313', 'None', 'None', 'Malaviya NIT Jaipur', 'Civil Engineering', '7.03', '10', '0')
(6950, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '800', '530', '1330', '3', '102', 'NIT Jamshedpur', 'Mechanical', '6.62', '10', '0')
(6951, 'Clemson University', '9', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2014', '170', '144', '314', '3', '99', 'Andhra University', 'Civil Engineering', '8.24', '10', '0')
(6952, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '730', '570', '1300', '4', 'None', 'Manipal Institue of Technology', 'Mechanical Engineering', '8.46', '10', '0')
(6953, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '160', '165', '325', '3.5', '110', 'NIT Bhopal', 'Mechanical Engg.', '7.53', '10', '0')
(6954, 'Clemson University', '9', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '160', '153', '313', '3', '112', 'Amrita School of Engineering', 'Electronics and communication', '8.19', '10', '24')
(6955, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '785', '360', '1145', '4', '91', 'Anna University', 'Mechanical', '8.3', '10', '0')
(6956, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '710', '500', '1210', '3.5', '96', 'MU', 'Computer Engg.', '5.785', '100', '0')
(6957, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '680', '560', '1240', '3.5', '108', 'Anna University', 'Electrical & Electronics', '8', '100', '0')
(6958, 'Clemson University', '9', 'Admit', 'MS', 'Automotive Engineering', 'Fall ', '2015', '167', '155', '322', '3.5', '111', 'Anna University', 'Mechanical Engineering', '7.9', '10', '32')
(6959, 'Clemson University', '9', 'Admit', 'MS', 'physics', 'Fall ', '2013', '164', '151', '315', '3.5', '112', 'University of Calcutta', 'Physics', '5.883', '100', '0')
(6960, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '160', '148', '308', '3.5', '105', 'Anna University', 'Mechanical Engineering', '6.7', '10', '0')
(6961, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '660', '550', '1210', '3', '92', 'RTM Nagpur University', 'Mechanical Engineering', '6.6', '100', '0')
(6962, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Spring ', '2014', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(6963, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '710', '330', '1040', '3', '83', 'JNTU', 'Mechnaical Engineering', '7.5', '100', '0')
(6964, 'Clemson University', '9', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2014', '790', '550', '1340', '3', '102', 'COEP', 'Civil', '7.16', '10', '0')
(6965, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '166', '143', '309', 'None', '91', 'Sri Venkateswara College of Engineering', 'CSE', '8', '100', '0')
(6966, 'Clemson University', '9', 'Admit', 'MS', 'mba', 'Spring ', '2015', '46', '25', '71', '4.5', 'None', 'Anna University', 'Mechanical', '8.87', '10', '0')
(6967, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '790', '570', '1360', '3.5', '110', 'None', '0', '0', '0', '0')
(6968, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '800', '570', '1370', '3.5', '103', 'YCCE', 'Mechanical Engineering', '7.220000000000001', '100', '0')
(6969, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2007', '800', '620', '1420', '4', '283', 'NIT Calicut', 'Mechanical Engineering', '8.46', '10', '0')
(6970, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '760', '400', '1160', '3.5', '96', 'Anna University', 'CSE', '8.48', '10', '0')
(6971, 'Clemson University', '9', 'Admit', 'MS', 'CS', 'Fall ', '2012', '800', '500', '1300', '5', '104', 'VTU', 'Electronics', '7', '100', '0')
(6972, 'Clemson University', '9', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2011', '710', '570', '1280', '3.5', '114', 'Goa University', 'E&TC;', '6.0009999999999994', '100', '0')
(6973, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '159', '148', '307', '3.5', '103', 'VTU', 'mechanical engineering', '7.7', '100', '0')
(6974, 'Clemson University', '9', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '570', '1370', '4', '114', 'None', 'E.C.E', '7', '100', '0')
(6975, 'Clemson University', '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '660', '1460', '3.5', '104', 'CoE Trivandrum', 'Electronics', '7.25', '10', '0')
(6976, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '740', '740', '1480', '4.5', '116', 'SSN College of Engineering', 'IT', '7.96', '10', '0')
(6977, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '157', '153', '310', '4.5', '100', 'CEG', 'Manufacturing Engineering', '8.4', '10', '0')
(6978, 'Clemson University', '9', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2013', '158', '145', '303', '3.5', '93', 'BVM Engineering College', 'Civil', '8.34', '10', '0')
(6979, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '160', '154', '314', '4', '112', 'R V College of Engineering', 'Industrial Engineering', '8.75', '10', '0')
(6980, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '770', '670', '1440', '3.5', '102', 'UPTU', 'Mechanical Engineering', '6.548', '100', '0')
(6981, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '166', '148', '314', '3', 'None', 'GITAM', 'Mechanical', '7.62', '10', '0')
(6982, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '152', '314', '3.5', '91', 'Jaypee Institute of Information Technology', 'Information Technology', '6.5', '10', '58')
(6983, 'Clemson University', '9', 'Admit', 'MS', 'Computational Engineering', 'Fall ', '2013', '164', '150', '314', '3', '104', 'BITS Goa', 'Mechanical Engineering', '7.17', '10', '0')
(6984, 'Clemson University', '9', 'Admit', 'MS', 'Automotive Engineering', 'Fall ', '2011', '740', '620', '1360', '4', '105', 'Amrita School of Engineering', 'Mechanical', '7.21', '10', '0')
(6985, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '163', '154', '317', '3.5', '108', 'PSG College of Technology', 'Mechanical Engineering', '8.28', '10', '48')
(6986, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '800', '710', '1510', '3.5', '108', 'Amrita School of Engineering', 'Mech', '7.6', '10', '0')
(6987, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '154', '154', '308', 'None', '114', 'SRKNEC Nagpur University', 'Industrial', '6.6', '100', '0')
(6988, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Spring ', '2015', '165', '157', '322', '3.5', '112', 'JNTU', 'Mechanical(Mechatronics)', '7.3', '100', '0')
(6989, 'Clemson University', '9', 'Reject', 'MS', 'Electronics Instrumentation and Control', 'Fall ', '2013', '160', '144', '304', '4', '100', 'Anna University', 'Electronics and instrumentation', '8.6', '10', '0')
(6990, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '155', '317', '4', 'None', 'RNSIT', 'CS', '7.2', '100', '0')
(6991, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '165', '151', '316', '4', '107', 'NIT Hamirpur', 'Mechanical Engineering', '7.42', '10', '6')
(6992, 'Clemson University', '9', 'Reject', 'MS', 'Computer Engineering / Electrical Computer Engineering', 'Fall ', '2015', '162', '152', '314', '3', '104', 'MU', '0', '6.2', '100', '0')
(6993, 'Clemson University', '9', 'Reject', 'MS', 'Industrial Engineering', 'Spring ', '2013', '161', '145', '306', '3', 'None', 'COEP', 'Production engineerimg', '7.26', '10', '0')
(6994, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '800', '600', '1400', '3', '106', 'Delhi College Of Engineeing', 'Mechanical', '5.63', '100', '0')
(6995, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '770', '480', '1250', '3', '99', 'GRIET', 'CSE', '7.587000000000001', '100', '0')
(6996, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '153', '312', '4', '109', 'Amrita School of Engineering', 'Computer Science', '7.69', '10', '0')
(6997, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '166', '148', '314', '4', '106', 'PESIT', 'Telecommunication', '8.07', '10', '0')
(6998, 'Clemson University', '9', 'Reject', 'MS', 'CS', 'Fall ', '2015', '159', '146', '305', '3', '91', 'Pune University', 'Computer Engineering', '6.11', '100', '0')
(6999, 'Clemson University', '9', 'Reject', 'MS', 'electronics', 'Fall ', '2012', '720', '590', '1310', '3', '96', 'MU', 'Electronics', '6.5', '100', '0')
(7000, 'Clemson University', '9', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2015', '161', '152', '313', '3', '97', 'Pune University', 'electrical engineering', '5.706', '100', '0')
(7001, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '720', '650', '1370', '4', '104', 'Prince Shri Venkateshwara Padmavathy Engineering College', 'EEE', '6.6', '10', '0')
(7002, 'Clemson University', '9', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2013', '151', '150', '301', '3', '99', 'Anna University', 'Mechanical Engineering', '7.62', '10', '0')
(7003, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '162', '151', '313', '3.5', '101', 'VTU', 'Mechanical', '9.2', '10', '0')
(7004, 'Clemson University', '9', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '161', '151', '312', '3', '84', 'Rajiv Gandhi Institute Of Technology', 'Instrumentation engg.', '5.6', '100', '0')
(7005, 'Clemson University', '9', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '162', '141', '303', '3', '92', 'Sir MVIT', 'Electronics and communication', '6.7', '100', '16')
(7006, 'Clemson University', '9', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '157', '153', '310', '3.5', '110', 'VTU', 'Mechanical', '6.2', '100', '0')
(7007, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '157', '142', '299', '3', '86', 'V J T I', 'EE', '7', '10', '0')
(7008, 'Clemson University', '9', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2013', '155', '148', '303', '3', '86', 'Shivaji University', 'civil engineering', '6.4', '100', '0')
(7009, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '142', '305', '3', '87', 'Dayananda Sagar College of Engineering', 'Electronics and communication', '6.9', '100', '0')
(7010, 'Clemson University', '9', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '158', '154', '312', '4', '104', 'Bannari Amman Institute Of Technology', 'Electrical and Electronics Engineering', '8.67', '10', '0')
(7011, 'Clemson University', '9', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '162', '154', '316', '3.5', '106', 'RNSIT', 'Electronics & Communication', '7.1', '100', '0')
(7012, 'Clemson University', '9', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Spring ', '2013', '161', '149', '310', '3', '103', 'University of Pune', 'Electronics and Telecommunication', '6.7', '100', '0')
(7013, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '790', '470', '1260', '3.5', '105', 'Pune University', 'Electronics and Telecomm.', '5.6', '100', '0')
(7014, 'Clemson University', '9', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '159', '148', '307', '3.5', '98', 'Fr. Conceicao Rodrigues College of Engineering', 'Electronics', '7.122', '100', '0')
(7015, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '152', '314', '3', '100', 'West Bengal University Of Technology', 'Electronics and Communicatiion Engineering', '7.62', '10', '0')
(7016, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '147', '158', '305', '3.5', '109', 'Anna University', 'Electrical and Electronics', '7.3', '10', '0')
(7017, 'Clemson University', '9', 'Reject', 'MS', 'energy', 'Fall ', '2012', '760', '450', '1210', '3', '104', 'VIT Pune', 'Instrumentation & Control', '8.61', '10', '0')
(7018, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '510', '1310', '4', '100', 'VIT Mumbai University', 'Computer Engg', '5.738', '100', '0')
(7019, 'Clemson University', '9', 'Reject', 'MS', 'Automotive Engineering', 'Fall ', '2014', '165', '162', '327', '3', '114', 'VIT University', 'Mechanical', '8.57', '10', '17')
(7020, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '158', '151', '309', '3', '101', 'PSG College of Technology', 'MECHANICAL ENGINEERING', '8', '10', '0')
(7021, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '167', '148', '315', '3.5', '90', 'COEP', 'Mechanical engineering', '7.45', '10', '30')
(7022, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '710', '560', '1270', '4', '112', 'University of Pune', 'Mechanical Engineering', '5.9', '100', '0')
(7023, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '150', '313', '3.5', '97', 'Ramdeobaba Kamla Nehru Engg College', 'Electronics', '6.420999999999999', '100', '0')
(7024, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '165', '148', '313', '2.5', '97', 'NIT Allahabad', 'Mechanical Engineering', '7.26', '10', '0')
(7025, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '147', '145', '292', '2.5', '90', 'Bharati Vidyapeeth', 'Mechanical', '6.765000000000001', '100', '0')
(7026, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '163', '163', '326', '4', '114', 'Anna University', 'Mechanical Engineering', '7.2', '100', '0')
(7027, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '164', '152', '316', '3', '97', 'BITS Pilani', 'Mechanical', '7.35', '10', '0')
(7028, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '160', '146', '306', '3.5', '107', 'Sir MVIT', 'TELECOMMUNICATION', '8.254000000000001', '100', '0')
(7029, 'Clemson University', '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '161', '141', '302', '2.5', 'None', 'Anna University', 'Electronics and Communication engineering', '8.3', '10', '0')
(7030, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '750', '670', '1420', '4', '110', 'Rajiv Gandhi Institute Of Technology', 'Mechanical Engineering', '6.1530000000000005', '100', '0')
(7031, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '158', '146', '304', '3', '101', 'Thiagarajar College of engineering', 'Mechanical Engineering', '8.84', '10', '0')
(7032, 'Clemson University', '9', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '164', '144', '308', '3', 'None', 'GTU', 'mechanical', '8.76', '10', '0')
(7033, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '530', '1290', '3.5', '101', 'Anna University', 'Electrical & Electronics Engineering', '7.7', '100', '0')
(7034, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '750', '330', '1080', '2.5', 'None', 'JNTU', 'Information Technology', '7.279999999999999', '100', '0')
(7035, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '450', '1230', '3', '107', 'MU', 'Computer Engineering', '5.8', '100', '0')
(7036, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '169', '150', '319', '3', '99', 'Jadavpur University', 'Electrical Engineering', '7.33', '10', '0')
(7037, 'Clemson University', '9', 'Reject', 'MS', 'Automotive Engineering', 'Fall ', '2015', '164', '151', '315', '3', 'None', 'Amrita School of Engineering', 'Mechanical Engineering', '9.01', '10', '25')
(7038, 'Clemson University', '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '169', '144', '313', '3', '98', 'Amrita School of Engineering', 'ECE', '8.01', '10', '0')
(7039, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '770', '660', '1430', '3', '106', 'MU', 'Mechanical', '5.9', '100', '0')
(7040, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '166', '162', '328', '3', '103', 'None', 'computer science', '7.68', '10', '0')
(7041, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall', 'None', '161', '149', '310', 'None', '93', 'MVSR', 'ECE', '7.7', '100', '0')
(7042, 'Clemson University', '9', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2014', '166', '144', '310', '3', '90', 'Manipal Institue of Technology', 'CIVIL', '6.6', '10', '6')
(7043, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '163', '156', '319', '3', '102', 'MU', 'Computer Engineering', '6.5', '100', '0')
(7044, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical / Industrial Engg.', 'Fall ', '2014', '162', '147', '309', '3', '98', 'RTM Nagpur University', 'mechanical', '6.1', '100', '0')
(7045, 'Clemson University', '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '165', '143', '308', '3', '96', 'MVSR', 'ECE', '8.9', '100', '0')
(7046, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Spring ', '2015', '160', '155', '315', '3', '105', 'VTU', 'Mechanical', '7.27', '10', '36')
(7047, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '740', '350', '1090', '3.5', '99', 'VTU', 'ECE', '7.3', '100', '0')
(7048, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '150', '311', '3', '106', 'SSN College of Engineering', 'EEE', '7.98', '10', '0')
(7049, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '740', '300', '1040', '2.5', '84', 'Sathyabama University', 'electronics and instrumentation', '8.1', '100', '0')
(7050, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Spring ', '2014', '161', '144', '305', '3', 'None', 'Osmania University', 'production engineering', '7.5', '100', '0')
(7051, 'Clemson University', '9', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '162', '147', '309', '3', '95', 'University of Pune', 'Electronics and Telecommunication', '6.2', '100', '12')
(7052, 'Clemson University', '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '158', '153', '311', '4', '114', "St Joseph's College of Engineering", 'ECE', '8.61', '10', '24')
(7053, 'Clemson University', '9', 'Reject', 'MS', 'Automotive Engineering', 'Fall ', '2013', '155', '150', '305', '3', '7', 'Pune University', 'Mechanical', '6.2', '100', '17')
(7054, 'Clemson University', '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '166', '147', '313', '3', '99', 'SRM', 'ECE', '8.79', '10', '0')
(7055, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '159', '146', '305', '4', '99', 'JNTU', 'CSE', '7.159000000000001', '100', '0')
(7056, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '162', '143', '305', '3', '95', 'NIT-Raipur', 'Mechanical', '7.77', '10', '0')
(7057, 'Clemson University', '9', 'Reject', 'MS', 'Telecommunication', 'Spring ', '2012', '790', '420', '1210', '3.5', '106', 'Dharamsinh Desai University', 'EC', '5.85', '100', '0')
(7058, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Spring ', '2015', '160', '147', '307', '3', '92', 'MU', 'Mechanical Engineering', '6', '100', '0')
(7059, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '158', '148', '306', '4', '98', 'K J Somaiya College of Engiineering', 'Computer Engineering', '5.8', '100', '0')
(7060, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '163', '149', '312', '3.5', '99', 'Amrita Vishwa Vidhyapeetham', 'Mechanical Engineering', '7.28', '10', '0')
(7061, 'Clemson University', '9', 'Reject', 'MS', 'Information Technology', 'Fall ', '2012', '157', '145', '302', '3', '103', 'PTU', 'cse', '8', '100', '0')
(7062, 'Clemson University', '9', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '158', '147', '305', '3', 'None', "St Joseph's College of Engineering", 'Mechanical engineering', '6.74', '10', '12')
(7063, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2009', '790', '500', '1290', '3.5', '113', 'University of Mumbai', 'Electronics Engineering', '6.6', '100', '0')
(7064, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '157', '147', '304', '3', '92', 'Rajasthan Technical University', 'Computer Science', '6.88', '100', '0')
(7065, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '153', '152', '305', '3', '100', 'None', 'cse', '6.5', '100', '0')
(7066, 'Clemson University', '9', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '162', '148', '310', '3', 'None', 'VTU', 'Telecommunication', '7.1', '100', '0')
(7067, 'Clemson University', '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '580', '1380', '3', '103', 'GITAM', 'ECE', '7.3', '10', '0')
(7068, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '420', '1220', '3', '106', 'BNMIT', 'Electronics and Communication', '7.2', '100', '0')
(7069, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Spring ', '2015', '160', '142', '302', '3', '95', 'VITS', 'mechanical', '7.1', '100', '0')
(7070, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '147', '309', '3.5', '98', 'VIT University', 'EEE', '8.75', '10', '0')
(7071, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '154', '154', '308', '3.5', '8', 'Anna University', 'Electronics and communication engineering', '6.8', '100', '0')
(7072, 'Clemson University', '9', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '162', '144', '306', '3', '96', 'Velammal Engineering College', 'production engineering', '8.35', '10', '0')
(7073, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '161', '147', '308', '3', '98', 'Dr. Ambedkar Institute of technology', 'Information Science', '7.767', '100', '0')
(7074, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '166', '153', '319', '3', '103', 'ISM Dhanbad', 'Mechanical engineering', '7.01', '10', '51')
(7075, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '161', '163', '324', '3', '109', 'R V College of Engineering', 'Mechanical Engineering', '6.7', '100', '0')
(7076, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '730', '490', '1220', '3', '102', 'JNTU', 'CSE', '7.3', '100', '0')
(7077, 'Clemson University', '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '159', '146', '305', '3.5', '98', 'Rajiv Gandhi Technical University', 'Electronics and Communication Engineering', '6.941', '100', '0')
(7078, 'Clemson University', '9', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '153', '149', '302', '2.5', '94', 'RGPV', 'Mechanical', '6.29', '10', '0')
(7079, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '155', '317', '4', '113', 'Anna University', 'EEE', '9', '10', '0')
(7080, 'Clemson University', '9', 'Reject', 'MS', 'Electronic and Telecommunication Engineering', 'Fall ', '2012', '160', '148', '308', '3.5', '105', 'VTU', 'Telecommunication', '6.1', '100', '0')
(7081, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '790', '550', '1340', '3.5', '106', 'MIT Pune Univ', 'Electronics & TeleCommunication Engg', '5.8', '100', '0')
(7082, 'Clemson University', '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2007', '770', '570', '1340', '4.5', '107', 'None', 'Electronics and Telecommunication', '6.1', '100', '0')
(7083, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '156', '150', '306', '3.5', '113', 'VTU', 'Computer Science and Engineering', '7.420999999999999', '100', '0')
(7084, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '158', '155', '313', '3', '106', 'MU', 'Electronics and Telecommunication', '6.3', '100', '0')
(7085, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '162', '324', '4.5', '117', 'Sri Venkateswara College of Engineering', 'Electronics and Communication', '7.04', '10', '0')
(7086, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '145', '306', '3', '103', 'B V Bhoomaraddi College of Engg & Tech (Affiliated to VTU)', 'Information Science and Engineering', '7.39', '10', '26')
(7087, 'Clemson University', '9', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '780', '360', '1140', '3', '99', 'MU', 'Electronics', '7', '100', '0')
(7088, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '750', '300', '1050', '3', '82', 'KLESCET', 'Electronics and Communication', '6.882', '100', '0')
(7089, 'Clemson University', '9', 'Reject', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(7090, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '720', '550', '1270', '2.5', '95', 'Sri Sairam Engineering College', 'Computer Science and Engineering', '6.9', '100', '0')
(7091, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '730', '390', '1120', '3', '101', 'Anna University', 'mechanical', '7.87', '10', '0')
(7092, 'Clemson University', '9', 'Reject', 'MS', 'MIS', 'Spring ', '2012', '780', '520', '1300', '3', '100', 'DA-IICT', 'ICT - Information and Communication Technology', '6.4', '10', '0')
(7093, 'Clemson University', '9', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '159', '150', '309', '3', '101', 'Sinhgad College of Engineering', 'Computer Engg', '6.393', '100', '0')
(7094, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '167', '143', '310', '3', '80', 'SRM', 'Aerospace', '9.3', '10', '0')
(7095, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical / Industrial Engg.', 'Fall ', '2014', '162', '150', '312', '3.5', '94', 'Datta Meghe College of Engineering', 'mechanical', '6.433', '100', '0')
(7096, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '158', '146', '304', 'None', '103', 'Pune University', 'Mechanical', '7.333', '100', '0')
(7097, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2', '780', '460', '1240', '3.5', 'None', 'Sri Venkateswara College of Engineering', 'CSE', '7.88', '10', '0')
(7098, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '158', '149', '307', '3.5', '7', 'JNTU', 'mechanical', '6.4', '100', '0')
(7099, 'Clemson University', '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '1510', 'None', '1510', 'None', '116', 'SRM', 'TCE', '8.2', '10', '0')
(7100, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '162', '152', '314', '3', '98', 'SASTRA', 'ECE', '8.37', '10', '0')
(7101, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '330', '1090', '3.5', '106', 'CUSAT', 'ECE', '3.14', '4', '0')
(7102, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '163', '145', '308', '3', '96', 'UPTU', 'Mechanical', '6.7219999999999995', '100', '48')
(7103, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '162', '139', '301', '3.5', '88', 'VTU', 'Info Science', '6.68', '100', '0')
(7104, 'Clemson University', '9', 'Reject', 'MS', 'Electronics & Communication', 'Fall ', '2012', '730', '610', '1340', '3.5', '93', 'VTU', 'Electronics and Communication', '7.720000000000001', '100', '0')
(7105, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', 'None', 'None', '0', '3.5', '108', 'MU', 'Mechanical Engineering', '6.6', '100', '8')
(7106, 'Clemson University', '9', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2010', '790', '560', '1350', '3.5', '107', 'None', '0', '0', '0', '0')
(7107, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '580', '1380', '3.5', '106', 'MU', 'electronics and telecommunications', '5.6', '100', '0')
(7108, 'Clemson University', '9', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2007', '800', '550', '1350', '4.5', '283', 'MU', 'Electronics', '5.5', '100', '0')
(7109, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '720', '450', '1170', '3', '97', 'MU', 'Mechanical', '5.6', '100', '0')
(7110, 'Clemson University', '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '700', '480', '1180', '4.5', '103', 'VTU', 'Telecommunciation', '6.3', '100', '0')
(7111, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '161', '145', '306', '3', '104', 'University institute of engineering and technology panjab university chandigarh', 'electrical and electronics engineering', '6.2', '100', '0')
(7112, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2010', '780', '450', '1230', '3.5', '96', 'Panimalar Engineering College', 'ELECTRONICS AND COMMUNICATION', '7.5', '100', '0')
(7113, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '143', '305', '4', '106', 'GITAM', 'ECE', '7.57', '10', '0')
(7114, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '155', '149', '304', '3', '85', 'MU', 'Electrical Engineering', '5.7', '100', '0')
(7115, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '156', '146', '302', '3.5', '87', "The People\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'s University of Bangladesh", 'Electronics and Telecommunication engineering', '3.47', '4', '0')
(7116, 'Clemson University', '9', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2014', '158', '145', '303', '2.5', 'None', 'RITS', 'CIVIL', '7.779999999999999', '100', '12')
(7117, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2015', '162', '155', '317', '4', '113', 'M.G. University', 'ECE', '7.52', '10', '0')
(7118, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '161', '162', '323', '4', '110', 'VTU', 'Electronics and Communication', '6.295', '100', '0')
(7119, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '162', '149', '311', '4', '101', 'MU', 'Instrumentation', '6.25', '100', '0')
(7120, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '720', '370', '1090', '3', 'None', 'SVCE', 'Electrical Engineering', '8.1', '10', '0')
(7121, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '730', '620', '1350', '4', '111', 'Bangalore Institute of Technology', 'Electronics and Communication', '5.85', '100', '0')
(7122, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '620', '1420', '3', '97', 'MU', 'Electronics & Telecommunications', '6.07', '100', '0')
(7123, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '151', '313', '4', '105', 'University of Pune', 'Electronics & Telecommunication', '6.88', '100', '0')
(7124, 'Clemson University', '9', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '160', '141', '301', '3', '90', 'Anna University', 'ECE', '8', '100', '0')
(7125, 'Clemson University', '9', 'Reject', 'MS', 'environmental engineering', 'Fall ', '2012', '154', '154', '308', '3', '97', 'Guru Nanak Dev University Amritsar', 'Civil Engineering', '7.74', '100', '0')
(7126, 'Clemson University', '9', 'Reject', 'MS', 'Biomedical Engineering', 'Fall ', '2012', '710', '640', '1350', '4', '111', 'VIT Pune', 'Electronics', '6.62', '10', '0')
(7127, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '159', '152', '311', '4', '115', 'MU', 'Mechanical', '5.5', '100', '0')
(7128, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '149', '311', '3', '102', 'CBIT', 'CSE', '8', '100', '0')
(7129, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '400', '1200', '2.5', '102', 'K J Somaiya College of Engiineering', 'Electronics', '6.2', '100', '0')
(7130, 'Clemson University', '9', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2009', '780', '480', '1260', '4', '106', 'MIT Pune', 'Mechanical Engineering', '5.5', '100', '0')
(7131, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2013', '710', '460', '1170', '3', '105', 'VTU', 'E & C', '6', '100', '0')
(7132, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '159', '149', '308', '3.5', '99', 'SSN College of Engineering', 'ECE', '7.7', '100', '0')
(7133, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '560', '1360', '3.5', '108', 'RAIT', 'Computer', '5.8', '100', '0')
(7134, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '170', '151', '321', '3.5', '102', 'JNTU', 'EEE', '7.3', '100', '0')
(7135, 'Clemson University', '9', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2011', '800', '420', '1220', '3', '99', 'JNTU', 'ECE', '7.1', '100', '0')
(7136, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Spring ', '2014', '309', '151', '460', '158', '108', 'MU', 'Mechanical', '7.4', '100', '0')
(7137, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2012', '730', '500', '1230', '3', '91', 'B.V.Bhoomraddi College', 'Electrical & Electronics', '8.26', '10', '0')
(7138, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '440', '1220', '3', '96', 'Sreenidhi Institute of Science & Technology', 'Electronics & Communications', '7.959999999999999', '100', '0')
(7139, 'Clemson University', '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '161', '151', '312', '4', '109', 'PESIT', 'Telecommunication', '8.46', '10', '0')
(7140, 'Clemson University', '9', 'Reject', 'MS', 'Materials Science & Engineering', 'Fall ', '2014', '158', '154', '312', '2.5', '107', 'NIT Rourkela', 'Ceramic Engineering', '6.8', '10', '33')
(7141, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '155', '145', '300', '3', '90', 'JNTU', 'mechanical', '7.2', '100', '0')
(7142, 'Clemson University', '9', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '760', '340', '1100', '3.5', 'None', 'BMSCE', 'Instrumentation Technology', '6.15', '100', '0')
(7143, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '156', '145', '301', '3', '102', 'Andhra University', 'CS&SE;', '8.28', '10', '0')
(7144, 'Clemson University', '9', 'Reject', 'MS', 'Aerospace Engineering', 'Spring ', '2013', '161', '144', '305', '3', '7', 'Pune University', 'Mech', '5.4', '100', '0')
(7145, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2014', '160', '151', '311', '2.5', '0', 'VR Siddhartha Engineering College Vijayawada', 'Electronics & Instrumentation', '8.53', '100', '0')
(7146, 'Clemson University', '9', 'Reject', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2011', '800', '520', '1320', '2.5', '90', 'DA-IICT', 'ICT', '7.5', '10', '0')
(7147, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '790', '340', '1130', '3', '94', 'R V College of Engineering', 'Mechanical Engineering', '8.59', '10', '0')
(7148, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '159', '153', '312', '4', 'None', 'K J Somaiya College of Engiineering', 'Computers', '6.2', '100', '65')
(7149, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '159', '148', '307', '3', '89', 'University of Pune', 'Mechanical Engineering', '5.7', '100', '0')
(7150, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '159', '154', '313', '4', '103', 'Pune University', 'Information technology', '5.758', '100', '44')
(7151, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '165', '150', '315', '3.5', '106', 'JNTU', 'Electronics & Communication Engineering', '7.6', '100', '0')
(7152, 'Clemson University', '9', 'Reject', 'MS', 'Civil Engineering', 'Spring ', '2013', '153', '144', '297', '2.5', '83', 'Walchand College Of Engineering', 'civil engineering', '6.7', '100', '0')
(7153, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2013', '800', '450', '1250', '3', '108', 'Sardar Vallabhbhai National Institute of Technology', 'Electronics and communication', '8.27', '10', '0')
(7154, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '164', '155', '319', '4', '111', 'Thapar University', 'Mechanical Department', '8', '10', '0')
(7155, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '163', '147', '310', '3.5', '92', 'RUET', 'EEE', '3.87', '4', '0')
(7156, 'Clemson University', '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '800', '360', '1160', '3', '103', 'MU', 'Electronics and Communicatiion', '7.128', '100', '0')
(7157, 'Clemson University', '9', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '157', '149', '306', '3.5', '94', 'Velammal Engineering College', 'Production Engineering', '7.9', '10', '2')
(7158, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '790', '400', '1190', '2.5', '94', 'Anna University', 'Electrical and Electronic enginnering', '9.01', '10', '0')
(7159, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '590', '1340', '3', '112', 'YCCE', 'Electronics', '6.7', '100', '0')
(7160, 'Clemson University', '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '161', '150', '311', '3', '104', 'University of Pune', 'electronics and telecommunication', '6.4', '100', '0')
(7161, 'Clemson University', '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '156', '145', '301', '2.5', '86', 'None', 'electronics and communication', '7.6', '100', '0')
(7162, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2014', '168', '152', '320', '3.5', 'None', 'mharana pratap college of technology gwalior', 'Electrical', '7.4799999999999995', '100', '0')
(7163, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '800', '610', '1410', '4.5', '108', 'MU', 'Mechanical', '6', '100', '0')
(7164, 'Clemson University', '9', 'Reject', 'MS', 'Electrical & Computer Engg/MIS/Industrial/Systems Engg', 'Fall ', '2014', '156', '147', '303', '4', '104', 'Anna University', 'EEE', '8.025', '100', '29')
(7165, 'Clemson University', '9', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '160', '149', '309', '3.5', '106', 'University of Pune', 'Mechanical Engineering (Sandwich Pattern) - involving 2 semesters industrial internship as part of the curriculum', '6.045', '100', '18')
(7166, 'Clemson University', '9', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '161', '147', '308', '3', '80', 'JNTU', 'ELECTRONICS AND COMMUNICATION ENGINEERING', '6.174', '100', '0')
(7167, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '156', '162', '318', '3.5', '113', 'VJTI', 'Mechanical', '7.4', '10', '0')
(7168, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '580', '1380', '3', '92', 'None', '0', '0', '0', '0')
(7169, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2013', '164', '148', '312', '3', '109', 'GITAM', 'ECE', '8.3', '10', '0')
(7170, 'Clemson University', '9', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2014', '162', '151', '313', '3', '101', 'Amrita Vishwa Vidhyapeetham', 'Electronics and Instrumentation Engineering', '7.48', '10', '43')
(7171, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '147', '306', '2.5', '107', 'MIT Pune', 'Computer Engineering', '6', '100', '0')
(7172, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '165', '148', '313', '3', '89', 'Sreenidhi Institute of Science & Technology', 'ECE', '8.2', '100', '0')
(7173, 'Clemson University', '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '165', '148', '313', '3', '89', 'Sreenidhi Institute of Science & Technology', 'ECE', '8.2', '100', '0')
(7174, 'Clemson University', '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '500', '1290', '2.5', '106', 'Amrita School of Engineering', 'ECE', '6.68', '10', '0')
(7175, 'Clemson University', '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '166', '152', '318', '4', '108', 'Govt. Engineering College Thrissur Calicut University', 'Electronics and Communication', '7.709999999999999', '100', '0')
(7176, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2013', '166', '152', '318', '3', '100', 'VESIT', 'Instrumentation', '6.5', '100', '0')
(7177, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '159', '150', '309', '3', '91', 'JNTU', 'computer science', '7.5', '100', '0')
(7178, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '159', '144', '303', '3', '96', 'Symbiosis Institute of Technology', 'Mechanical', '2.984', '4', '0')
(7179, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '780', '500', '1280', '4', '100', 'Maharaja Agrasen Institute Of Technology', 'Electronics and communication', '7.4', '100', '0')
(7180, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '570', '1350', '3', '110', 'NIT Karnataka', 'information Technology', '7.82', '10', '0')
(7181, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '770', '490', '1260', '3.5', '95', 'RNSIT', 'Electronics and Comm', '7.7', '100', '0')
(7182, 'Clemson University', '9', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '155', '137', '292', '2.5', 'None', 'Khulna University of Engineering and Technology', 'Electrical & Electronic Engineering', '3', '4', '0')
(7183, 'Clemson University', '9', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2013', '159', '151', '310', '3', '109', 'MU', 'Electronics and telecom', '6.45', '100', '0')
(7184, 'Clemson University', '9', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '161', '146', '307', '3', '99', 'COEP', 'Instrumentation & Control', '7.57', '10', '20')
(7185, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '156', '149', '305', '3', 'None', 'Vasavi College of Engineering', 'Mechanical', '7.573', '100', '0')
(7186, 'Clemson University', '9', 'Reject', 'MS', 'Robotics', 'Fall ', '2012', '740', '480', '1220', '3', '92', 'Rajarambapu Institute of Technolog)y ( shivaji University', 'Electronics and Telecommunication', '7', '100', '0')
(7187, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '151', '313', '3.5', '98', 'DMCE University of Mumbai', 'Electronics', '5.7', '100', '0')
(7188, 'Clemson University', '9', 'Reject', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(7189, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '730', '450', '1180', '3', '105', 'Sri Sairam Engineering College', 'Electronics and communication', '8.4', '100', '0')
(7190, 'Clemson University', '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '760', '520', '1280', '4', '104', 'Amrita School of Engineering', 'ece', '8.02', '10', '0')
(7191, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '158', '149', '307', '2', '90', 'VIT Pune', 'Electronics', '6.345000000000001', '100', '0')
(7192, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '159', '157', '316', '4.5', '110', 'Pune University', 'Mechanical Engineering', '5.7', '100', '0')
(7193, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '162', '155', '317', '4', 'None', 'JNTU', 'Mech Engg', '7.8', '100', '0')
(7194, 'Clemson University', '9', 'Reject', 'MS', 'CS/SE', 'Fall ', '2013', '154', '153', '307', '3.5', '101', 'VTU', 'Electronics & Communication', '6.470000000000001', '100', '0')
(7195, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '156', '153', '309', '3', '104', 'Babu Banarasi Das NIT and Management Lucknow. UPTU', 'Mechanical Engineering', '7.322', '100', '0')
(7196, 'Clemson University', '9', 'Reject', 'MS', 'Embedded systems', 'Fall ', '2015', '158', '151', '309', '3', '93', 'Pune University', 'E& TC', '6.7', '100', '24')
(7197, 'Clemson University', '9', 'Reject', 'MS', 'Chemical Engineering', 'Fall ', '2012', '760', '530', '1290', '3', '95', 'Sri Venkateswara College of Engineering', 'chemical engineering', '7.8', '10', '0')
(7198, 'Clemson University', '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '164', '144', '308', '3.5', '99', 'VTU', 'Electronics and communication', '8.25', '100', '0')
(7199, 'Clemson University', '9', 'Reject', 'MS', 'Applied Mathematics', 'Fall ', '2013', '163', '146', '309', '3', '98', 'Burdwan University', 'Mathematics', '6.1', '100', '0')
(7200, 'Clemson University', '9', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2012', '710', '490', '1200', '4', '111', 'Osmania University', '0', '7.3', '100', '0')
(7201, 'Clemson University', '9', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '156', '152', '308', '3', '105', 'DSCE', 'Automobile', '6.6', '100', '0')
(7202, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '790', '530', '1320', '3', '105', 'Pune University', 'Mech', '6.154', '100', '0')
(7203, 'Clemson University', '9', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2015', '161', '150', '311', '4', '116', 'University of Mumbai', 'Electronics and Telecommunication', '6.051', '100', '0')
(7204, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '149', '313', '3', '93', 'Gayatri College of Engineering', 'Computer Science Engineering', '7.473000000000001', '100', '0')
(7205, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '400', '1150', '4', '103', 'MU', 'Computer Engg Dept', '6.4', '100', '0')
(7206, 'Clemson University', '9', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '168', '149', '317', '3.5', '95', 'Nagpur University', 'Electronics Telecommunication', '7.2', '100', '0')
(7207, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '143', '304', '3', '85', 'MU', 'Information Technology', '5.8', '100', '0')
(7208, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '165', '147', '312', '4', '105', 'GITAM', 'Electrical & Electronics', '7.7', '10', '0')
(7209, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2007', '800', '450', '1250', '4.5', '277', 'J. B. Insititute of Engg & Tech./ aff. to JNTU', 'ECE', '7', '100', '0')
(7210, 'Clemson University', '9', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2015', '151', '151', '302', '3.5', '93', 'VIT University', 'Civil Engineering', '7.64', '10', '0')
(7211, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '158', '149', '307', '3', '102', 'Gujarat Technological University', 'Mechatronics', '7.86', '10', '0')
(7212, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '163', '146', '309', '3', '7', 'SASTRA', 'Mechanical', '8.95', '10', '0')
(7213, 'Clemson University', '9', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '167', '156', '323', '3', '107', 'NIT Allahabad', 'Electrical', '7.04', '10', '50')
(7214, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '161', '151', '312', '3', '7', 'NIT Hamirpur', 'Mechanical', '8.26', '10', '24')
(7215, 'Clemson University', '9', 'Reject', 'MS', 'Electronics and Communication', 'Spring ', '2014', '158', '160', '318', '4.5', '110', 'Anna University', 'ECE', '8.3', '100', '0')
(7216, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '158', '144', '302', '3', '97', 'Valliammai Engineering College', 'Computer Science and Engineering', '8.14', '100', '0')
(7217, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '156', '143', '299', '3.5', '93', 'Yeshwantrao Chavan College of Engineering', 'Mechanical Engineering', '6.4799999999999995', '100', '0')
(7218, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '158', '157', '315', '3', '107', 'RTM Nagpur University', 'MECHANICAL ENGG', '6.2', '100', '0')
(7219, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '750', '510', '1260', '3', '104', 'SNIST', 'electronics and computers', '7.1', '100', '0')
(7220, 'Clemson University', '9', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2014', '154', '146', '300', '3', '89', 'Bangalore Institute of Technology', 'Telecommunication (VTU)', '7.8', '100', '33')
(7221, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '167', '152', '319', '3', '98', 'NIT Warangal', 'Mechanical Engineering', '8.16', '10', '18')
(7222, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '162', '142', '304', '3', 'None', 'Pune University', 'Mechanical', '6.2', '100', '0')
(7223, 'Clemson University', '9', 'Reject', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Spring ', '2012', '800', '560', '1360', '3', '111', 'MNNIT', 'IT', '7.55', '10', '0')
(7224, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '159', '150', '309', '3', '104', 'MU', 'Computer', '7.12', '100', '0')
(7225, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '170', '162', '332', 'None', '116', 'Dhirubhai Ambani Institute of Information & Communication Technology', 'ICT', '7.32', '10', '0')
(7226, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '770', '460', '1230', '3', 'None', 'WBUT', 'electrical', '8.25', '10', '0')
(7227, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Spring ', '2014', '800', '690', '1490', '3', '111', 'MU', 'Mechanical Engineering', '5.2', '100', '0')
(7228, 'Clemson University', '9', 'Reject', 'MS', 'EE / CE / CS', 'Fall ', '2014', '780', '530', '1310', '3.5', '100', 'VIT', 'ECE', '8.11', '10', '22')
(7229, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '1350', '560', '1910', '790', '105', 'MGMCET Mumbai University', 'Computer Engineering', '5.8', '100', '0')
(7230, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '13', '165', '144', '309', '3', '97', 'Rajiv Gandhi Institute Of Technology', 'Mechanical', '7.1', '100', '0')
(7231, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '164', '152', '316', '3.5', '110', 'K J Somaiya College of Engiineering', 'ELECTRONICS', '7.5', '100', '0')
(7232, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '156', '141', '297', '2.5', '89', 'VTU', 'Mechanical Engineering', '6.35', '100', '0')
(7233, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '166', '144', '310', '3.5', '95', 'Kurukshetra University', 'Mechanical Engineering', '7.118', '100', '0')
(7234, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '159', '159', '318', '3.5', '106', 'Goa University', 'Information Technology', '6.4', '100', '36')
(7235, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '160', '154', '314', '3.5', '107', 'MU', 'mechanical engineering', '5.7', '100', '0')
(7236, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '167', '145', '312', '3.5', '100', 'Bhilai Institute of Technology', 'Information Technology', '8.41', '10', '0')
(7237, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '153', '149', '302', '3.5', 'None', 'VTU', 'Mechanical Engineering', '8.9', '10', '0')
(7238, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '151', '140', '291', '3', '87', 'RAIT', 'IT', '5.7', '100', '0')
(7239, 'Clemson University', '9', 'Reject', 'MS', 'Automotive Engineering', 'Fall ', '2014', '161', '148', '309', '3', '101', 'VTU', 'Mechanical', '7.529999999999999', '100', '16')
(7240, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2010', '650', '450', '1100', '3.5', '92', 'University of Calicut', 'ECE', '6.6', '100', '0')
(7241, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '690', '450', '1140', '3', '102', 'Anna University', 'ece', '7.9', '10', '0')
(7242, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '161', '156', '317', '3.5', '108', 'University of Pune', 'Mechanical engineering', '6.7299999999999995', '100', '0')
(7243, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Spring ', '2013', '790', '360', '1150', '3.5', '106', 'NIT Tirchy', 'Mechanical Engineering', '7.49', '10', '0')
(7244, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '158', '147', '305', '3', '96', 'MU', 'computer engg', '6.1', '100', '0')
(7245, 'Clemson University', '9', 'Reject', 'MS', 'Instrumentation and Control', 'Spring ', '2016', '157', '149', '306', '3', '88', "St Joseph's College of Engineering", 'Electronics and instrumentation engineering', '7.5', '10', '0')
(7246, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '159', '149', '308', '3', '97', 'BITS Goa', 'Mechanical', '7', '10', '0')
(7247, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', 'None', 'None', '0', '3', '84', 'None', 'Electronics and Communication', '7', '100', '0')
(7248, 'Clemson University', '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '740', '350', '1090', '3', '103', 'Sir MVIT', 'E&C;', '7.8', '100', '0')
(7249, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '159', '143', '302', '3.5', '100', 'Dr. Pauls Engineering College (Anna University)', 'Mechanical Engineering', '7.2', '10', '0')
(7250, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Spring ', '2014', '163', '149', '312', '4.5', '105', 'Kurukshetra University', 'Mechanical Engineering', '7.12', '100', '0')
(7251, 'Clemson University', '9', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2011', '780', '480', '1260', '3.5', '103', 'MU', 'EXTC', '5.5', '100', '0')
(7252, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '400', '1150', '2.5', '93', 'JNTU', 'CSE', '7.5', '100', '0')
(7253, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '152', '313', '3', '98', 'None', '0', '0', '0', '0')
(7254, 'Clemson University', '9', 'Reject', 'MS', 'Automotive Engineering', 'Fall ', '2015', '163', '153', '316', '3.5', 'None', 'PSG College of Technology', 'Automobile Engineering', '8.51', '10', '51')
(7255, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '148', '309', '4', '106', 'University Vishweriah College of Engineering', 'Electronics and Communication', '6.808', '100', '0')
(7256, 'Clemson University', '9', 'Reject', 'MS', 'Electronics and Communication', 'Spring ', '2013', '160', '150', '310', '3', '96', 'SJBIT', 'ECE', '7.1', '100', '0')
(7257, 'Clemson University', '9', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2014', '163', '145', '308', '3', '87', 'Amrita School of Engineering', 'ECE', '8.48', '10', '24')
(7258, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '780', '480', '1260', '3.5', '105', 'MU', 'Mechanical', '6.08', '100', '0')
(7259, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '149', '314', '3', '112', 'UPTU', 'CSE', '7.378', '100', '0')
(7260, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '780', '420', '1200', '3.5', '94', 'Pune University', 'mechanical engineering', '6.1', '100', '0')
(7261, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '167', '147', '314', '2', '95', 'GITAM', 'Computer Science', '8.15', '10', '0')
(7262, 'Clemson University', '9', 'Reject', 'MS', 'Biological Sciences Biotechnology ', 'Fall ', '2014', '164', '155', '319', '4', '107', 'BITS Goa', 'Biological Sciences Electronics & Instrumentation', '7.14', '10', '0')
(7263, 'Clemson University', '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '156', '157', '313', '3.5', '104', "St Joseph's College of Engineering", 'ECE', '8.5', '10', '0')
(7264, 'Clemson University', '9', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '163', '145', '308', '3', '99', 'Anna University', 'Mechanical Engineering', '9.25', '10', '0')
(7265, 'Clemson University', '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '146', '161', '307', '3', '86', 'JNTU', 'ECE', '8.15', '100', '0')
(7266, 'Clemson University', '9', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '161', '146', '307', '3.5', '102', 'Dr D Y Patil School of Engineering', 'Mechanical Engineering', '6.04', '100', '0')
(7267, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '780', '530', '1310', '4.5', '114', 'K J Somaiya College of Engiineering', 'Mechanical', '5.6', '100', '0')
(7268, 'Clemson University', '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '158', '150', '308', '3', 'None', 'JNTU', 'ece', '8.05', '100', '0')
(7269, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Spring ', '2016', '167', '156', '323', '3.5', '104', 'SGSITS', 'IT', '6.58', '10', '0')
(7270, 'Clemson University', '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '300', '1080', '3', '90', 'Sir MVIT', 'Electronics and communication', '7.2', '100', '0')
(7271, 'Clemson University', '9', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '152', '144', '296', '3', '90', 'Institute of Engineering & Technology DAVV', 'Electronics & Instrumentation', '7.056', '100', '0')
(7272, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '750', '580', '1330', '3.5', '106', 'VTU', 'Instrumentation Tech', '6.1', '100', '0')
(7273, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '156', '151', '307', '4', '100', 'Pondicherry University', 'Electronics and Instrumentation', '8.2', '10', '0')
(7274, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2009', '770', '330', '1100', '3', '96', 'S.P.University V.V.Nagar Gujarat', 'Mechanical', '6.7', '10', '0')
(7275, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '159', '144', '303', '3.5', '104', 'Osmania University', 'Mechanical', '8.3', '100', '0')
(7276, 'Clemson University', '9', 'Reject', 'MS', 'Materials Science & Engineering', 'Fall ', '2013', '157', '142', '299', '3', '92', 'PSG College of Technology', 'Metallurgical Engineering', '7', '10', '0')
(7277, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '790', '440', '1230', '3', '93', 'SRKR Engineering College', 'CSE', '8.2', '100', '0')
(7278, 'Clemson University', '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '780', '640', '1420', '3', '107', 'Pune University', 'Electronics & Telecomm', '7.94', '100', '0')
(7279, 'Clemson University', '9', 'Reject', 'MS', 'MIS', 'Spring ', '2014', '159', '147', '306', '3', '92', 'None', 'Information Technology', '7.3', '100', '0')
(7280, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2012', '730', '410', '1140', '3', '109', 'Guru Jambheshwar University of Science & Technology', 'ECE', '8.67', '10', '0')
(7281, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '730', '540', '1270', '3', '100', 'MVGR', 'ECE', '7.3', '100', '0')
(7282, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '710', '430', '1140', '2.5', '89', 'Anna University', 'MECHANICAL', '7.84', '10', '0')
(7283, 'Clemson University', '9', 'Reject', 'MS', 'Electrical and Electronics', 'Fall ', '2014', '166', '145', '311', '3', 'None', 'VIT University', 'ECE', '8.27', '10', '0')
(7284, 'Clemson University', '9', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '630', '330', '960', '3', '89', 'Sri Krishna College Of Engineering And Technology', 'Mechatronics', '8.3', '10', '0')
(7285, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '159', '144', '303', '3.5', '90', 'Coimbatore Insitute of Technology', 'Information Technology', '8.29', '10', '0')
(7286, 'Clemson University', '9', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '162', '149', '311', '3', '102', 'VJTI', 'Production Engineering', '7.6', '10', '0')
(7287, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '167', '154', '321', '3', '110', 'Amity School of Engineering and Technology', 'Instrumentation & Control Engineering', '6.6', '100', '0')
(7288, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '144', '308', '3', '88', 'GITAM', 'Electronics(ECE)', '8.01', '10', '0')
(7289, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '760', '520', '1280', '3.5', '113', 'JNTU', 'Computer Science', '6.7', '100', '0')
(7290, 'Clemson University', '9', 'Reject', 'MS', 'Chemical Engineering', 'Spring ', '2012', '780', '550', '1330', '3', '98', 'Visvesvaraya NIT Nagpur', 'Chemical Engineering', '8.24', '10', '0')
(7291, 'Clemson University', '9', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '165', '154', '319', '3', '101', 'NIT Calicut', 'Electronics and communication engineering', '7.07', '10', '0')
(7292, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '680', '510', '1190', '3', '83', 'Sri Sairam Engineering College', 'Mechanical', '7.2', '100', '0')
(7293, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '680', '510', '1190', '3', '83', 'Sri Sairam Engineering College', 'Mechanical Engineering', '7.2', '100', '0')
(7294, 'Clemson University', '9', 'Reject', 'MS', 'Biomedical Engineering', 'Fall ', '2006', '780', '550', '1330', '3.5', '273', 'Sathyabama University', 'Electronics & Communication', '8.5', '100', '0')
(7295, 'Clemson University', '9', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2013', '159', '145', '304', '3', '82', 'MU', 'Instrumentation Engineering', '5.3', '100', '0')
(7296, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '740', '410', '1150', '3.5', '94', 'MU', 'MECHANICAL', '5.6', '100', '0')
(7297, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', 'None', 'None', '0', 'None', 'None', 'None', 'EEE', '8.3', '10', '0')
(7298, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '314', '152', '466', '3', '88', 'VIT Pune', 'Mech', '8.23', '10', '0')
(7299, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Spring ', '2012', '770', '510', '1280', '3.5', '98', 'PVG COET Pune', 'Mechanical Engineering', '5.835', '100', '0')
(7300, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '156', '145', '301', '4', '90', 'University of Mumbai', 'Electrical Engineering', '6.2', '100', '0')
(7301, 'Clemson University', '9', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '760', '300', '1060', '3', '92', 'RNSIT', 'Electronics and Communication', '6.8', '100', '0')
(7302, 'Clemson University', '9', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '750', '380', '1130', '3.5', '94', 'MU', 'Electronics', '6.5', '100', '0')
(7303, 'Clemson University', '9', 'Reject', 'MS', 'Electrical and Electronics', 'Fall ', '2014', '156', '150', '306', '3.5', '100', 'COEP', 'M.Tech Mechatronics', '7.71', '10', '0')
(7304, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '160', '142', '302', '3', 'None', 'GITAM', 'Electronics and Communications', '8.8', '10', '0')
(7305, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Spring ', '2014', '158', '156', '314', '3', 'None', 'Govt. Rajiv Gandhi Institute of Technology', 'Mechanical Engineering', '7.4799999999999995', '100', '0')
(7306, 'Clemson University', '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '750', '390', '1140', '3', '106', 'Osmania University', 'ECE', '7.5', '100', '0')
(7307, 'Clemson University', '9', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '157', '150', '307', '4', '109', 'K J Somaiya College of Engiineering', 'Electronics', '5.54', '100', '30')
(7308, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '161', '144', '305', '3', '89', 'MU', 'Mechanical', '6.566', '100', '24')
(7309, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '162', '154', '316', '3.5', '110', 'MU', 'Mechanical', '7.3', '100', '0')
(7310, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '148', '315', '3', '99', 'COEP', 'Instrumentation and Control', '8.2', '10', '0')
(7311, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '167', '152', '319', 'None', '99', 'IIIT Allahabad', 'Information Technology', '7.08', '10', '0')
(7312, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '149', '311', '3.5', '104', 'MU', 'Electronics and Telecommunication', '6.5', '100', '0')
(7313, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Spring ', '2016', '162', '142', '304', '3', '91', 'Pune University', 'Mechanical', '6.87', '100', '32')
(7314, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2008', '800', '540', '1340', '3', '87', 'RAIT', 'Electronics and Telecom', '6.93', '100', '0')
(7315, 'Clemson University', '9', 'Reject', 'MS', 'Embedded systems', 'Fall ', '2012', '157', '156', '313', '4', '116', 'SASTRA', 'electronics&communications;', '7', '10', '0')
(7316, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '155', '146', '301', '3.5', 'None', 'VTU', 'Information Science', '7.05', '100', '0')
(7317, 'Clemson University', '9', 'Reject', 'MS', 'Biotechnology/bio-engineering', 'Fall ', '2011', '680', '520', '1200', '3', '106', 'C.I.T.M. Faridabad affiliated to M.D. University Rohtak', 'Biotechnology', '7.3', '100', '0')
(7318, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Spring ', '2013', '170', '153', '323', '3', '104', 'BITS Goa', 'Mechanical', '6', '10', '0')
(7319, 'Clemson University', '9', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '720', '400', '1120', '3', '97', 'Anna University', 'BE CSE', '8', '100', '0')
(7320, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '158', '152', '310', '3', '114', 'MG University', 'mechanical engineering', '6.9', '100', '0')
(7321, 'Clemson University', '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '750', '400', '1150', '3', '92', 'Coimbatore Insitute of Technology', 'Electronics and communication Engg', '8.7', '10', '0')
(7322, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '730', '300', '1030', '3', '87', 'MVSR', 'Computer Science', '7.9', '100', '0')
(7323, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '660', '430', '1090', '3', '106', 'MU', 'Information Technology', '5.7', '100', '0')
(7324, 'Clemson University', '9', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2013', '169', '146', '315', '3.5', '98', 'Nit surat', 'Production Engineering', '8.11', '10', '0')
(7325, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '164', '145', '309', '3', '93', 'Kurukshetra University', 'Mechanical', '6.7299999999999995', '100', '0')
(7326, 'Clemson University', '9', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '165', '150', '315', '3', '90', 'Dr. B.R Ambedkar NIT Jalandhar', 'Mechanical Engineering', '6.7', '10', '44')
(7327, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '158', '149', '307', '3.5', '7', 'Pune University', 'Mechanical', '6', '100', '0')
(7328, 'Clemson University', '9', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '760', '440', '1200', '3.5', '92', 'PESIT', 'electronics and communication', '6.4', '100', '0')
(7329, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '145', '306', '3', '93', 'VTU', 'telecommunication', '7.840000000000001', '100', '0')
(7330, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '740', '470', '1210', '3.5', '112', 'SASTRA', 'Electronics & Communication', '8.6', '10', '0')
(7331, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '780', '410', '1190', '3', '90', 'Punjab Engineering College', 'Electrical', '6.779999999999999', '100', '0')
(7332, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '161', '150', '311', '3', '96', 'UPTU', 'Mechanical Engineering', '6.2', '100', '0')
(7333, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2012', '770', '430', '1200', '3.5', '95', 'BVBCET', 'EE', '8.58', '10', '0')
(7334, 'Clemson University', '9', 'Reject', 'MS', 'Biomedical Engineering', 'Fall ', '2014', '158', '151', '309', '3', '96', 'Nagpur University', 'Electronics And Telecomm.', '7.4', '100', '0')
(7335, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '165', '159', '324', '3', '101', 'BITS Pilani', 'Electronics', '4.93', '10', '0')
(7336, 'Clemson University', '9', 'Reject', 'MS', 'Civil Engineering', 'Fall', '2017', '161', '144', '305', '3', '90', 'Sinhgad Institute Of Technology And Science, Narhe', 'Civil Engineering', '6.5', '100', '15')
(7337, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Spring', '2019', '162', '140', '302', '3', '-1', 'KLS Gogte Institute Of Technology', 'ECE', '6.34', '100', '0')
(7338, 'Clemson University', '9', 'Reject', 'MS', 'Industrial Engineering', 'Fall', '2016', '160', '151', '311', '3.5', '98', 'FR CONCEICAO RODRIGUES College of Engineering', 'Production Engineering', '6.5', '10', '0')
(7339, 'Cleveland State University', '10', 'Admit', 'MSc', 'Software Engineering', 'Spring', '2017', '154', '131', '285', '2', '-1', 'MLR Institute Of Technology', 'Computer Science', '7.3', '100', '0')
(7340, 'Cleveland State University', '10', 'Admit', 'MSc', 'Software Engineering', 'Fall', '2018', '153', '130', '283', '-1', '-1', 'Gujarat Technological University', 'Information Technology', '8.35', '10', '0')
(7341, 'Cornell University', '11', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '169', '165', '334', '5.5', '118', 'IIT Delhi', 'Mechanical', '9.1', '10', '40')
(7342, 'Cornell University', '11', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2011', '730', '500', '1230', '3.5', '99', 'NIT Silchar', 'Mechanical Engineering', '7.37', '10', '0')
(7343, 'Cornell University', '11', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '760', '650', '1410', '3.5', '104', 'Sardar Patel College of Engineering', 'Computer Engineering', '7.590000000000001', '100', '0')
(7344, 'Cornell University', '11', 'Admit', 'MS', 'EE / CS', 'Fall ', '2012', '800', '730', '1530', '4.5', '114', 'NIT Karnataka', 'ECE', '8.5', '10', '0')
(7345, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '790', '550', '1340', '4', '113', 'MU', 'CS', '6.614', '100', '0')
(7346, 'Cornell University', '11', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '156', '166', '322', '3.5', '114', 'IIIT Allahabad', 'Electronics & Comm.', '8.98', '10', '0')
(7347, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '750', '460', '1210', '4.5', '111', 'Pune University', 'Computer Engineering', '7', '100', '0')
(7348, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '152', '317', '4', '99', 'CEG', 'Information Technology', '9.1', '10', '0')
(7349, 'Cornell University', '11', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '168', '150', '318', '4.5', '109', 'SSN College of Engineering', 'Electrical & Electronics', '8.1', '10', '0')
(7350, 'Cornell University', '11', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '520', '1320', '3', '107', 'IT BHU', 'Electronics Engg', '8.93', '10', '0')
(7351, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', 'None', 'None', '0', 'None', 'None', 'Anna University', 'CS', '8.8', '10', '0')
(7352, 'Cornell University', '11', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2013', '165', '158', '323', '4', '110', 'Punjabi University', 'cs', '8.2', '100', '0')
(7353, 'Cornell University', '11', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '163', '149', '312', '3.5', '107', 'NIT Nagpur', 'CSE', '9.19', '10', '0')
(7354, 'Cornell University', '11', 'Admit', 'MS', 'Engineering Management / Industrial Engineering / IMSE', 'Fall', 'None', '163', '150', '313', 'None', '100', 'University of Pune', 'Mechanical Engg', '3.76', '4', '46')
(7355, 'Cornell University', '11', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(7356, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '710', '1510', 'None', '103', 'NIT Kurukshetra', 'Computer Engineering', '9', '10', '0')
(7357, 'Cornell University', '11', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2012', '163', '163', '326', '4.5', 'None', 'lafayette college', 'engineering', '0', '0', '0')
(7358, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '150', '318', '4', '104', 'NIT Rourkela', 'Computer Science', '9.26', '10', '0')
(7359, 'Cornell University', '11', 'Admit', 'MS', 'Civil Engineering', 'Spring ', '2011', '770', '490', '1260', '3.5', '105', 'VTU', 'Mechanical Engineering', '6.9', '100', '0')
(7360, 'Cornell University', '11', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '780', '650', '1430', '4', '101', 'NITK Surathkal', 'Computer Engineering', '3.9', '4', '0')
(7361, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '170', '159', '329', '3', '103', 'Punjab Engineering College', 'Computer Science', '9.25', '10', '0')
(7362, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '161', '161', '322', '3.5', '115', 'None', '0', '0', '0', '0')
(7363, 'Cornell University', '11', 'Admit', 'MS', 'Metallurgy and Materials Engineering', 'Fall ', '2013', '167', '151', '318', '4', '106', 'Delhi College Of Engineeing', 'Mechanical Engineering', '7', '100', '0')
(7364, 'Cornell University', '11', 'Admit', 'MS', 'Information Science', 'Fall ', '2010', '800', '710', '1510', '6', '119', 'Indian Statistical Institute', 'Systems Science and Informatics Unit', '7.51', '100', '0')
(7365, 'Cornell University', '11', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '790', '640', '1430', '3.5', '104', 'Mar Athanasius College of Engineering Kerala', 'Electronics and Communication', '7.1', '100', '0')
(7366, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', 'None', 'None', '0', '4', 'None', 'VTU', 'Information Science', '8.5', '100', '0')
(7367, 'Cornell University', '11', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '800', '630', '1430', '4', '115', 'MU', 'CS', '7.5', '100', '0')
(7368, 'Cornell University', '11', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '164', '159', '323', '4.5', '117', 'Nirma Institute of Technology', '0', '8.54', '10', '0')
(7369, 'Cornell University', '11', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(7370, 'Cornell University', '11', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '163', '158', '321', '4', '110', 'IT BHU', 'Mechanical Engg.', '8.53', '10', '0')
(7371, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '570', '1370', '4.5', '110', 'Nirma Institute of Technology', 'CS', '8.76', '10', '0')
(7372, 'Cornell University', '11', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '720', '1520', '4', '103', 'KIIT', 'Electronics and Electrical', '8.82', '10', '0')
(7373, 'Cornell University', '11', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2013', '165', '155', '320', '3', '110', 'Thapar University', 'Mechanical', '7.83', '10', '0')
(7374, 'Cornell University', '11', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2015', '166', '163', '329', '4.5', '114', 'BITS Hyderabad', 'Civil Engineering', '8.95', '10', '0')
(7375, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '800', '510', '1310', '3.5', '102', 'PSG College of Technology', 'IT', '9.36', '10', '0')
(7376, 'Cornell University', '11', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2013', '168', '151', '319', '4', '112', 'None', '0', '8.2', '10', '0')
(7377, 'Cornell University', '11', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '160', '152', '312', '3', '110', 'VTU', 'Telecommunication', '8.67', '10', '36')
(7378, 'Cornell University', '11', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '160', '157', '317', '3.5', '113', 'Amrita School of Engineering', 'EEE', '8.64', '10', '0')
(7379, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '156', '317', '4', '117', 'NIT Warangal', 'CSE', '8.53', '10', '0')
(7380, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '165', '164', '329', '4', '113', 'JSSATE', 'IT', '7.2', '100', '0')
(7381, 'Cornell University', '11', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2013', '166', '163', '329', '5', 'None', 'VTU', 'Electronics and Communication', '8.2', '10', '0')
(7382, 'Cornell University', '11', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '770', '540', '1310', '3.5', '107', 'MSRIT', 'Telecommunication', '8.8', '10', '0')
(7383, 'Cornell University', '11', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '164', '153', '317', '4', '108', 'SSN College of Engineering', 'CSE', '8.445', '100', '0')
(7384, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '156', '150', '306', '4', '104', 'VIT', 'Information Technology', '9.1', '10', '0')
(7385, 'Cornell University', '11', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '630', '1430', '4.5', '114', 'VTU', 'ECE', '8.48', '100', '0')
(7386, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '650', '1450', '3.5', '107', 'Sardar Patel College of Engineering', 'Computer', '7.6', '100', '0')
(7387, 'Cornell University', '11', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2014', '161', '156', '317', '4', '108', 'VTU', 'Biotechnology', '8.4', '100', '0')
(7388, 'Cornell University', '11', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '160', '159', '319', '4', '114', 'NIT Allahabad', 'Electronics & Communication', '7.21', '10', '0')
(7389, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '170', '158', '328', '4', '115', 'MSRIT', 'Computer Science', '8.94', '10', '0')
(7390, 'Cornell University', '11', 'Admit', 'MS', 'Computational Science', 'Fall ', '2011', '770', '600', '1370', '4', 'None', 'University of California Berkeley', 'Electrical Engineering and Computer Science', '3.83', '4', '0')
(7391, 'Cornell University', '11', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '800', '560', '1360', '3', '109', 'University College of Engineering Osmania University', 'Mechanical Engineering', '9.14', '10', '0')
(7392, 'Cornell University', '11', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '800', '720', '1520', '5', '116', 'VNIT Nagpur', 'EEE', '8.84', '10', '0')
(7393, 'Cornell University', '11', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '162', '145', '307', '4', '102', 'VTU', 'telecommunication', '9.24', '10', '36')
(7394, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '590', '1370', '4.5', '118', 'NIT Warangal', 'Computer Science', '9.23', '10', '0')
(7395, 'Cornell University', '11', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '550', '1350', '4', '107', 'IIIT Hyderabad', 'ECE', '9.12', '10', '0')
(7396, 'Cornell University', '11', 'Admit', 'MS', 'Computational Engineering', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'BITS Pilani', 'Civil', '7.2', '10', '0')
(7397, 'Cornell University', '11', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '164', '158', '322', '3.5', '114', 'PESIT', 'Telecommunication Department', '8.43', '10', '0')
(7398, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', 'None', 'None', '0', 'None', 'None', 'PESIT', 'Information Science', '7.8', '100', '0')
(7399, 'Cornell University', '11', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2011', '770', '670', '1440', '3.5', '116', 'SSCET Bhilai', 'ETC', '7.62', '10', '0')
(7400, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'PSG College of Technology', 'Mathematics and Computer Applications', '9.3', '10', '0')
(7401, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '570', '1370', '3.5', '112', 'NITK Surathkal', 'Computer Science', '0', '0', '0')
(7402, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '159', '320', '4', '111', 'MU', 'Computer SCience', '8.129000000000001', '100', '12')
(7403, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '159', '322', '5', '111', 'R V College of Engineering', 'Computer Science', '9.32', '10', '0')
(7404, 'Cornell University', '11', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '790', '700', '1490', '5.5', '277', 'D J Sanghvi', 'EXTC', '6.95', '100', '0')
(7405, 'Cornell University', '11', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '168', '152', '320', '3.5', '101', 'D J Sanghvi', 'EXTC', '7.642', '100', '0')
(7406, 'Cornell University', '11', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '160', '152', '312', '4', '110', 'VTU', 'ECE', '7.459999999999999', '100', '0')
(7407, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '164', '154', '318', '4', '112', 'VTU', 'Computer Science', '7.15', '100', '0')
(7408, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '790', '720', '1510', '5', '290', 'University of Mumbai', 'Information Technology', '6.94', '100', '0')
(7409, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '790', '550', '1340', '4', '267', 'University of Madras', 'CS', '8.8', '100', '0')
(7410, 'Cornell University', '11', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '168', '157', '325', '4', '114', 'Sardar Patel College of Engineering', 'Electronics', '7.529999999999999', '100', '22')
(7411, 'Cornell University', '11', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '520', '1280', '3', '97', 'Not so reputed ..', 'Electrical E', '3.97', '4', '0')
(7412, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '660', '1460', '4', '114', 'SASTRA', 'Computer Science', '9.29', '10', '0')
(7413, 'Cornell University', '11', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '164', '152', '316', '3', '97', 'None', 'ECE', '0.9380000000000001', '100', '0')
(7414, 'Cornell University', '11', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2011', '770', '620', '1390', '4', '111', 'Pune University', 'Mechanical', '6.6', '100', '0')
(7415, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '510', '1310', '4.5', '104', 'Osmania University', 'CSE', '8.76', '100', '0')
(7416, 'Cornell University', '11', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '770', '440', '1210', '3.5', '97', 'R V College of Engineering', 'Telecommuniction Engineering', '8.3', '100', '0')
(7417, 'Cornell University', '11', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2015', '159', '162', '321', '3.5', '107', 'NIT Kurukshetra', 'Civil Engineering', '8.84', '10', '24')
(7418, 'Cornell University', '11', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2014', '161', '150', '311', '3.5', '106', 'VIT', 'civil', '9.27', '10', '0')
(7419, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '150', '311', '3', 'None', 'VTU', 'Information Science', '8.306999999999999', '100', '25')
(7420, 'Cornell University', '11', 'Admit', 'MS', 'Biotechnology', 'Fall ', '2012', '800', '720', '1520', '4', '116', 'SRM University', 'Biotech', '8.71', '10', '0')
(7421, 'Cornell University', '11', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2011', '790', '510', '1300', '4', '103', 'None', '0', '0', '0', '0')
(7422, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '700', '1500', '4.5', '119', 'R V College of Engineering', 'CSE', '9.85', '10', '0')
(7423, 'Cornell University', '11', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2008', '800', '540', '1340', '6', '300', 'University of Mumbai', 'Mechanical Engineering', '7.6', '100', '0')
(7424, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '168', '159', '327', '4', '100', 'IIIT Allahabad', 'IT', '8.54', '10', '0')
(7425, 'Cornell University', '11', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2015', '164', '155', '319', '4', '110', 'None', 'Biomedical Engineering', '9.04', '10', '0')
(7426, 'Cornell University', '11', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '770', '590', '1360', '3.5', '104', 'BITS Pilani', 'EEE', '9.18', '10', '0')
(7427, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '590', '1370', '3.5', '112', 'BMSCE', 'Infomation Science and Engineering', '7.62', '100', '0')
(7428, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '155', '323', '3.5', '110', 'NIT Kurukshetra', 'Computer Science', '9.16', '10', '0')
(7429, 'Cornell University', '11', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '169', '154', '323', '3', '105', 'Delhi College Of Engineeing', 'Information Technology', '7.106', '100', '0')
(7430, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '154', '318', '4', '109', 'IIIT Allahabad', 'Information Technology', '8.54', '10', '0')
(7431, 'Cornell University', '11', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2011', '720', '560', '1280', '5', '108', 'VJTI', 'Electrical Engineering', '7.4', '10', '0')
(7432, 'Cornell University', '11', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2013', '165', '157', '322', '3', '111', 'P.U.', 'UIET B.E.-Biotechnology', '7.2299999999999995', '100', '0')
(7433, 'Cornell University', '11', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(7434, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '620', '1420', '5.5', '109', 'VTU', 'CSE', '9.8', '10', '0')
(7435, 'Cornell University', '11', 'Admit', 'MS', 'Mechanical Engineering', 'Fall', 'None', '170', '153', '323', '4', '104', 'VIT', 'Mechanical(specialization in Energy)', '8.9', '10', '0')
(7436, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '640', '1440', '4.5', '111', 'MU', 'Computer Engineering', '6.8420000000000005', '100', '0')
(7437, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '166', '152', '318', '3.5', '110', 'Nirma Institute of Technology', 'Computer Science', '8.89', '10', '0')
(7438, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '680', '660', '1340', '3.5', '111', 'IIT Delhi', 'CS', '8.5', '10', '0')
(7439, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '153', '313', '3.5', '109', 'None', 'Information Technology', '9.19', '10', '0')
(7440, 'Cornell University', '11', 'Admit', 'MS', 'Systems Engineering', 'Fall ', '2012', '160', '154', '314', '4.5', '117', 'Fr. Conceicao Rodrigues College of Engineering', 'Computer Engineering', '6.423', '100', '0')
(7441, 'Cornell University', '11', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2013', 'None', 'None', '0', '4', 'None', 'UMass Lowell', 'Electrical And Computer Engineering', '0', '0', '0')
(7442, 'Cornell University', '11', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2012', '167', '157', '324', '4.5', '109', 'NIT - Trichy', 'Mechanical Engineering', '8.8', '10', '0')
(7443, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '152', '318', '3.5', '108', 'Nirma Institute of Technology', 'INFORMATION TECHNOLOGY', '8.1', '10', '0')
(7444, 'Cornell University', '11', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2013', '165', '157', '322', '3.5', '110', 'BITS Pilani', 'civil engg', '7.99', '10', '0')
(7445, 'Cornell University', '11', 'Admit', 'MS', 'Chemical Engineering', 'Fall ', '2013', '169', '153', '322', '4.5', '118', 'SSN College of Engineering', 'Chemical', '8.9', '10', '0')
(7446, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '580', '1380', 'None', 'None', 'U of Washington', 'Computer Science and Engineering', '3.78', '4', '0')
(7447, 'Cornell University', '11', 'Admit', 'MS', 'Biological Sciences Biotechnology ', 'Fall ', '2014', '163', '157', '320', '4', '115', 'BITS Pilani', 'Biological Sciences and Chemical Engineering', '6.11', '10', '0')
(7448, 'Cornell University', '11', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '161', '155', '316', '4', '108', 'BITS Dubai', 'ECE', '9.06', '10', '0')
(7449, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '640', '1440', '3', '115', 'MAIT GGSIPU', 'CSE', '7.9', '100', '0')
(7450, 'Cornell University', '11', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2011', '800', '470', '1270', '3.5', '105', 'IIT Madras', 'civil engineering', '8.4', '10', '0')
(7451, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '158', '319', '4', '107', 'VIT University', 'B.Tech Information Technology', '8.98', '10', '0')
(7452, 'Cornell University', '11', 'Admit', 'MS', 'physics', 'Fall ', '2011', '790', '670', '1460', '4.5', '114', 'IIT Madras', 'Physics', '9.45', '10', '0')
(7453, 'Cornell University', '11', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(7454, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '690', '1470', '3.5', '115', 'Bharati Vidyapeeth', 'CSE', '8.05', '100', '0')
(7455, 'Cornell University', '11', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '164', '154', '318', '3.5', '109', 'VTU', 'EC', '7.5', '100', '0')
(7456, 'Cornell University', '11', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '800', '550', '1350', '4', '114', 'WBUT', 'ECE', '9.04', '10', '0')
(7457, 'Cornell University', '11', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2010', '770', '600', '1370', '4', '113', 'SASTRA', 'Electronics and Communications Engineeing', '8.5', '10', '0')
(7458, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '640', '1410', '4', '113', 'R V College of Engineering', 'CSE', '9.42', '10', '0')
(7459, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '660', '1440', '4', '119', 'SSN College of Engineering', 'Computer science', '8.7', '10', '0')
(7460, 'Cornell University', '11', 'Admit', 'MS', 'Operations Research', 'Fall ', '2013', '165', '162', '327', '5', '114', 'NITK Surathkal', 'EEE', '7.57', '10', '0')
(7461, 'Cornell University', '11', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2013', 'None', 'None', '0', '3.5', 'None', 'None', '0', '0', '0', '0')
(7462, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '151', '316', '4.5', '110', 'VTU', 'Computer Science', '7.9', '100', '0')
(7463, 'Cornell University', '11', 'Admit', 'MS', 'Materials Science & Engineering', 'Fall ', '2011', '800', '630', '1430', '4', '110', 'IIT Madras', 'Metallurgical and Materials Engineering', '7.47', '10', '0')
(7464, 'Cornell University', '11', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2011', '680', '590', '1270', '3.5', '106', 'MDU', 'UIET', '7.8', '100', '0')
(7465, 'Cornell University', '11', 'Admit', 'MS', 'Chemical Engineering', 'Fall ', '2012', '163', '152', '315', '3.5', 'None', 'Stony Brook University', 'Chemistry', '3.5', '4', '0')
(7466, 'Cornell University', '11', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2009', '750', '680', '1430', '4', '113', 'JNTU', 'Mechanical Engineering', '0', '0', '0')
(7467, 'Cornell University', '11', 'Admit', 'MS', 'environmental engineering', 'Fall ', '2013', '160', '155', '315', '3', '107', 'MSRIT', 'Chemical Engineering', '8.5', '10', '0')
(7468, 'Cornell University', '11', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '169', '158', '327', '4.5', 'None', 'R V College of Engineering', 'ECE', '8.52', '100', '0')
(7469, 'Cornell University', '11', 'Admit', 'MS', 'Civil Engineering', 'Fall', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(7470, 'Cornell University', '11', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2011', '800', '510', '1310', '3', '111', 'ITAM', 'Digital Systems', '7.83', '10', '0')
(7471, 'Cornell University', '11', 'Admit', 'MS', 'Mechanical Engineering', 'Spring ', '2011', '800', '690', '1490', '6', '117', 'VTU', 'Mechanical Engineering', '7.4', '100', '0')
(7472, 'Cornell University', '11', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '800', '570', '1370', '4.5', '119', 'Sri Ramakrishna Institute of Technology', 'Electrical Engineering', '8', '100', '0')
(7473, 'Cornell University', '11', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '161', '157', '318', '3', '108', 'GKV', 'ECE', '7.6', '100', '0')
(7474, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '158', '318', 'None', '109', 'VTU', 'Computer Science', '8.107', '100', '0')
(7475, 'Cornell University', '11', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2015', '159', '154', '313', '3', '107', 'Vidyalankar Institute of Technology', 'Electronics & Telecommunications', '6.6579999999999995', '100', '0')
(7476, 'Cornell University', '11', 'Admit', 'MS', 'environmental engineering', 'Fall ', '2012', '790', '600', '1390', '4', '109', 'MU', 'Chemical Engineering', '7', '100', '0')
(7477, 'Cornell University', '11', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '164', '149', '313', '3', '104', 'Nirma Institute of Technology', 'Electronics and Communication Engineering', '8.1', '10', '0')
(7478, 'Cornell University', '11', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2011', '770', '670', '1440', '3.5', '116', 'SSCET Bhilai', 'ETC', '7.62', '10', '0')
(7479, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '161', '150', '311', '4', '99', 'MSRIT', 'CSE', '9.13', '10', '8')
(7480, 'Cornell University', '11', 'Admit', 'MS', 'Financial Engineering', 'Fall ', '2006', '800', '680', '1480', '4.5', '280', 'COEP', 'E & TC', '0', '0', '0')
(7481, 'Cornell University', '11', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '169', '156', '325', '3.5', '111', 'Jadavpur University', 'Electronics and Telecomm Engg.', '9.26', '10', '0')
(7482, 'Cornell University', '11', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '170', '159', '329', '3', '112', 'IIT Kanpur', 'EE', '9', '10', '0')
(7483, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', 'None', 'None', '0', 'None', 'None', 'None', 'Computer Science', '0', '0', '12')
(7484, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '159', '323', '4', '113', 'VTU', 'CS', '8', '100', '0')
(7485, 'Cornell University', '11', 'Admit', 'MS', 'Electrical and computer science', 'Fall ', '2010', '780', '530', '1310', '3.5', '109', 'Jaypee Institute of Information Technology', 'ECE', '8.2', '10', '0')
(7486, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '150', '308', '3.5', '102', 'PSG College of Technology', 'ECE', '9.2', '10', '33')
(7487, 'Cornell University', '11', 'Admit', 'MS', 'statistics', 'Fall ', '2011', '790', '610', '1400', '3.5', '111', 'BITS Pilani', 'Maths and Engg', '8.72', '10', '0')
(7488, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '540', '1330', '4', '107', 'S.P.I.T. Mumbai University', 'Computer Engineering', '7.898000000000001', '100', '0')
(7489, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '450', '1250', '4', '105', 'Fr. Conceicao Rodrigues College of Engineering', 'Computer Science', '6.404000000000001', '100', '0')
(7490, 'Cornell University', '11', 'Admit', 'MS', 'Materials Science & Engineering', 'Fall ', '2014', '167', '153', '320', '4', '105', 'IIT (BHU) Varanasi', 'Ceramic Engineering', '7.02', '10', '24')
(7491, 'Cornell University', '11', 'Admit', 'MS', 'Master of engineering management', 'Fall ', '2013', '164', '152', '316', '4', 'None', "Queen's University", 'Civil', '3.3', '4', '0')
(7492, 'Cornell University', '11', 'Admit', 'MS', 'Biotechnology', 'Fall ', '2011', '740', '600', '1340', '3', '110', 'Jaypee Institute of Information Technology', 'Biotechnology', '7.8', '10', '0')
(7493, 'Cornell University', '11', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '750', '580', '1330', '3.5', '101', 'Bharati Vidyapeeth', 'EEE', '6.938', '100', '0')
(7494, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '720', '410', '1130', '3.5', '101', 'SJCE', 'Information Science', '7.8', '100', '0')
(7495, 'Cornell University', '11', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2012', '800', '730', '1530', '4', '118', 'SASTRA', 'Civil Engineering', '9.45', '10', '0')
(7496, 'Cornell University', '11', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2012', '790', '610', '1400', '4', '105', 'VTU', 'EEE', '7.8', '100', '0')
(7497, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '730', '520', '1250', 'None', 'None', 'VTU', 'Computer Science', '8', '100', '0')
(7498, 'Cornell University', '11', 'Admit', 'MS', 'Operations Research', 'Fall ', '2013', '170', '154', '324', 'None', '111', 'NIT Kurukshetra', 'Electrical Engineering', '9.72', '10', '0')
(7499, 'Cornell University', '11', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2012', '800', '670', '1470', '4', '114', 'MU', 'Computer', '7.106', '100', '0')
(7500, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '157', '154', '311', '3.5', '110', 'R V College of Engineering', 'Computer Science', '8', '100', '0')
(7501, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '162', '148', '310', '4', '110', 'MSRIT', 'Computer Science and Engineering', '9.1', '10', '0')
(7502, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '166', '148', '314', '3.5', '101', 'R V College of Engineering', 'Information science and engineering', '8.225', '100', '0')
(7503, 'Cornell University', '11', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '147', '136', '283', '3.5', '107', 'Dayananda Sagar College of Engineering', 'Electronics and communication', '6.5', '100', '0')
(7504, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '161', '152', '313', '4', '109', 'PESIT', 'Information Science', '9.47', '10', '39')
(7505, 'Cornell University', '11', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2012', '780', '710', '1490', '4', '112', 'SPCE', 'Electronics', '7', '100', '0')
(7506, 'Cornell University', '11', 'Admit', 'MS', 'Chemical Engineering', 'Fall ', '2013', 'None', 'None', '0', 'None', '112', 'NIT Srinagar', 'chemical Engineering', '7.41', '10', '0')
(7507, 'Cornell University', '11', 'Admit', 'MS', 'biomedical sciences', 'Spring ', '2015', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(7508, 'Cornell University', '11', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '165', '148', '313', '3', '109', 'None', 'Electronics', '8.7', '10', '24')
(7509, 'Cornell University', '11', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '480', '1280', '3.5', '105', 'Anna University', 'ECE', '8.2', '100', '0')
(7510, 'Cornell University', '11', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2011', '770', '580', '1350', '4', '109', 'Pune University', 'Electronics & Telecommunication', '3.16', '4', '0')
(7511, 'Cornell University', '11', 'Admit', 'MS', 'Mechanical Engineering', 'Spring ', '2014', '800', '640', '1440', '4.5', '112', 'NIT Warangal', 'Mechanical Engineering', '9.15', '10', '0')
(7512, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '550', '1350', '3.5', '113', 'Delhi College Of Engineeing', 'IT', '7.6', '100', '0')
(7513, 'Cornell University', '11', 'Admit', 'MS', 'Instrumentation and Control', 'Fall ', '2011', '800', '610', '1410', '3.5', '103', 'BITS Pilani', 'Electronics and Instrumentation', '9.4', '10', '0')
(7514, 'Cornell University', '11', 'Admit', 'MS', 'Textile Science & Technology', 'Fall ', '2012', '740', '300', '1040', '2', 'None', 'Osmania University', 'Textile Technology', '9.02', '10', '0')
(7515, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '162', '147', '309', '3', '104', 'Anna University', 'Computer Science', '9.41', '10', '0')
(7516, 'Cornell University', '11', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2013', '159', '151', '310', '3.5', '107', 'SSN College of Engineering', 'BIOMEDICAL ENGINEERING', '8.9', '10', '0')
(7517, 'Cornell University', '11', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '169', '156', '325', '3.5', '114', 'Thapar University', 'ECE', '8.56', '10', '0')
(7518, 'Cornell University', '11', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '163', '153', '316', '4', '116', 'BITS Pilani', 'EEE', '9.27', '10', '0')
(7519, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '162', '152', '314', '4.5', '112', 'PESIT', 'CSE', '7.85', '100', '15')
(7520, 'Cornell University', '11', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2011', '800', '560', '1360', '4', '113', 'JNTU', 'ECE', '3.62', '4', '0')
(7521, 'Cornell University', '11', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '700', '1500', '3.5', '111', 'NIT Kurukshetra', 'Mechanical Engineering', '9.255', '10', '0')
(7522, 'Cornell University', '11', 'Admit', 'MS', 'health administration', 'Fall', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(7523, 'Cornell University', '11', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '510', '1300', '3.5', '109', 'SVNIT Surat', 'Electronics Department', '9.53', '10', '0')
(7524, 'Cornell University', '11', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '163', '155', '318', '5.5', '118', 'None', '0', '0', '0', '0')
(7525, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '165', '149', '314', '3', '102', 'Maulana Azad National Institute of Technology', 'Computer Science and Engineering', '8.43', '10', '0')
(7526, 'Cornell University', '11', 'Admit', 'MS', 'physics', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'UCLA', 'Physics', '3.86', '4', '0')
(7527, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '161', '159', '320', '3.5', '111', 'BITS Pilani', 'Computer Science', '9.23', '10', '0')
(7528, 'Cornell University', '11', 'Admit', 'MS', 'food science', 'Fall ', '2011', '790', '540', '1330', '3', '100', 'University of Rajasthan', 'Biotechnology', '6.85', '100', '0')
(7529, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '169', '148', '317', '4', '104', 'R V College of Engineering', 'Computer Science', '8.1', '100', '0')
(7530, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '660', '1460', '3', '104', 'NSIT', 'IT', '6.9', '100', '0')
(7531, 'Cornell University', '11', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2015', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(7532, 'Cornell University', '11', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '161', '148', '309', '3', '93', 'Anna University', 'EE', '8.99', '10', '0')
(7533, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '167', '153', '320', '4', '110', 'B M S College of Engineering', 'Computer science', '7.7', '100', '0')
(7534, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '155', '317', '4', '111', 'R V College of Engineering', 'Information Science And Engineering', '9.62', '10', '0')
(7535, 'Cornell University', '11', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '167', '153', '320', '3.5', '109', 'SSN College of Engineering', 'ECE', '8.3', '10', '0')
(7536, 'Cornell University', '11', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2011', '790', '620', '1410', '4.5', '117', 'SASTRA', 'Information & Communication technology', '8.6', '10', '0')
(7537, 'Cornell University', '11', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2010', '790', '710', '1500', '4', '108', 'SASTRA', 'ECE', '0', '0', '0')
(7538, 'Cornell University', '11', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '162', '157', '319', '4.5', '108', 'VIT University', 'CSE', '8.8', '10', '0')
(7539, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '166', '154', '320', '4.5', '109', 'Sardar Patel College of Engineering', 'Computer Engineering', '7.358', '100', '0')
(7540, 'Cornell University', '11', 'Admit', 'MS', 'Instrumentation and Control', 'Fall ', '2015', 'None', 'None', '0', 'None', 'None', 'Cummins College of Engineering Pune', 'instrumentation and control', '0', '100', '0')
(7541, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '760', '620', '1380', '3', '96', 'Panjab University', 'Computer Science', '8.067', '100', '0')
(7542, 'Cornell University', '11', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '720', '610', '1330', '4', '102', 'National institue of technology jalandhar', 'Ec', '6.6', '100', '0')
(7543, 'Cornell University', '11', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2013', '800', '570', '1370', '40', '112', 'MU', 'Mech ENgg', '3.62', '4', '0')
(7544, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '540', '1340', '4', '104', 'MIT Pune', 'Computer Science', '7.2', '100', '0')
(7545, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '690', '1490', '3.5', '115', 'MNNIT', 'Computer Science and Engineering', '9.97', '10', '0')
(7546, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '540', '1340', '4', '112', 'IIT Allahabad', 'Information Technology', '9.17', '10', '0')
(7547, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '780', '510', '1290', 'None', '106', 'R V College of Engineering', 'Computer science', '0', '0', '0')
(7548, 'Cornell University', '11', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '800', '490', '1290', '3', '102', 'Delhi College Of Engineeing', 'IT', '7.625', '100', '0')
(7549, 'Cornell University', '11', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2012', '720', '480', '1200', '4', '114', 'Pune University', 'COMPUTER ENGINEERING', '7.3', '100', '0')
(7550, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '530', '1330', '4', '105', 'NIT Jaipur', 'Computer Engineering', '8.85', '10', '0')
(7551, 'Cornell University', '11', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2012', '780', '700', '1480', '3', '111', 'IIT Guwahati', 'Civil Engineering', '9.29', '10', '0')
(7552, 'Cornell University', '11', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '800', '670', '1470', '4', '117', 'R V College of Engineering', 'Mechanical Engg', '9.07', '10', '0')
(7553, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '162', '328', '4.5', '118', 'College of Engineering and Technology', 'Computer Science and Engineering', '9.09', '10', '90')
(7554, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '730', '1520', '3.5', '109', 'VTU', 'CSE', '8.25', '100', '0')
(7555, 'Cornell University', '11', 'Admit', 'MS', 'Operations Research', 'Fall ', '2012', '800', '550', '1350', '3.5', '109', 'MU', 'Computer', '7.5200000000000005', '100', '0')
(7556, 'Cornell University', '11', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '164', '148', '312', '3', '103', 'D J Sanghvi', 'Chemical Engineering', '7', '100', '0')
(7557, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '165', '330', '5.5', 'None', 'University of Cambridge', 'Computer Laboratory', '0', '0', '0')
(7558, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '164', '155', '319', '4', '109', 'R V College of Engineering', 'Computer Science and Engineering', '9.4', '10', '0')
(7559, 'Cornell University', '11', 'Admit', 'MS', 'Human Computer Interaction', 'Fall ', '2012', '770', '590', '1360', '3', '102', 'PICT', 'Information Technology', '0', '0', '0')
(7560, 'Cornell University', '11', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '165', '149', '314', '3', '101', 'Anna University', 'EEE', '9.1', '10', '0')
(7561, 'Cornell University', '11', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '163', '157', '320', '5', '114', 'VTU', 'ECE', '7.374', '100', '0')
(7562, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '600', '1390', '3.5', '104', 'NIT Silchar', 'cse', '8.14', '10', '0')
(7563, 'Cornell University', '11', 'Admit', 'MS', 'Chemical Engineering', 'Fall ', '2013', '163', '162', '325', '4', 'None', 'Colgate University', 'Chemistry', '3.5', '4', '0')
(7564, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '168', '151', '319', '3.5', '113', 'MU', 'Computer Engineering', '7.13', '100', '0')
(7565, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '790', '790', '1580', '4.5', '113', 'Anna University', 'Information Technology', '8.1', '100', '0')
(7566, 'Cornell University', '11', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '800', '590', '1390', '3', '109', 'IIT Roorkee', 'ECE', '8.744', '10', '0')
(7567, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '460', '1260', '3.5', '99', 'Fr. Conceicao Rodrigues College of Engineering', 'Computer Science', '6.573', '100', '0')
(7568, 'Cornell University', '11', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2011', '700', '550', '1250', 'None', 'None', 'None', '0', '0', '0', '0')
(7569, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science/ Mgmt', 'Fall ', '2011', '800', '570', '1370', '4', '111', 'NIT-Allahabad', 'CSE', '9.53', '10', '0')
(7570, 'Cornell University', '11', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2013', '318', '153', '471', '4.5', '106', 'VIT University', 'Electronics and Communication', '8.97', '10', '0')
(7571, 'Cornell University', '11', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2013', '159', '163', '322', 'None', 'None', 'NIT Allahabad', 'Production & Industrial Engg', '7.8', '10', '0')
(7572, 'Cornell University', '11', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '166', '169', '335', '4.5', '119', 'VJTI', 'Mechanical Engg.', '8.5', '10', '0')
(7573, 'Cornell University', '11', 'Admit', 'MS', 'Biomedical Engineering', 'Fall', 'None', '161', '148', '309', '3.5', '105', 'NIT Tirchy', 'ECE', '7.45', '10', '0')
(7574, 'Cornell University', '11', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2014', '164', '148', '312', '4', '108', 'BITS Hyderabad', 'Electrical Engineering', '7.71', '10', '0')
(7575, 'Cornell University', '11', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '170', '149', '319', '3', '95', 'VJTI', 'Electronics', '8.22', '10', '12')
(7576, 'Cornell University', '11', 'Admit', 'MS', 'Chemical Engineering', 'Fall ', '2011', '780', '700', '1480', '5', '118', 'None', '0', '0', '0', '0')
(7577, 'Cornell University', '11', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '570', '1350', '4', '106', 'VTU', 'Electronics and communication', '8.8', '100', '0')
(7578, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '154', '318', '4', '107', 'R V College of Engineering', 'Computer Science', '8.69', '10', '12')
(7579, 'Cornell University', '11', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2011', '770', '540', '1310', '3', '96', 'CEG', 'ECE', '8.48', '10', '0')
(7580, 'Cornell University', '11', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '168', '163', '331', '3.5', '118', 'Thapar University', 'Mechanical', '9.06', '10', '0')
(7581, 'Cornell University', '11', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '660', '1460', '4', '109', 'PESSE (VTU)', 'ECE', '8.6', '100', '0')
(7582, 'Cornell University', '11', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '550', '1350', '3.5', '100', 'CEG', 'Ece', '8.8', '10', '0')
(7583, 'Cornell University', '11', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '166', '157', '323', '4', '114', 'PSG College of Technology', 'Electronics and Communication Engineering', '9.7', '10', '0')
(7584, 'Cornell University', '11', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2011', '770', '570', '1340', '4', '110', 'Manipal Institue of Technology', 'Computer Science', '9.32', '10', '0')
(7585, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '161', '329', 'None', '114', 'PESIT', 'Information Science', '9.43', '10', '0')
(7586, 'Cornell University', '11', 'Admit', 'MS', 'Veterinary & Animal Science', 'Fall ', '2013', '159', '152', '311', '4', '113', 'Kerala Agricultural University', 'Veterinary medicine', '7.6', '10', '0')
(7587, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '800', '680', '1480', '3', '109', 'VTU', 'IS', '7.9', '100', '0')
(7588, 'Cornell University', '11', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2012', '780', '620', '1400', '3.5', '108', 'BITS Pilani', 'Electronics and instrumentation and Biology', '7.58', '10', '0')
(7589, 'Cornell University', '11', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2013', '164', '159', '323', '3.5', '102', 'NIT Tirchy', 'Production Engg', '8.5', '10', '0')
(7590, 'Cornell University', '11', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '166', '163', '329', 'None', '111', 'PSG College of Technology', 'Mechanical Engineering', '8.8', '10', '0')
(7591, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '660', '1450', '4.5', '116', 'NITK Surathkal', 'CS', '9.13', '10', '0')
(7592, 'Cornell University', '11', 'Admit', 'MS', 'urban and regional planning', 'Fall ', '2011', '800', '650', '1450', '5.5', '120', 'NIT-C', 'architecture', '8.23', '10', '0')
(7593, 'Cornell University', '11', 'Admit', 'MS', 'Neurosciences', 'Fall', 'None', '152', '158', '310', '3', '90', 'JIPMER', 'BIOCHEMISTRY', '7', '100', '0')
(7594, 'Cornell University', '11', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '770', '610', '1380', '4', '115', 'SSN College of Engineering', 'ECE', '8.6', '100', '0')
(7595, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '167', '158', '325', 'None', 'None', 'NIT', 'Computer Science', '9.07', '10', '12')
(7596, 'Cornell University', '11', 'Admit', 'MS', 'Computer engineering VLSI CAD', 'Fall ', '2014', '167', '159', '326', '4.5', '117', 'NIT Karnataka', 'Electronics and Communcation Engineering', '8.56', '10', '0')
(7597, 'Cornell University', '11', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '159', '151', '310', '3.5', '106', 'SRM', 'Electronics & Communication Engineering', '8.724', '10', '0')
(7598, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '470', '1270', '3', 'None', 'VJTI', 'Computer Technology', '9.1', '10', '0')
(7599, 'Cornell University', '11', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '155', '145', '300', '4.5', '85', 'GGSIPU', 'Electronics & Communication Engineering', '7.6', '100', '0')
(7600, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '169', '148', '317', '3', '98', 'Jaypee Institute of Information Technology', 'IT', '8.3', '10', '0')
(7601, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '167', '158', '325', '4', '115', 'Maharaja Agrasen Institute Of Technology', 'CSE', '7.17', '100', '7')
(7602, 'Cornell University', '11', 'Reject', 'MS', 'Chemical Engineering', 'Fall ', '2014', '165', '154', '319', '4', '112', 'DSCE', 'Chemical Engg.', '8.229000000000001', '100', '0')
(7603, 'Cornell University', '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '164', '143', '307', '3.5', '110', 'FCRIT Vashi', 'Electrical', '7', '100', '0')
(7604, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '168', '156', '324', '4', '112', 'NIT Allahabad', 'CSE', '9.13', '10', '0')
(7605, 'Cornell University', '11', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2012', '168', '155', '323', '3.5', '108', 'MU', 'Electronics', '6.2', '100', '0')
(7606, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '159', '156', '315', '4', '112', 'Cochin University of Science and Technology', 'INFORMATION TECHNOLOGY', '8.415000000000001', '100', '63')
(7607, 'Cornell University', '11', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2011', '790', '600', '1390', '3.5', '108', 'K J Somaiya College of Engiineering', 'ECE', '7', '100', '0')
(7608, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2008', '800', '680', '1480', '5', '113', 'University of Mumbai', 'Computer Engineering', '7.087999999999999', '100', '0')
(7609, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '164', '156', '320', '4', '111', 'DA-IICT', 'ICT', '6.74', '10', '0')
(7610, 'Cornell University', '11', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '790', '690', '1480', '4', '109', 'Sardar Patel College of Engineering', 'Electrical Engineering', '5.93', '100', '0')
(7611, 'Cornell University', '11', 'Reject', 'MS', 'Biomedical Engineering', 'Fall ', '2011', '730', '720', '1450', '4', '110', 'CEG', 'ECE', '7.1', '10', '0')
(7612, 'Cornell University', '11', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '166', '160', '326', '4.5', '120', 'BITS Pilani', 'Mechanical Engineering', '8.04', '10', '0')
(7613, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '162', '150', '312', '3', '87', 'BITS Pilani', 'Computer Science', '8.4', '10', '0')
(7614, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '440', '1230', '3.5', '104', 'VIT', 'Information Technology', '8', '10', '0')
(7615, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '168', '155', '323', '3', '105', 'MNNIT', 'CSE', '8.3', '10', '0')
(7616, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '161', '161', '322', '4', '110', 'BITS Goa', 'CS', '8', '10', '0')
(7617, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '161', '150', '311', '4', '108', 'M.I.T Pune', 'Computer Engineering', '5.987', '100', '0')
(7618, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '154', '321', '3', '108', 'FRCRCE-Mumbai University', 'Information Technology', '6.720000000000001', '100', '0')
(7619, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '157', '319', '4', '115', 'BMSCE', 'CS', '9.3', '10', '24')
(7620, 'Cornell University', '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '550', '1350', '5', '106', 'Jadavpur University', 'Power engg', '7.8', '10', '0')
(7621, 'Cornell University', '11', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '15', '170', '159', '329', '4', '110', 'Delhi University', 'Electronics and Communication', '7.140000000000001', '100', '45')
(7622, 'Cornell University', '11', 'Reject', 'MS', 'Information Security', 'Fall ', '2014', '166', '156', '322', '4', '106', 'Thapar University', 'Computer Science', '7.1', '10', '24')
(7623, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '167', '155', '322', '4.5', '109', 'Maharaja Agrasen Institute Of Technology', 'B.Tech (Computer Science)', '7.6', '100', '0')
(7624, 'Cornell University', '11', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '170', '166', '336', '5', '112', 'IIT BHU', 'Electrical Engg', '8.15', '10', '0')
(7625, 'Cornell University', '11', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2013', '169', '161', '330', '4.5', '112', 'B M S College of Engineering', 'Mechanical', '9.14', '10', '0')
(7626, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '690', '440', '1130', '3', '81', 'Anna University', 'Computer Science', '8.5', '100', '0')
(7627, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '790', '670', '1460', '3.5', '107', 'BITS Pilani', 'Information Systems', '8.53', '10', '0')
(7628, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '590', '1390', '3', '111', 'K J Somaiya College of Engiineering', 'Computer Engineering', '7.5120000000000005', '100', '0')
(7629, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '146', '307', '4', '103', 'University of Pune', 'Computer Engineering', '7.0120000000000005', '100', '0')
(7630, 'Cornell University', '11', 'Reject', 'MS', 'petroleum engineering', 'Fall ', '2014', '154', '146', '300', '3', '98', 'Bharati Vidyapeeth', 'Instrumentation & Control', '6', '100', '48')
(7631, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '550', '1350', '3', '102', 'PEC University of Technology', 'Computer Science', '7.46', '10', '0')
(7632, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '154', '167', '321', '3', '108', 'Veermata Jijabai Technological Institute', 'Information Technology', '8.6', '10', '0')
(7633, 'Cornell University', '11', 'Reject', 'MS', 'software engineering', 'Fall ', '2013', '160', '151', '311', '4', '109', 'R.D. National College', 'IT', '7', '100', '0')
(7634, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '163', '150', '313', '4', 'None', 'JSS Noida', 'IT', '7.753', '100', '0')
(7635, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '165', '156', '321', '3.5', '112', 'Bharati Vidyapeeth', 'Information Technology', '3.9', '4', '0')
(7636, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '620', '1400', '3.5', '114', 'NMIMS', 'Computer Engineering', '3.41', '4', '0')
(7637, 'Cornell University', '11', 'Reject', 'MS', 'CS / MSIS / ITM', 'Fall ', '2011', '800', '640', '1440', '4.5', '112', 'DA-IICT', 'Information and Communication Technology', '8.87', '10', '0')
(7638, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '540', '1320', '4', '112', 'BITS Goa', 'Bilogical Science and Computer Science', '7.45', '10', '0')
(7639, 'Cornell University', '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall', 'None', '760', '800', '1560', '5.5', '119', 'R V College of Engineering', 'ECE', '8.08', '100', '0')
(7640, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '780', '620', '1400', '4', '115', 'PICT', 'Computer', '3.45', '4', '0')
(7641, 'Cornell University', '11', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '159', '151', '310', '3.5', '109', 'VTU', 'ECE', '7.8', '100', '0')
(7642, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '169', '154', '323', '4', '115', 'None', '0', '0', '0', '0')
(7643, 'Cornell University', '11', 'Reject', 'MS', 'Biomedical Engineering', 'Fall', 'None', '750', '740', '1490', '3', '117', 'UPTU', 'Electronics & Instrumentation', '7', '100', '0')
(7644, 'Cornell University', '11', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '800', '650', '1450', '4', '115', 'University of Mumbai', 'Computer Engg', '7', '100', '0')
(7645, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2007', '800', '590', '1390', '4.5', '270', 'SPCE', 'IT', '6.3', '100', '0')
(7646, 'Cornell University', '11', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2012', '800', '660', '1460', '4', '112', 'UIET Panjab University', 'Engineering', '7.6', '100', '0')
(7647, 'Cornell University', '11', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '170', '151', '321', '4', '106', 'IIT Kharagpur', 'Mechanical Engineering B.Tech and M.Tech dual degree (5 yr)', '8.84', '10', '0')
(7648, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '157', '318', '3', '105', 'UPTU', 'IT', '7.1', '100', '0')
(7649, 'Cornell University', '11', 'Reject', 'MS', 'Technology Leadership', 'Fall ', '2014', 'None', 'None', '0', 'None', 'None', 'BVUCOE', 'Electronics Engineering', '6.2', '100', '8')
(7650, 'Cornell University', '11', 'Reject', 'MS', 'Engineering Management', 'Spring ', '2013', '730', '480', '1210', '3', '108', 'JNTU', 'Biotechnology', '7.4', '100', '0')
(7651, 'Cornell University', '11', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2006', '790', '630', '1420', '5', '293', 'MU', 'Electronics', '7.297', '100', '0')
(7652, 'Cornell University', '11', 'Reject', 'MS', 'Construction Management', 'Fall ', '2015', '160', '155', '315', '4', '112', 'Manipal Institue of Technology', 'Architecture', '0', '0', '0')
(7653, 'Cornell University', '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '160', '150', '310', '4', '100', 'MDU', 'ece', '6', '100', '0')
(7654, 'Cornell University', '11', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2011', '800', '650', '1450', '3', '116', 'IIT BHU', 'Mechanical', '7.24', '100', '0')
(7655, 'Cornell University', '11', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '160', '163', '323', '4', '109', 'None', 'EC', '7.775', '100', '0')
(7656, 'Cornell University', '11', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '770', '570', '1340', '3.5', '117', 'University of Cape Town', 'Engineering', '6.99', '100', '0')
(7657, 'Cornell University', '11', 'Reject', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2011', '780', '570', '1350', 'None', '101', 'UPTU', 'Information Technology', '7.1', '100', '0')
(7658, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '155', '318', '4', '108', 'VTU', 'CSE', '7.8', '100', '0')
(7659, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '580', '1380', '4.5', '112', 'Manipal Institue of Technology', 'CS', '3.5', '4', '0')
(7660, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '170', '155', '325', '4', '113', 'IIT Guwahati', 'Computer Science', '6.8', '10', '0')
(7661, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '162', '158', '320', '4', 'None', 'VTU', 'CS', '7.7', '100', '0')
(7662, 'Cornell University', '11', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '164', '151', '315', '4', '110', 'SJCE', 'Industrial and Production Engineering', '9.34', '10', '0')
(7663, 'Cornell University', '11', 'Reject', 'MS', 'Chemical Engineering', 'Fall ', '2014', '160', '162', '322', '4', '115', 'BITS Hyderabad', 'Chemical Engineering', '8.07', '10', '0')
(7664, 'Cornell University', '11', 'Reject', 'MS', 'Operations Research', 'Fall ', '2015', '165', '157', '322', '3', '111', 'BITS Pilani', 'MECHANICAL ENGINEERING', '7.56', '10', '0')
(7665, 'Cornell University', '11', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '800', '670', '1470', '4', '113', 'NIT Calicut', 'Mechanical Engineering', '6.67', '10', '0')
(7666, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '158', '323', '4', '114', 'IIT Guwahati', 'Mathematics and Computing', '7.62', '10', '0')
(7667, 'Cornell University', '11', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '168', '157', '325', '4', '116', 'NIT Calicut', 'ECE', '8.15', '10', '0')
(7668, 'Cornell University', '11', 'Reject', 'MS', 'MIS', 'Fall ', '2015', '165', '149', '314', '3', '104', 'NITJ', 'ICE', '7.75', '10', '58')
(7669, 'Cornell University', '11', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2011', '800', '550', '1350', 'None', 'None', 'R V College of Engineering', 'Mechanical', '8.47', '10', '0')
(7670, 'Cornell University', '11', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '170', '158', '328', '4.5', '114', 'NIT Kurukshetra', 'Mech', '9.74', '10', '0')
(7671, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '750', '590', '1340', '4', '109', 'SVCE', 'CS', '8.2', '10', '0')
(7672, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '500', '1300', '4', '109', 'NIT Calicut', 'CSE', '9.25', '10', '0')
(7673, 'Cornell University', '11', 'Reject', 'MS', 'physics', 'Fall ', '2014', '167', '156', '323', '4', '105', 'NIT Calicut', 'Physics', '8.4', '10', '0')
(7674, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '165', '146', '311', '4', '103', 'Veermata Jijabai Technological Institute', 'Information Technology', '8.3', '10', '20')
(7675, 'Cornell University', '11', 'Reject', 'MS', 'Materials Science & Engineering', 'Fall ', '2015', '167', '160', '327', '4.5', '111', 'IIT Roorkee', 'Metallurgical and Materials Engineering', '9.112', '10', '0')
(7676, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '168', '143', '311', '3.5', '102', 'None', '0', '6.227', '100', '0')
(7677, 'Cornell University', '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '159', '166', '325', '4.5', '110', 'Anna University', 'EEE', '7.5', '10', '0')
(7678, 'Cornell University', '11', 'Reject', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '166', '156', '322', '4', '113', 'Pune University', 'Electronics & Telecomm', '6.29', '100', '22')
(7679, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '710', '590', '1300', '3.5', '101', 'Nirma Institute of Technology', 'Computer Engg', '7.02', '10', '0')
(7680, 'Cornell University', '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '166', '153', '319', '4', '103', 'IIT Kanpur', 'M.Tech in Laser Technology', '10', '10', '0')
(7681, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '149', '311', '3', '100', 'Charotar University of Science and Technology', 'Electronics & Communication', '8.85', '10', '36')
(7682, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '640', '1430', '3', '101', 'Nirma Institute of Technology', 'Computer engineering', '8.68', '10', '0')
(7683, 'Cornell University', '11', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '168', '125', '293', '3.5', '104', 'Pune University', 'E&TC;', '5.5', '100', '0')
(7684, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '165', '151', '316', '3', '103', 'NIT Allahabad', 'Computer Science and Engineering', '8.7', '10', '36')
(7685, 'Cornell University', '11', 'Reject', 'MS', 'food science', 'Fall ', '2012', '740', '470', '1210', '4', '104', 'MU', 'Biotechnology', '7.083', '100', '0')
(7686, 'Cornell University', '11', 'Reject', 'MS', 'Business Analytics', 'Fall ', '2013', '780', '610', '1390', 'None', '107', 'Amity University', 'Computer Science', '8.53', '10', '0')
(7687, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '164', '155', '319', 'None', '108', 'VTU', 'Computer Science', '7.2', '100', '0')
(7688, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '650', '1450', '4', '110', 'IIT Kharagpur', 'CS', '8.5', '10', '0')
(7689, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '570', '1370', '4', '109', 'M S University of Baroda', 'Computer Science', '4', '4', '0')
(7690, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '470', '1270', '4', '105', 'Delhi College Of Engineeing', 'Computer Engineering', '6.25', '100', '0')
(7691, 'Cornell University', '11', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '740', '550', '1290', '4', '107', 'University of New Orleans', 'Electrical Engineering', '3.74', '4', '0')
(7692, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '800', '670', '1470', '3.5', '104', 'Pune University', 'Computer Engineering', '6.6', '100', '0')
(7693, 'Cornell University', '11', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '167', '169', '336', '4.5', '117', 'BITS Pilani', 'Manufacturing Engineering', '7.97', '10', '12')
(7694, 'Cornell University', '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '169', '150', '319', '4', '105', 'UPTU', 'Electrical Engineering', '7.696', '100', '0')
(7695, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '620', '1400', '3', '109', 'University of Pune', 'Computer', '7.2', '100', '0')
(7696, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '165', '151', '316', '4', '109', 'VTU', 'Computer Science', '7.3', '100', '57')
(7697, 'Cornell University', '11', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '750', '550', '1300', '4', '108', 'YMCA', 'Computer Engineering', '7.6', '100', '0')
(7698, 'Cornell University', '11', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '162', '152', '314', '3.5', '112', 'NIT Allahabad', 'ECE', '7.07', '10', '84')
(7699, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '640', '1440', '3', '103', 'IIT Jabalpur', 'CS', '7.35', '10', '0')
(7700, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '169', '161', '330', '4.5', '114', 'Rajasthan Technical University', 'Computer Science Engineering', '8.309999999999999', '100', '0')
(7701, 'Cornell University', '11', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2013', '163', '154', '317', '3.5', '109', 'Manipal Institue of Technology', 'Mechanical Engineering', '7.66', '10', '0')
(7702, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '166', '325', '4', '114', 'MU', 'Computer Engg', '6.5', '100', '0')
(7703, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '165', '153', '318', '3.5', '108', 'GGSIPU', 'CSE', '7.3', '100', '44')
(7704, 'Cornell University', '11', 'Reject', 'MS', 'software engineering', 'Fall ', '2014', '166', '154', '320', '4', '112', 'Delhi College Of Engineeing', 'Computers', '7', '100', '0')
(7705, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '660', '1430', '4', '112', 'VESIT', 'Information Technology', '6.9', '100', '0')
(7706, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '660', '1460', '3.5', '117', 'BITS Goa', 'Computer Science(B.E) & Bio (Msc)', '8.58', '10', '0')
(7707, 'Cornell University', '11', 'Reject', 'MS', 'Materials Science & Engineering', 'Fall ', '2011', '790', '740', '1530', '4', '112', 'NIT Nagpur', 'Metallurgical and Materials Engineering', '9.39', '10', '0')
(7708, 'Cornell University', '11', 'Reject', 'MS', 'CS', 'Fall ', '2013', '770', '590', '1360', '3.5', '111', 'VTU', 'ISE', '7.45', '100', '0')
(7709, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '570', '1360', '3.5', '113', 'NMIMS', 'Computer Science', '3.24', '4', '0')
(7710, 'Cornell University', '11', 'Reject', 'MS', 'Electrical and Electronics', 'Spring ', '2014', '165', '158', '323', '3.5', '100', 'Osmania University', 'electrical and electronics engineering', '7.2', '100', '0')
(7711, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '790', '710', '1500', '2.5', '114', 'Anna University', 'CSE', '7.58', '10', '0')
(7712, 'Cornell University', '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '160', '154', '314', '3.5', '104', 'Biju Patnaik University of Technology', 'Electrical Engineering', '8.17', '10', '0')
(7713, 'Cornell University', '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '770', '570', '1340', '3.5', '110', 'Pune University', 'Electronics and Telecomm', '6.2', '100', '0')
(7714, 'Cornell University', '11', 'Reject', 'MS', 'Master of engineering management', 'Fall', 'None', '162', '149', '311', '3.5', '107', 'Amrita School of Engineering', 'Mechanical', '7.66', '10', '0')
(7715, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '167', '164', '331', '4.5', '117', 'R V College of Engineering', 'Electrical and Electronics', '8.5', '100', '55')
(7716, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '500', '1270', '3.5', '105', 'Anna University', 'C.S.E', '7.613', '10', '0')
(7717, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '167', '329', '5', '115', 'SRM', 'Computer science', '8.9', '10', '0')
(7718, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '750', '720', '1470', '3.5', '107', 'Sri Krishna College Of Engineering And Technology', 'computer science & engineering', '7.1', '100', '0')
(7719, 'Cornell University', '11', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '162', '153', '315', '3', '105', 'Model Engineering College', 'Electronics And Communication Engineering', '7', '100', '42')
(7720, 'Cornell University', '11', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '800', '570', '1370', '3.5', '106', 'Amrita Vishwa Vidhyapeetham', 'Mechanical Engineering', '8.54', '10', '0')
(7721, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '510', '1300', '3', '109', 'BITS Pilani', 'computer science', '8.4', '10', '0')
(7722, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '560', '1360', '4', '102', 'MU', 'Computer Engineering', '6.5', '100', '0')
(7723, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '600', '1400', '5', '114', 'NIT Tirchy', 'Electrical and Electronics Engineering', '7.8', '10', '0')
(7724, 'Cornell University', '11', 'Reject', 'MS', 'CS', 'Spring ', '2014', '160', '152', '312', '3.5', '113', 'University of Pune', 'Computer Engineering', '6.0200000000000005', '100', '0')
(7725, 'Cornell University', '11', 'Reject', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2013', '163', '155', '318', '3.5', '108', 'R V College of Engineering', 'Computer Science', '7.85', '100', '0')
(7726, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '450', '1250', '3.5', '97', 'NIT Tirchy', 'INSTRUMENTATION & CONTROL ENGG', '7.98', '10', '0')
(7727, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '170', '164', '334', '3.5', '113', 'Amrita School of Engineering', 'CSE', '7.73', '10', '0')
(7728, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '780', '660', '1440', '4', '113', 'MU', 'Information Technology', '6.7', '100', '22')
(7729, 'Cornell University', '11', 'Reject', 'MS', 'Computational Science', 'Fall ', '2012', '800', '670', '1470', '4', '114', 'NIT Hamirpur', 'Mechanical Engineering', '8.68', '10', '0')
(7730, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '400', '1200', 'None', '91', 'BITS Goa', 'Computer Science', '7.59', '10', '0')
(7731, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '790', '470', '1260', '3', '100', 'University of Mumbai', 'Computer Science & Engineering', '5.9670000000000005', '100', '0')
(7732, 'Cornell University', '11', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2014', '162', '153', '315', '3.5', 'None', 'JNTU', 'electrical engineering', '7', '100', '0')
(7733, 'Cornell University', '11', 'Reject', 'MS', 'Mechanical And Aerospace', 'Fall ', '2014', '163', '160', '323', '4.5', '113', 'University of Pune', 'Mechanical Engineering', '7.2', '100', '0')
(7734, 'Cornell University', '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '730', '700', '1430', '3.5', '118', 'MNIT', 'electrical', '7.2', '10', '0')
(7735, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '164', '159', '323', '4', '116', 'NIT Tirchy', 'CSE', '8.72', '10', '34')
(7736, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '169', '154', '323', '3', '112', 'Zhejiang University', 'Digital Media Technology', '8.7', '100', '0')
(7737, 'Cornell University', '11', 'Reject', 'MS', 'CS', 'Fall ', '2013', '770', '610', '1380', '4', '105', 'Gujarat Technological University', 'Computer Engg.', '8.1', '100', '0')
(7738, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '780', '560', '1340', '3', '102', 'MU', 'Computer Engineering', '7.4', '100', '0')
(7739, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '780', '610', '1390', '3.5', '112', 'BITS Pilani', 'Computer science', '8.44', '10', '0')
(7740, 'Cornell University', '11', 'Reject', 'MS', 'Chemical/Environmental Engg.', 'Fall ', '2011', '740', '440', '1180', '4', '104', 'NIT Surat', 'Chemical', '9.34', '10', '0')
(7741, 'Cornell University', '11', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2012', '163', '159', '322', '3.5', '98', 'IIT Madras', 'Aerospace', '8.9', '10', '0')
(7742, 'Cornell University', '11', 'Reject', 'MS', 'Electrical and computer science', 'Fall ', '2011', '760', '390', '1150', '3', '99', 'NMIMS', 'Electronics', '3.3', '4', '0')
(7743, 'Cornell University', '11', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2013', '770', '580', '1350', '3', '98', 'D j Sanghvi', 'Chemical Engineering', '5.9', '100', '0')
(7744, 'Cornell University', '11', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '161', '149', '310', '4', '117', 'Gujarat Technological University', 'ELECTRONICS AND COMMUNICATION', '9.13', '10', '20')
(7745, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '340', '1140', '4.5', '111', 'VTU', 'CS', '7', '100', '0')
(7746, 'Cornell University', '11', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '158', '155', '313', '4.5', '106', 'VTU', 'Electronics and Communication', '7.3', '100', '13')
(7747, 'Cornell University', '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '500', '1280', '3.5', '108', 'NIT Jaipur', 'Electrical Engg.', '8.41', '10', '0')
(7748, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '510', '1310', '3.5', '104', 'Anna University', 'Computer Science', '7.4', '100', '0')
(7749, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Spring ', '2016', '165', '145', '310', '3.5', '100', 'MU', 'Extc', '6.6', '100', '0')
(7750, 'Cornell University', '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '165', '155', '320', '4.5', '114', 'BITS Pilani', 'EEE', '8.46', '10', '9')
(7751, 'Cornell University', '11', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2014', '162', '162', '324', '4', '116', 'PESIT', '0', '0', '0', '0')
(7752, 'Cornell University', '11', 'Reject', 'MS', 'Chemical Engineering', 'Fall ', '2012', '750', '510', '1260', '3', '98', 'MU', 'Chemical Engg', '6.67', '100', '0')
(7753, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '14', '162', '168', '330', '4', 'None', 'MU', 'Computers', '6.45', '100', '0')
(7754, 'Cornell University', '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '167', '146', '313', '3.5', '93', 'VTU', 'ECE', '8.55', '100', '0')
(7755, 'Cornell University', '11', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2011', '800', '650', '1450', '4', '115', 'University of Pune', 'Mechanical Engineering', '6.515000000000001', '100', '0')
(7756, 'Cornell University', '11', 'Reject', 'MS', 'CS', 'Fall ', '2014', '168', '156', '324', '4', '103', 'IIT', 'ECE', '7.4', '10', '36')
(7757, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '690', '1490', '4', '111', 'NIT', 'Computer Science', '9', '10', '0')
(7758, 'Cornell University', '11', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2012', '800', '750', '1550', '5', '109', 'IIT Kharagpur', 'Aerospace Engg.', '6.71', '10', '0')
(7759, 'Cornell University', '11', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '167', '148', '315', '4', '99', 'VTU', 'Mechanical Engineering', '9.23', '10', '20')
(7760, 'Cornell University', '11', 'Reject', 'MS', 'Electronics & Communication', 'Fall ', '2012', '790', '440', '1230', '3.5', '96', 'VTU', 'ECE', '7.7', '100', '0')
(7761, 'Cornell University', '11', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '520', '1320', '4', '110', 'R V College of Engineering', 'ECE', '7.390000000000001', '100', '0')
(7762, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '159', '152', '311', '3', '103', 'VTU', 'Computer Science', '8.1', '100', '0')
(7763, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '170', '163', '333', '4.5', '112', 'Netaji Subhas Institute of Technology', 'Information Technology', '7.2', '100', '36')
(7764, 'Cornell University', '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '510', '1310', '3.5', 'None', 'SFIT mumbai', 'EXTC', '7', '100', '0')
(7765, 'Cornell University', '11', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '167', '158', '325', '4.5', '108', 'VIT Pune', 'Mechanical', '8.69', '10', '0')
(7766, 'Cornell University', '11', 'Reject', 'MS', 'Cell and Molecular Biology', 'Fall ', '2011', '770', '530', '1300', '4', '113', 'SVCE', 'Biotechnology', '7.138', '100', '0')
(7767, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '169', '167', '336', '4', '119', 'Sardar Patel University', 'Computer Engineering', '8.14', '10', '32')
(7768, 'Cornell University', '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '168', '157', '325', '3', '108', 'GBPUAT Pantnagar', 'Electrical', '8.3', '10', '59')
(7769, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '166', '155', '321', '4', '117', 'MU', 'CS', '6.8', '100', '0')
(7770, 'Cornell University', '11', 'Reject', 'MS', 'Chemical Engineering', 'Fall ', '2012', '760', '480', '1240', '3.5', '104', 'Padmashree Dr D Y Patil University', 'Biotechnology', '6.8', '100', '0')
(7771, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '166', '155', '321', '3', 'None', 'VIT', 'Electrical and Electronics Engineering', '7.97', '10', '0')
(7772, 'Cornell University', '11', 'Reject', 'MS', 'Engineering Management / Industrial Engineering / IMSE', 'Fall ', '2015', '170', '157', '327', '3', '99', 'Osmania University', 'Mechanical Engineering', '7.970999999999999', '100', '29')
(7773, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '590', '1390', '3.5', '111', 'NIT Nagpur', 'CSE', '7.9', '10', '0')
(7774, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '770', '540', '1310', '3.5', '114', 'Thadomal Shahani Engineering College', 'Computer Engineering', '6.8', '100', '0')
(7775, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '160', '321', '3', '109', 'MU', 'Electronics and Telecommunication', '6.720999999999999', '100', '18')
(7776, 'Cornell University', '11', 'Reject', 'MS', 'Information Security', 'Fall ', '2011', '780', '540', '1320', '4', '117', 'BITS Pilani', 'Computer Science', '8.4', '10', '0')
(7777, 'Cornell University', '11', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '800', '620', '1420', '3', '92', 'MIT Pune University', 'Mechanical', '6.8', '100', '0')
(7778, 'Cornell University', '11', 'Reject', 'MS', 'CS / SE / IT / MIS', 'Fall ', '2013', '164', '166', '330', '4', '119', 'WBUT', 'CSE', '7.83', '10', '0')
(7779, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '700', '1480', '4', '116', 'Amrita School of Engineering', 'Computer Science', '8.74', '10', '0')
(7780, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '160', '146', '306', '3.5', '106', 'Madras Institute of Technology', 'Information Technology', '8.2', '10', '54')
(7781, 'Cornell University', '11', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '800', '720', '1520', '4.5', '120', 'R V College of Engineering', 'ECE', '7.720000000000001', '100', '0')
(7782, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '164', '150', '314', '4', 'None', 'CEG', 'Computer Science', '8.99', '10', '0')
(7783, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '660', '1430', '4', '106', 'VTU', 'Information Science', '7.1', '100', '0')
(7784, 'Cornell University', '11', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2014', '165', '155', '320', '3', '110', 'NIT Tirchy', 'Civil Engineering', '9.3', '10', '0')
(7785, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '690', '1480', '3', '97', 'Pune University', 'Computer', '7.3', '100', '0')
(7786, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '150', '312', '3.5', '111', 'GZSCET Punjab Technical University', 'Computer Science and Engineering', '7.878', '100', '0')
(7787, 'Cornell University', '11', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2015', '158', '155', '313', '4.5', '115', 'MSRIT', 'Mechanical Engineering', '8.53', '10', '41')
(7788, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '156', '320', '3', '107', 'BITS Pilani', 'Computer Science', '8.19', '10', '24')
(7789, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '700', '1500', 'None', '110', 'BITS Pilani', 'Computer Science', '7.52', '10', '0')
(7790, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '163', '150', '313', '3.5', '104', 'CEG', 'Computer Science', '8.96', '10', '0')
(7791, 'Cornell University', '11', 'Reject', 'MS', 'Electronics & Communication', 'Fall ', '2012', '800', '570', '1370', '3.5', '108', 'Gujarat Technological University', 'Electronics and Communication', '7.7', '10', '0')
(7792, 'Cornell University', '11', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2011', '800', '690', '1490', '5', '116', 'Madras Institute of Technology', 'Aerospace Engineering', '8.3', '10', '0')
(7793, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(7794, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '170', '156', '326', '4', '107', 'NITK Surathkal', 'Computer Science', '7.93', '10', '0')
(7795, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '790', '710', '1500', '4.5', 'None', 'D J Sanghvi', 'IT', '6.7', '100', '0')
(7796, 'Cornell University', '11', 'Reject', 'MS', 'analytics', 'Fall ', '2012', '166', '152', '318', 'None', '109', 'NIT-Trichy', 'Mechanical Engg.', '7.13', '10', '0')
(7797, 'Cornell University', '11', 'Reject', 'MS', 'CS', 'Fall ', '2012', '168', '156', '324', '4.5', '111', 'BITS Pilani', 'Computer Science', '8.19', '10', '0')
(7798, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '166', '153', '319', '4.5', '108', 'MU', 'Computer Engineering', '6.7', '100', '0')
(7799, 'Cornell University', '11', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '166', '156', '322', '3.5', '109', 'Veermata Jijabai Technological Institute', 'Computer Technology', '8.3', '10', '22')
(7800, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '550', '1350', '3.5', 'None', 'CEG', 'B.Tech/ IT', '8.783', '10', '0')
(7801, 'Cornell University', '11', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2011', '790', '420', '1210', '4.5', '108', 'Maharashtra Institute of Technology', 'Mechanical', '6.5329999999999995', '100', '0')
(7802, 'Cornell University', '11', 'Reject', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2012', '740', '570', '1310', '3', '101', 'Siddaganga Institue of Technology', 'Information Science and Engineering', '7.4799999999999995', '100', '0')
(7803, 'Cornell University', '11', 'Reject', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(7804, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '168', '149', '317', '4', '109', 'MU', 'Computers', '7.590000000000001', '100', '0')
(7805, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2010', '770', '650', '1420', '4', '110', 'Birla Vishvakarma Mahavidyalaya', 'CS', '9.19', '10', '0')
(7806, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '166', '161', '327', '4', '116', 'JNTU', 'Mechanical Engineering', '6.934', '100', '24')
(7807, 'Cornell University', '11', 'Reject', 'MS', 'Materials Science & Engineering', 'Fall ', '2013', '163', '156', '319', '4', '109', 'VIT University', 'Mechanical', '8.98', '10', '0')
(7808, 'Cornell University', '11', 'Reject', 'MS', 'Operations Research', 'Fall ', '2012', '166', '161', '327', '4.5', '110', 'IIT Madras', 'Mechanical', '6.68', '10', '0')
(7809, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '149', '314', '4', '114', 'Rajiv Gandhi Institute Of Technology', '0', '7.2', '100', '0')
(7810, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '168', '161', '329', '4', '114', 'Institute of Technical Education and Research', 'Computer Science', '9.1', '10', '0')
(7811, 'Cornell University', '11', 'Reject', 'MS', 'Materials Science & Engineering', 'Fall ', '2015', '166', '160', '326', '4', 'None', 'PEC University of Technology', 'Materials and Metallurgical Engineering', '7.5', '10', '2')
(7812, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '159', '323', '4', '114', 'Thapar University', 'Electronics(Instrument &Contol;)', '7.95', '10', '0')
(7813, 'Cornell University', '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '750', '650', '1400', '3.5', '105', 'SSN College of Engineering', 'Electrical and Electronics', '8', '100', '0')
(7814, 'Cornell University', '11', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '170', '153', '323', '3.5', '108', 'IIT Kanpur', 'Mechancial', '9', '10', '0')
(7815, 'Cornell University', '11', 'Reject', 'MS', 'analytics', 'Fall ', '2015', '159', '157', '316', '4.5', '108', 'BITS Pilani', 'Chemical Engg', '6.76', '10', '66')
(7816, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '660', '1460', '3.5', '99', 'IIITM', 'IT', '8.58', '10', '0')
(7817, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '630', '1430', '3.5', '106', 'Bangalore Institute of Technology', 'Information Science', '7', '100', '0')
(7818, 'Cornell University', '11', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2014', '168', '152', '320', '3', '107', 'NIT Tirchy', 'EEE', '7.61', '10', '36')
(7819, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '780', '550', '1330', '3', '104', 'I.E.T D.A.V.V.', 'Computer Engineering', '6.9799999999999995', '100', '0')
(7820, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '500', '1280', '4', '115', 'Dharamsinh Desai University', 'Computer Engineering', '7.525', '100', '0')
(7821, 'Cornell University', '11', 'Reject', 'MS', 'Electrical & Computer Engg/MIS/Industrial/Systems Engg', 'Fall ', '2013', '161', '142', '303', '3', '99', 'Goa University', 'etc', '5.8469999999999995', '100', '0')
(7822, 'Cornell University', '11', 'Reject', 'MS', 'MIS/CS', 'Fall ', '2012', '165', '151', '316', '4', '110', 'Pune University', 'Information Technology', '6.726000000000001', '100', '0')
(7823, 'Cornell University', '11', 'Reject', 'MS', 'Marketing Communication', 'Fall ', '2012', '760', '560', '1320', '3.5', '106', 'D J Sanghvi', 'Electronics', '6.07', '100', '0')
(7824, 'Cornell University', '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '630', '1420', '3.5', '101', 'GGSIPU', 'Electronics', '7.2', '100', '0')
(7825, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '151', '313', '3.5', '109', 'Guru Gobind Singh Indraprashta University', 'Electronics And Communications Engg', '7.211', '100', '0')
(7826, 'Cornell University', '11', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2014', '161', '151', '312', '3.5', '109', 'Dharamsinh Desai University', 'Information Technology', '6.08', '100', '16')
(7827, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2010', '770', '570', '1340', '4.5', '114', 'PESIT', 'Computer Science and Engg', '8.2', '100', '0')
(7828, 'Cornell University', '11', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '166', '161', '327', '3.5', '114', 'K J Somaiya College of Engiineering', 'Mechanical Engineering', '6.7', '100', '0')
(7829, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '670', '1420', '2.5', '105', 'DA-IICT', 'CSE', '2.53', '4', '0')
(7830, 'Cornell University', '11', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '470', '1270', '3.5', '100', 'MU', 'I.T.', '6.1', '100', '0')
(7831, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '158', '147', '305', 'None', '95', 'VIT University', 'Computer Science', '9.12', '10', '0')
(7832, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '162', '158', '320', '4', '110', 'BITS Pilani', 'CS', '9.18', '10', '0')
(7833, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2010', '800', '680', '1480', '4.5', '106', 'NIT Tirchy', 'CS', '8.66', '10', '0')
(7834, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '169', '160', '329', '5', '114', 'Sardar Patel College of Engineering', 'Information Technology', '6.2', '100', '0')
(7835, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '750', '590', '1340', '3.5', 'None', 'Kerala University', 'Electronics and communication', '7.8', '100', '0')
(7836, 'Cornell University', '11', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '164', '155', '319', '3.5', '110', 'Anna University', 'Mech', '8.95', '10', '0')
(7837, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '610', '1400', '3', '105', 'VIT', 'Computer Science', '8.95', '10', '0')
(7838, 'Cornell University', '11', 'Reject', 'MS', 'Operations Research', 'Fall ', '2014', '163', '152', '315', '3', '103', 'PSG College of Technology', 'Production Engineering (SW)', '8.04', '10', '0')
(7839, 'Cornell University', '11', 'Reject', 'MS', 'Chemical Engineering', 'Fall ', '2014', '159', '143', '302', '3', '92', 'CBIT', 'Chem Engg', '6.5', '100', '0')
(7840, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '157', '323', '4', '113', 'R V College of Engineering', 'Information Science', '8.2', '100', '43')
(7841, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '430', '1180', 'None', '106', 'MU', 'Electronics and TeleCommuincation', '7.2', '100', '0')
(7842, 'Cornell University', '11', 'Reject', 'MS', 'CS / MSIS / ITM', 'Fall', 'None', '760', '550', '1310', '4', '110', 'Model Engineering College', 'Computer Science and Engineering', '7.609999999999999', '100', '0')
(7843, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '620', '1420', '3', '107', 'Nirma Institute of Technology', 'Computer Engineering', '8.2', '10', '0')
(7844, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '330', '1080', '3.5', '93', 'VTU', 'CS', '7.13', '100', '0')
(7845, 'Cornell University', '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '610', '1410', '4', '111', 'MU', 'EXTC', '7', '100', '0')
(7846, 'Cornell University', '11', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2015', '162', '155', '317', '4', '109', 'None', '0', '7.94', '10', '48')
(7847, 'Cornell University', '11', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2015', '800', '550', '1350', '3.5', '109', 'Sardar Patel College of Engineering', 'Electronics And Telecommunication Engg.', '7.2', '100', '29')
(7848, 'Cornell University', '11', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2011', '800', '570', '1370', '5', '110', 'University of Mumbai', 'Mechanical Engineering', '7.133', '100', '0')
(7849, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '650', '1450', '4.5', '116', 'Pune University', 'Computer Engineering', '3.4', '4', '0')
(7850, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '170', '154', '324', '3', '100', 'Anna University', 'CS', '7.5', '100', '36')
(7851, 'Cornell University', '11', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '650', '1450', '4.5', '113', 'SSN College of Engineering', 'Mechanical', '8.1', '10', '0')
(7852, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '161', '153', '314', 'None', 'None', 'UPTU', 'Computer Science', '7.5', '100', '0')
(7853, 'Cornell University', '11', 'Reject', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '157', '155', '312', '3.5', '102', 'B M S College of Engineering', 'Telecom', '8.33', '10', '30')
(7854, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '170', '149', '319', '3.5', '108', 'SRMSCET Bareilly (affiliated to Uttar Pradesh Technical University)', 'Computer Science and Engineering', '7.126', '100', '38')
(7855, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '167', '165', '332', '4', '118', 'MU', 'Computer Engineering', '6.76', '100', '0')
(7856, 'Cornell University', '11', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '800', '710', '1510', '4', '115', 'Guru Gobind Singh Indraprashta University', 'Computer Science', '7.55', '100', '0')
(7857, 'Cornell University', '11', 'Reject', 'MS', 'Chemical Engineering', 'Fall', 'None', '169', '157', '326', '3.5', '102', 'VIT University', 'Chemical Engineering', '8.81', '10', '0')
(7858, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '650', '1430', '3', '110', 'RGPV', 'Electronics and Telecommunication Engineering', '7.4079999999999995', '100', '0')
(7859, 'Cornell University', '11', 'Reject', 'MS', 'Materials Science & Engineering', 'Fall ', '2014', '165', '161', '326', '4', '115', 'Visvesvaraya NIT Nagpur', 'Metallurgical and Materials Engineering', '8.34', '10', '0')
(7860, 'Cornell University', '11', 'Reject', 'MS', 'Microbiology', 'Fall ', '2011', '770', '580', '1350', '3.5', '111', 'Allahabad Agriculture University', 'Molecular and Cellular Engg', '9.74', '10', '0')
(7861, 'Cornell University', '11', 'Reject', 'MS', 'Cell and Molecular Biology', 'Fall ', '2014', '168', '165', '333', '5.5', '118', 'BITS Pilani', 'Biological Sciences', '9.18', '10', '0')
(7862, 'Cornell University', '11', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2015', '162', '151', '313', '4.5', '106', 'VIT', 'Electronics and Communication', '8.57', '10', '18')
(7863, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '170', '154', '324', '4.5', '113', 'UPTU', 'CSE', '7.87', '100', '0')
(7864, 'Cornell University', '11', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '790', '670', '1460', '3.5', '104', 'Manipal Institue of Technology', 'Electrical & Electronics', '8.36', '10', '0')
(7865, 'Cornell University', '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '160', '161', '321', '3', '112', 'University of Pune', 'Electronics and Telecommunications', '5.907', '100', '42')
(7866, 'Cornell University', '11', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '167', '152', '319', '3', '106', 'MU', 'Mech', '7.6', '100', '0')
(7867, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Spring ', '2011', '710', '660', '1370', '4', '112', 'UPTU', 'Electrical', '7.426', '100', '0')
(7868, 'Cornell University', '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '640', '1400', '3.5', '110', 'SASTRA', 'ECE', '8.54', '10', '0')
(7869, 'Cornell University', '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '168', '159', '327', '3.5', '112', 'Bangladesh University of Engineering & Technology', 'Electrical and Electronic Engineering', '3.94', '4', '0')
(7870, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '630', '1390', '4.5', '114', 'NMIMS', 'Computer Science', '3.24', '4', '0')
(7871, 'Cornell University', '11', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '790', '620', '1410', '4', '110', 'BIT Mesra', 'mechanical', '7.4', '100', '0')
(7872, 'Cornell University', '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '162', '158', '320', '3.5', '111', 'Manipal Institue of Technology', 'EEE', '8.2', '10', '0')
(7873, 'Cornell University', '11', 'Reject', 'MS', 'Biochemistry and Molecular biology', 'Fall ', '2011', '800', '680', '1480', '5', '117', 'BITS Pilani', 'Biological Sci Computer Science', '8.5', '10', '0')
(7874, 'Cornell University', '11', 'Reject', 'MS', 'Manufacturing Engineering', 'Fall', 'None', '162', '150', '312', '4', 'None', 'R V College of Engineering', 'Mechanical', '6.24', '100', '0')
(7875, 'Cornell University', '11', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2011', '790', '590', '1380', '3.5', '109', 'Lakshmi Niwas Mittal Institute of Information Technology Jaipur', 'Communication and Computer Engineering', '8.3', '10', '0')
(7876, 'Cornell University', '11', 'Reject', 'MS', 'nanotechnology', 'Fall ', '2013', '168', '160', '328', '3', '111', 'Jaypee Institute of Information Technology', 'Electronics & Communication', '6.5', '10', '0')
(7877, 'Cornell University', '11', 'Reject', 'MS', 'Information Science', 'Fall ', '2011', '800', '640', '1440', 'None', '112', 'Delhi College Of Engineeing', 'Computer Engineering', '7.340000000000001', '100', '0')
(7878, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '155', '322', '4', '112', 'PICT', 'IT', '3.8', '4', '0')
(7879, 'Cornell University', '11', 'Reject', 'MS', 'MEM', 'Fall ', '2014', '168', '157', '325', '4.5', '116', 'GRIET', 'ECE', '7.8', '100', '0')
(7880, 'Cornell University', '11', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2012', '800', '510', '1310', '3.5', '104', 'Yanbian University of Science & Technology', 'EE', '3.2', '4', '0')
(7881, 'Cornell University', '11', 'Reject', 'MS', 'Computer Engineering', 'Fall', 'None', '158', '148', '306', '3.5', '102', 'BIT Mesra', 'ECE', '7.6', '10', '0')
(7882, 'Cornell University', '11', 'Reject', 'MS', 'Engineering Management / Industrial Engineering / IMSE', 'Fall ', '2014', '166', '156', '322', '3', '104', 'Institute of Chemical Technology', 'Polymer and Surface Coating', '6.32', '100', '0')
(7883, 'Cornell University', '11', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2015', '323', '159', '482', '4', '115', 'NIT Jalandhar', 'Instrumentation and Control', '8.68', '10', '24')
(7884, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '710', '490', '1200', '4', '109', 'Anna University', 'B.E Computer Science', '8.4', '100', '0')
(7885, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '165', '155', '320', 'None', '107', 'VIT University', 'CS', '8.85', '10', '40')
(7886, 'Cornell University', '11', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '165', '157', '322', '4.5', '118', 'University of Pune', 'CS', '6.8', '100', '0')
(7887, 'Cornell University', '11', 'Reject', 'MS', 'Robotics', 'Fall ', '2012', '780', '460', '1240', '3.5', '106', 'Madras Institute of Technology', 'Electronics and Instrumentation', '8.25', '10', '0')
(7888, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '740', '570', '1310', '4', '105', 'Rajiv Gandhi Univ of Tech', 'Mechanical Engineering', '7.537999999999999', '100', '0')
(7889, 'Cornell University', '11', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2013', '800', '630', '1430', '3.5', '112', 'Osmania University', 'Electrical Engineering', '7.1', '100', '0')
(7890, 'Cornell University', '11', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '750', '570', '1320', '3', '106', 'UA', 'Electronics And Communication', '7.57', '100', '0')
(7891, 'Cornell University', '11', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '680', '1480', '4.5', '116', 'BIT Mesra', 'ECE', '8.24', '10', '0')
(7892, 'Cornell University', '11', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2013', '163', '155', '318', '3.5', '105', 'Jadavpur University', 'Mechanical Engineering', '8.12', '10', '0')
(7893, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2006', '800', '700', '1500', '6', '297', 'SVNIT Surat', 'Computer Engineering', '6.7', '100', '0')
(7894, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2007', '800', '740', '1540', '4.5', '293', 'D J Sanghvi', 'Computer Engg.', '7.2909999999999995', '100', '0')
(7895, 'Cornell University', '11', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '170', '152', '322', '3', '100', 'NIT Karnataka', 'Mechanical Engineering', '9.47', '10', '0')
(7896, 'Cornell University', '11', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2012', '163', '159', '322', '3', '98', 'NIT Silchar', 'Civil Engineering', '6.54', '10', '0')
(7897, 'Cornell University', '11', 'Reject', 'MS', 'Chemical Engineering', 'Fall ', '2015', '170', '162', '332', '3.5', '110', 'NIT Calicut', 'Chemical engineering', '6.63', '10', '0')
(7898, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '168', '332', '5', '119', 'Anna University', 'Computer Science', '8.34', '10', '19')
(7899, 'Cornell University', '11', 'Reject', 'MS', 'Electrical and computer science', 'Fall ', '2013', '164', '144', '308', '3', '98', 'G.H.Patel college of Engg. & Tech.', 'EC', '8.67', '10', '0')
(7900, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '510', '1310', '4', '105', 'NIT RKL', 'CSE', '8.51', '10', '0')
(7901, 'Cornell University', '11', 'Reject', 'MS', 'Bioinformatics', 'Fall ', '2011', '770', '600', '1370', '4.5', '107', 'NIT Bhopal', 'Bioinformatics', '8.14', '10', '0')
(7902, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '460', '1260', '4', '103', 'NIT Surat', 'Computer Engineering', '8.11', '10', '0')
(7903, 'Cornell University', '11', 'Reject', 'MS', 'Human Computer Interaction', 'Fall ', '2014', '161', '156', '317', '4', '113', 'PESIT', 'Computer Science', '7.99', '100', '0')
(7904, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '165', '164', '329', '4.5', '117', 'GITAM', 'Computer Science and Engineering', '7.83', '10', '0')
(7905, 'Cornell University', '11', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '165', '160', '325', '3', '118', 'Thapar University', 'Computer Science', '9.61', '10', '0')
(7906, 'Cornell University', '11', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2014', '168', '163', '331', '4.5', '110', 'West Bengal University Of Technology', 'Electrical engg', '8.07', '10', '30')
(7907, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '620', '1390', '4', '98', 'D J Sanghvi', 'IT', '6.6579999999999995', '100', '0')
(7908, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '161', '328', '4', '107', 'R V College of Engineering', 'Information Science and Engineering', '9.43', '10', '0')
(7909, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '156', '141', '297', '3.5', '90', 'Cummins College of Engineering Pune', 'computer science', '6.4', '100', '0')
(7910, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '151', '312', '3.5', '106', 'Sardar Patel College of Engineering', 'Information Technology', '7.147', '100', '0')
(7911, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '161', '155', '316', '4', '114', 'MU', 'Information Technology', '6.35', '100', '0')
(7912, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '510', '1310', '4', '113', 'Pune University', 'Computer Science', '6.7', '100', '0')
(7913, 'Cornell University', '11', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2014', '170', '163', '333', '4', '111', 'COEP', 'Electrical Engineering', '8.51', '10', '0')
(7914, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '640', '1400', '4', '109', 'UPTU', 'Computer Science', '7.8', '100', '0')
(7915, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '161', '148', '309', '4', '95', 'Amrita School of Engineering', 'Information Technology', '7.89', '10', '0')
(7916, 'Cornell University', '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '740', '550', '1290', '4', '115', 'Anna University', 'ECE', '7.9', '100', '0')
(7917, 'Cornell University', '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '770', '530', '1300', '4', '108', 'Anna University', 'ECE', '7.874', '100', '0')
(7918, 'Cornell University', '11', 'Reject', 'MS', 'EE / CS', 'Fall ', '2015', '163', '160', '323', '4', '111', 'BITS Pilani', 'Electrical and Electronics', '7.99', '10', '54')
(7919, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '170', '152', '322', '4', '103', 'PESIT', 'computer science', '7.388', '100', '0')
(7920, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '166', '153', '319', '3.5', '111', 'IIIT Allahabad', 'CS', '8.52', '10', '24')
(7921, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '154', '313', '3.5', '97', 'SVCE', 'EEE', '7.5040000000000004', '100', '0')
(7922, 'Cornell University', '11', 'Reject', 'MS', 'Electronics and Communication', 'Spring ', '2012', '800', '570', '1370', '3', '100', 'NIT Jaipur', 'Electronics and Communication Engg.', '8.51', '10', '0')
(7923, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '640', '1440', '4', '110', 'BITS Pilani', 'Computer Science', '8.5', '10', '0')
(7924, 'Cornell University', '11', 'Reject', 'MS', 'Master of engineering management', 'Fall ', '2015', '163', '155', '318', '3.5', '112', 'Govt. College Of Engineering Pune (CoEP)', 'Production Engineering (Sandwich)', '7.1', '10', '18')
(7925, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '700', '1490', '5', '119', 'VTU', 'Computer Science and Engineering', '7.25', '100', '0')
(7926, 'Cornell University', '11', 'Reject', 'MS', 'Human Resources', 'Fall ', '2014', '160', '156', '316', '4', '104', 'VTU', 'E&EE;', '6.1', '100', '0')
(7927, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '690', '1460', 'None', '118', 'Anna University', 'Computer Engineering', '7.3', '100', '0')
(7928, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '650', '1450', '4', '116', 'SRM', 'Information Technology', '9.8', '10', '0')
(7929, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '168', '332', '5', '114', 'Jadavpur University', 'Information Technology', '8.8', '10', '0')
(7930, 'Cornell University', '11', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2014', '730', '700', '1430', '4', '109', 'VTU', 'cs', '7.26', '100', '0')
(7931, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '800', '650', '1450', '4.5', '115', 'D j Sanghvi', 'Computer', '7.598000000000001', '100', '0')
(7932, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '150', '314', '2.5', '101', 'NIT Calicut', 'Computer Science and Enginering', '8.28', '10', '0')
(7933, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '720', '1520', '5', '116', 'VJTI', 'Computer Engineering', '8.5', '10', '0')
(7934, 'Cornell University', '11', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2013', '800', '680', '1480', '3.5', '109', 'MU', 'Elec. and Telecommunications', '6.784999999999999', '100', '0')
(7935, 'Cornell University', '11', 'Admit', 'M.Eng.', 'Engineering Management', 'Fall', '2019', '170', '150', '320', '3.5', '116', 'Motilal Nehru National Institute of Technology Allahabad', 'Mechanical Engineering', '8.83', '10', '0')
(7936, 'Dalhousie University', '13', 'Admit', 'MSc', 'Computer Science', 'Fall', '2019', '157', '147', '304', '4', '-1', 'SRM University', 'Computer Science', '8.059999999999999', '100', '0')
(7937, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '165', '152', '317', '3.5', '101', 'VTU', 'telecommunications', '8.619', '100', '0')
(7938, 'George Mason University', '13', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '158', '144', '302', '4', '107', 'MU', 'CS', '0', '0', '0')
(7939, 'George Mason University', '13', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '159', '144', '303', 'None', 'None', 'Pune University', 'CS', '7', '100', '0')
(7940, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '330', '1090', '3', '89', 'Dr. M.G.R. University', 'ECE', '8.86', '10', '0')
(7941, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '148', '312', '3', '106', 'Sri Venkateswara College of Engineering', 'Computer Science and Engineering', '7.71', '10', '0')
(7942, 'George Mason University', '13', 'Admit', 'MS', 'Information Security', 'Fall ', '2009', '740', '540', '1280', '5', '113', 'VTU', 'CS', '6.7', '100', '0')
(7943, 'George Mason University', '13', 'Admit', 'MS', 'Information Security', 'Fall ', '2013', '158', '148', '306', '3', '94', 'Rajasthan Technical University', 'Computer Engineering', '6.7', '100', '0')
(7944, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '800', '500', '1300', '3', '97', 'Panjab University', 'BE(CS)', '6.74', '100', '0')
(7945, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '700', '640', '1340', '3.5', '104', 'MU', 'electronics', '5.9', '100', '0')
(7946, 'George Mason University', '13', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2011', '710', '490', '1200', '3.5', '108', 'JNTU', 'EEE', '6.2', '100', '0')
(7947, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '660', '1440', '4', '111', 'MU', 'Computer Enginnering', '6.9', '100', '0')
(7948, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '570', '1370', '3.5', '100', 'MU', 'Computer Engineering', '0', '0', '0')
(7949, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '800', '480', '1280', '4', '104', 'MU', 'Computer Dept.', '6.8', '100', '0')
(7950, 'George Mason University', '13', 'Admit', 'MS', 'MIS', 'Spring ', '2015', '167', '150', '317', '4', '106', 'Anna University', 'ECE', '7.3340000000000005', '100', '47')
(7951, 'George Mason University', '13', 'Admit', 'MS', 'CS', 'Fall ', '2012', '800', '700', '1500', '4', 'None', 'University of Mumbai', 'Computer', '6.4', '100', '0')
(7952, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '530', '1320', '3.5', '102', 'Sinhgad College of Engineering', 'Computer', '5.3', '100', '0')
(7953, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '770', '480', '1250', '3', '99', 'GRIET', 'CSE', '7.587000000000001', '100', '0')
(7954, 'George Mason University', '13', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '740', '630', '1370', '4.5', 'None', 'VTU', 'Electronics and Communication', '6.4', '100', '0')
(7955, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '580', '1360', '4', 'None', 'BITS Pilani', 'Mechanical', '7.8', '10', '0')
(7956, 'George Mason University', '13', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '710', '470', '1180', '3.5', '97', 'Sinhgad College of Engineering', 'Electronics & Telecommunications', '5.5', '100', '0')
(7957, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '153', '317', '4', '102', 'MSRIT', 'Computer Science', '7.5', '100', '0')
(7958, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '680', '1480', '5', '116', 'MU', 'Computer', '6.74', '100', '0')
(7959, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2009', '770', '570', '1340', '4', '113', 'Cochin University of Science and Technology', 'Computer Science & Engineering', '6.8', '100', '0')
(7960, 'George Mason University', '13', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2015', '160', '146', '306', '3.5', '100', 'VTU', 'E&C;', '8.02', '10', '0')
(7961, 'George Mason University', '13', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '161', '150', '311', '4.5', '104', 'University of Mumbai', 'Computer Engineering', '6.220000000000001', '100', '0')
(7962, 'George Mason University', '13', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '162', '141', '303', '3', '92', 'Sir MVIT', 'Electronics and communication', '6.7', '100', '16')
(7963, 'George Mason University', '13', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '470', '1270', '3', '100', 'ANU', 'ECE', '7.859999999999999', '100', '0')
(7964, 'George Mason University', '13', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '157', '141', '298', '3', '92', 'Maharishi Dayanand University', 'Electronics and Communication Engineering', '7', '100', '0')
(7965, 'George Mason University', '13', 'Admit', 'MS', 'Electronics & Communication', 'Fall ', '2012', '720', '620', '1340', '3.5', '108', 'Sri Venkateswara College of Engineering', 'ECE', '8.05', '10', '0')
(7966, 'George Mason University', '13', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2011', '720', '560', '1280', '3.5', '100', 'Jaypee Institute of Information Technology', 'Dept of Bioinformatics and Biotechnology', '7.4', '100', '0')
(7967, 'George Mason University', '13', 'Admit', 'MS', 'International Affairs.', 'Fall ', '2013', '150', '148', '298', '4', '104', 'None', '0', '7.7', '100', '0')
(7968, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '790', '470', '1260', '3.5', '105', 'Pune University', 'Electronics and Telecomm.', '5.6', '100', '0')
(7969, 'George Mason University', '13', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '159', '150', '309', '3', '102', 'MU', 'EXTC', '6.077', '100', '12')
(7970, 'George Mason University', '13', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '430', '680', '1110', '3', '96', 'Anna University', 'ECE', '7.6', '100', '0')
(7971, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Spring ', '2011', '720', '530', '1250', '3.5', '93', 'Amity School of Engineering and Technology', 'ECE', '6.43', '10', '0')
(7972, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '157', '151', '308', '4', '104', 'Anna University', 'IT', '7.1', '100', '0')
(7973, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '510', '1310', '4', '100', 'VIT Mumbai University', 'Computer Engg', '5.738', '100', '0')
(7974, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '490', '1260', '3', '101', 'MU', 'Computer Science', '6.3', '100', '0')
(7975, 'George Mason University', '13', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2012', '720', '320', '1040', '3', '96', 'JNTU', 'ECE', '6.2', '100', '0')
(7976, 'George Mason University', '13', 'Admit', 'MS', 'Telecommunication', 'Fall', 'None', '155', '145', '300', 'None', '100', 'MU', 'EXTC', '7.1', '100', '0')
(7977, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '168', '145', '313', '2.5', '87', 'CBIT', 'CSE', '8', '100', '0')
(7978, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '148', '312', '3', '112', 'WBUT', 'ECE', '8.16', '10', '0')
(7979, 'George Mason University', '13', 'Admit', 'MS', 'Computer Engineering', 'Fall', 'None', '165', '150', '315', '4', '112', 'Gayatri Vidya Parishad College of Engineering', 'Electronics and Communication Engineering', '6.3', '100', '0')
(7980, 'George Mason University', '13', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2012', '620', '560', '1180', '3.5', '99', 'MU', 'Electronics and Telecomm', '6.5', '100', '0')
(7981, 'George Mason University', '13', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '780', '530', '1310', '3', '95', 'Gujarat Technological University', 'mechanical', '6.38', '10', '0')
(7982, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '740', '510', '1250', 'None', 'None', 'Jaypee Institute of Information Technology', 'ECE', '8.2', '10', '0')
(7983, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '740', '610', '1350', '3.5', '92', 'MU', 'Computers', '7.058', '100', '0')
(7984, 'George Mason University', '13', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2006', '760', '380', '1140', '3.5', '253', 'None', '0', '0', '0', '0')
(7985, 'George Mason University', '13', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Spring ', '2011', '780', '530', '1310', '3', '92', 'klce', 'IT', '7.4', '100', '0')
(7986, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '490', '1270', '3.5', '99', 'RAIT', 'Electronics', '6.5', '100', '0')
(7987, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '700', '320', '1020', '3.5', '8', 'VIIT', 'E&TC;', '6.7', '100', '0')
(7988, 'George Mason University', '13', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '800', '320', '1120', 'None', 'None', 'VIT University', 'BTECH-I.T', '8.9', '10', '0')
(7989, 'George Mason University', '13', 'Admit', 'MS', 'Electronics and Communication', 'Spring ', '2012', '760', '380', '1140', '3', '97', 'VITU', 'SENSE', '8.7', '10', '0')
(7990, 'George Mason University', '13', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2015', '740', '470', '1210', '3', '106', 'MDU', 'EEE', '5.8', '100', '0')
(7991, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '154', '149', '303', '3.5', '97', 'None', '0', '0', '0', '0')
(7992, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '161', '153', '314', '4', '112', 'Guru Gobind Singh Indraprashta University', 'Electronics and Communication', '8.2', '100', '0')
(7993, 'George Mason University', '13', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(7994, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '800', '510', '1310', '3.5', '108', 'Bhilai Institute of Technology', 'Electrical Engineering', '6.62', '100', '0')
(7995, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '149', '308', '3', '102', 'MU', 'computer engg', '6.6', '100', '0')
(7996, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '750', '330', '1080', '2.5', 'None', 'JNTU', 'Information Technology', '7.279999999999999', '100', '0')
(7997, 'George Mason University', '13', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '155', '144', '299', '3.5', '97', 'MU', 'Information Technology', '5.8', '100', '0')
(7998, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '152', '318', '4', '105', 'mgit jntu-hyd', 'information technology', '6.2', '100', '0')
(7999, 'George Mason University', '13', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '740', '230', '970', '2.5', '96', 'None', '0', '0', '0', '0')
(8000, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '730', '550', '1280', 'None', '233', 'Vidyalankar Institute of Technology', 'computers', '6.4', '100', '0')
(8001, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '152', '149', '301', '2.5', 'None', 'Acharya Nagarjuna University', 'electrical', '0', '0', '0')
(8002, 'George Mason University', '13', 'Admit', 'MS', 'Computer Networks', 'Fall ', '2012', '720', '580', '1300', '2.5', '84', 'Pune University', 'E&TC;', '5.8', '100', '0')
(8003, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '680', '460', '1140', '3', '89', 'GITAM', 'IT', '7.32', '10', '0')
(8004, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '730', '440', '1170', '4', '105', 'University of Rajasthan', 'Computer Science', '7.57', '100', '0')
(8005, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '740', '350', '1090', '3.5', '99', 'VTU', 'ECE', '7.3', '100', '0')
(8006, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '490', '1260', '3.5', '109', 'JNTU', 'Computer Science', '7', '100', '0')
(8007, 'George Mason University', '13', 'Admit', 'MS', 'software engineering', 'Fall ', '2015', '160', '149', '309', '3', '102', 'IIT Madras', 'Biotechnology', '7.23', '10', '54')
(8008, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '164', '150', '314', '3.5', '105', 'SCOET', 'Computer Science', '6.8', '100', '0')
(8009, 'George Mason University', '13', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '780', '560', '1340', '3.5', '104', 'MU', 'Electronics & Telecommunication', '6.2', '100', '0')
(8010, 'George Mason University', '13', 'Admit', 'MS', 'Telecommunication', 'Spring ', '2015', '154', '151', '305', '3.5', '107', 'University of Pune', 'Electronics & Telecommunication', '5.3', '100', '0')
(8011, 'George Mason University', '13', 'Admit', 'MS', 'Information Security', 'Spring ', '2014', '1050', '350', '1400', '3', 'None', 'None', '0', '0', '0', '0')
(8012, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '750', '500', '1250', '4', '110', 'VTU', 'Telecommunication', '7.4', '100', '0')
(8013, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '155', '151', '306', '3', '105', 'Don Bosco Institute of Technology', 'Information Technology', '5.5', '100', '0')
(8014, 'George Mason University', '13', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '700', '400', '1100', '3', '102', 'JNTU', 'ECE', '7.5', '100', '0')
(8015, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '160', '323', '3.5', '108', 'MU', 'Computer Engineering', '5.8', '100', '33')
(8016, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '150', '149', '299', '2.5', '105', 'SNIST', 'CSE', '6.32', '100', '0')
(8017, 'George Mason University', '13', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2011', '730', '320', '1050', '2.5', '86', 'MU', 'extc', '6.131', '100', '0')
(8018, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '156', '320', '4', '110', 'MITCOE University of Pune', 'IT', '5.657', '100', '0')
(8019, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '750', '380', '1130', '2.5', '88', 'SNIST', 'computer science', '7.6', '100', '0')
(8020, 'George Mason University', '13', 'Admit', 'MS', 'Telecommunication', 'Spring ', '2012', '790', '420', '1210', '3.5', '106', 'Dharamsinh Desai University', 'EC', '5.85', '100', '0')
(8021, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '162', '150', '312', '3.5', '98', 'Dharamsinh Desai University', 'Information Technology', '8.43', '10', '0')
(8022, 'George Mason University', '13', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2010', '740', '600', '1340', '5', '104', 'Padmashree Dr D Y Patil University', 'Department of Biotechnology and Bioinformatics', '7.24', '100', '0')
(8023, 'George Mason University', '13', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '157', '149', '306', '3.5', '103', 'None', '0', '0', '0', '0')
(8024, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '157', '146', '303', '4', '94', 'VTU', 'Computer Science', '6.4', '100', '50')
(8025, 'George Mason University', '13', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '155', '144', '299', '3.5', '96', 'VTU', 'Instrumentation Technology', '7.7', '100', '0')
(8026, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '580', '1350', '3.5', '96', 'Pune University', 'Computer Science', '6.3', '100', '0')
(8027, 'George Mason University', '13', 'Admit', 'MS', 'Information Security', 'Fall ', '2014', '162', '162', '324', '3', 'None', 'NIT Arunachal Pradesh', 'Computer Science and Engineering', '7.85', '10', '0')
(8028, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '156', '149', '305', '3.5', '99', 'University of Mumbai', 'Electronics and Telecommunication', '6.0200000000000005', '100', '0')
(8029, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '750', '430', '1180', '3.5', '96', 'MU', 'computers', '6.4', '100', '0')
(8030, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '149', '151', '300', '3', '100', 'Sathyabama University', 'ECE', '6.5', '100', '0')
(8031, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '162', '323', '3', '112', 'Rajasthan Technical University', 'Computer Science', '6.715000000000001', '100', '0')
(8032, 'George Mason University', '13', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '390', '1190', '2.5', '96', 'Osmania University', 'ECE', '6.9', '100', '0')
(8033, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '158', '321', '3.5', '103', 'None', 'CSE', '3.75', '4', '0')
(8034, 'George Mason University', '13', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2013', '159', '161', '320', '3', '108', 'Nitte institute of technology', 'Electronics and communication', '7.95', '10', '0')
(8035, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '490', '1290', '3', '100', 'Osmania University', 'CSE', '8.3', '100', '0')
(8036, 'George Mason University', '13', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '800', '710', '1510', '4', '116', 'D J Sanghvi', 'Electronics', '5.85', '100', '16')
(8037, 'George Mason University', '13', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '160', '148', '308', '3.5', '107', 'University of Mumbai', 'Information Technology', '5.3', '100', '0')
(8038, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '760', '500', '1260', '3.5', '98', 'GVPCOE Vizag', 'CSE', '6.8', '100', '0')
(8039, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '730', '490', '1220', '3', '102', 'JNTU', 'CSE', '7.3', '100', '0')
(8040, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '157', '148', '305', '2.5', 'None', 'Anna University', 'Electronics and Communication', '0', '0', '0')
(8041, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '540', '1330', '3', '102', 'University of Pune', 'Computer Engineering', '5.779999999999999', '100', '0')
(8042, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '730', '560', '1290', '4', '102', 'University of Mumbai', 'CE', '5.720000000000001', '100', '0')
(8043, 'George Mason University', '13', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '780', '420', '1200', '3', '99', 'Iran', '0', '0', '0', '0')
(8044, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '620', '1410', '3', '104', 'Pondicherry Engineering College', 'cse', '7.89', '10', '0')
(8045, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2009', '730', '480', '1210', '3', '94', 'Osmania University', 'E.C.E', '6.866', '100', '0')
(8046, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2007', '750', 'None', '750', 'None', '100', 'NMIT', 'ECE', '0', '0', '0')
(8047, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '730', '660', '1390', '5', '300', 'MU', 'Computers', '6.827', '100', '0')
(8048, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '158', '155', '313', '3', '106', 'MU', 'Electronics and Telecommunication', '6.3', '100', '0')
(8049, 'George Mason University', '13', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '166', '156', '322', '3.5', '111', 'JNTU', 'CS', '6.3', '100', '0')
(8050, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2011', '710', '600', '1310', '2.5', '88', 'MU', 'EXTC', '5.64', '100', '0')
(8051, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '740', '450', '1190', '4', '273', 'U.P.Technical University', 'Eleectronics and Communication', '6.6', '100', '0')
(8052, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '470', '1270', '3.5', '100', 'SIES Graduate School of Technology', 'Computer', '5.338', '100', '0')
(8053, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '390', '1190', '3.5', '97', 'VIT', 'Computer Science', '8.2', '100', '0')
(8054, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '159', '144', '303', '3.5', '95', 'JNTU', 'IT', '7.441', '100', '0')
(8055, 'George Mason University', '13', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2010', '770', '320', '1090', '3.5', '98', 'VTU', 'Electronics and Communication Engineering', '7', '100', '0')
(8056, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '680', '460', '1140', '3', '89', 'GITAM', 'Information Technology', '7.01', '10', '0')
(8057, 'George Mason University', '13', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '161', '146', '307', '3.5', '99', 'University of Pune', 'EC', '6.753', '100', '36')
(8058, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '740', '550', '1290', '3', '107', 'MU', 'Computer Engineering', '6.3', '100', '0')
(8059, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '158', '146', '304', '3.5', 'None', 'Velammal Engineering College', 'BE - computer science', '8.3', '100', '0')
(8060, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '157', '143', '300', '3', '7', 'JNTU', 'CSE', '7.5', '100', '0')
(8061, 'George Mason University', '13', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '164', '145', '309', 'None', '82', 'Vignan Institute of Technology and Science', 'ECE', '0.8699999999999999', '100', '0')
(8062, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '163', '152', '315', '3', '95', 'UIET Punjab University', 'Information Technology', '6.2', '100', '0')
(8063, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '155', '316', '3.5', '108', 'University of Calicut', 'Computer Science', '6.3', '100', '0')
(8064, 'George Mason University', '13', 'Admit', 'MS', 'Information Security', 'Fall ', '2015', '166', '159', '325', '4', '116', 'VIT', 'IT', '8.67', '10', '25')
(8065, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '710', '420', '1130', '3', '97', 'M.G.M College of Eng', 'Computer', '7.2', '100', '0')
(8066, 'George Mason University', '13', 'Admit', 'MS', 'CyberSecurity', 'Fall ', '2013', '160', '146', '306', '2.5', '90', 'Rajasthan Technical University', 'Computer Engineering', '7.44', '100', '0')
(8067, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '163', '149', '312', '3.5', '106', 'RD Nation', 'BSC IT', '6.8', '100', '24')
(8068, 'George Mason University', '13', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2013', '760', '420', '1180', '3', '101', 'Pune University', 'E&Tc;', '5.9', '100', '0')
(8069, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '520', '1320', '3', '105', 'PESIT', 'Information Science and Engg', '8.8', '10', '0')
(8070, 'George Mason University', '13', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '750', '610', '1360', '3.5', '110', 'VTU', 'Electronics and Communications', '7.066', '100', '0')
(8071, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '720', '1520', '5.5', '118', 'None', '0', '0', '0', '0')
(8072, 'George Mason University', '13', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2007', '800', '550', '1350', '4.5', '283', 'MU', 'Electronics', '5.5', '100', '0')
(8073, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '380', '1180', '3', '94', 'MDU', 'Computer Science', '6.1', '100', '0')
(8074, 'George Mason University', '13', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2008', '790', '350', '1140', '3', '104', 'K J Somaiya College of Engiineering', 'EXTC', '7', '100', '0')
(8075, 'George Mason University', '13', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '152', '138', '290', '4', '95', 'K J Somaiya College of Engiineering', 'Electronics', '6.7', '100', '0')
(8076, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '148', '308', '3', 'None', 'BPUT', '0', '7.4', '10', '0')
(8077, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2010', '780', '450', '1230', '3.5', '96', 'Panimalar Engineering College', 'ELECTRONICS AND COMMUNICATION', '7.5', '100', '0')
(8078, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '680', '580', '1260', '3.5', '104', 'University of Mumbai', 'Computer Engineering', '5.9', '100', '0')
(8079, 'George Mason University', '13', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2014', '161', '152', '313', '4', '108', "St Joseph's College of Engineering", 'Electronics and Communication', '6.88', '10', '20')
(8080, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '530', '1300', '3.5', '100', 'None', 'Computer engineering', '6.9', '100', '0')
(8081, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '154', '318', '4', '108', 'NIT Kurukshetra', 'Computers', '9.3376', '10', '0')
(8082, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2013', '158', '145', '303', '3.5', '93', 'JNTU', 'Electronics and Instrumentation', '6.656000000000001', '100', '0')
(8083, 'George Mason University', '13', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(8084, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'BNMIT', 'ECE', '0', '0', '0')
(8085, 'George Mason University', '13', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '710', '480', '1190', '4', '109', 'MU', 'ELECTRONICS', '6.7', '100', '0')
(8086, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '146', '304', '4', 'None', 'University of Mumbai', 'COMPUTER ENGINEERING', '6.048', '100', '0')
(8087, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '690', '500', '1190', '3', '98', 'GGSIPU', 'computer science', '8', '100', '0')
(8088, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '167', '141', '308', '2.5', '86', 'JNTU', 'electronics and communication engineering', '6.779999999999999', '100', '0')
(8089, 'George Mason University', '13', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '165', '144', '309', '3', '85', 'JNTU', 'ece', '7.75', '100', '0')
(8090, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '400', '1200', '2.5', '102', 'K J Somaiya College of Engiineering', 'Electronics', '6.2', '100', '0')
(8091, 'George Mason University', '13', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '159', '150', '309', '2.5', '95', 'MU', 'Electronics and telecommunication', '6.35', '100', '39')
(8092, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '147', '310', '3', '99', 'K J Somaiya College of Engiineering', 'Computers', '6.2', '100', '0')
(8093, 'George Mason University', '13', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '780', '610', '1390', '3.5', '110', 'VTU', 'electronics', '7.3', '100', '0')
(8094, 'George Mason University', '13', 'Admit', 'MS', 'Information Systems', 'Fall ', '2012', '760', '330', '1090', '3', '95', 'JNTU', 'CSE', '6.7', '100', '0')
(8095, 'George Mason University', '13', 'Admit', 'MS', 'Information Security', 'Fall ', '2012', '800', '390', '1190', '3.5', '97', 'MU', 'Computer Engineering', '6.3', '100', '0')
(8096, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '370', '1170', '3', '100', 'CVRCE', 'cse', '6.8', '100', '0')
(8097, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '151', '315', '3', '101', 'MU', 'Information Technology', '7.1', '100', '0')
(8098, 'George Mason University', '13', 'Admit', 'MS', 'Computational Science', 'Fall', 'None', '156', '150', '306', 'None', '103', 'None', '0', '0', '0', '0')
(8099, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '560', '1360', '3.5', '108', 'RAIT', 'Computer', '5.8', '100', '0')
(8100, 'George Mason University', '13', 'Admit', 'MS', 'Health Informatics', 'Fall ', '2014', '149', '153', '302', '3.5', '110', 'Padmashree Dr D Y Patil University', 'Btech Bioinformatics', '6.3', '100', '0')
(8101, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '460', '1260', '4', '89', 'MU', 'ELECTRONICS AND TELECOMMUNICATION', '6.779999999999999', '100', '0')
(8102, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '780', '400', '1180', '4', '260', 'MU', 'Computers', '6.2', '100', '0')
(8103, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '141', '305', '4', '102', 'GRIET', 'Information Technology', '0', '0', '0')
(8104, 'George Mason University', '13', 'Admit', 'MS', 'Computational Science', 'Fall ', '2013', '155', '158', '313', 'None', '103', 'D.V.R College of Engineering and Technology', 'Information Technology', '6.749', '100', '0')
(8105, 'George Mason University', '13', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2013', '161', '149', '310', '4', '105', 'University of Mumbai', 'Electronics', '0', '0', '0')
(8106, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '760', '360', '1120', '3', '100', 'BMSCE', 'Computer science', '7.5', '100', '0')
(8107, 'George Mason University', '13', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2011', '760', '680', '1440', '4', '110', 'Dr. D. Y. Patil University', 'Dept. Of Biotechnology & Bioinformatics', '4', '4', '0')
(8108, 'George Mason University', '13', 'Admit', 'MS', 'EE / CS', 'Fall ', '2013', '800', '410', '1210', '3', '115', 'RKNEC', 'EC', '7.455', '100', '0')
(8109, 'George Mason University', '13', 'Admit', 'MS', 'CS', 'Fall ', '2013', '700', '560', '1260', '3', '108', 'MU', 'I.T', '6.9', '100', '0')
(8110, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '470', '1250', '3', '106', 'MU', 'Instrumentation', '6.284000000000001', '100', '0')
(8111, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '750', '650', '1400', '4', '110', 'Crescent Engineering College', 'CSE', '7.2', '100', '0')
(8112, 'George Mason University', '13', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '160', '145', '305', '3.5', '96', 'Thadomal Shahani Engineering College', 'EXTC', '6.5', '100', '0')
(8113, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2009', '1130', '430', '1560', '710', '98', 'Bandodkar College of Science', 'IT', '6.7', '100', '0')
(8114, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '156', '155', '311', '3.5', '110', 'NIT Durgapur', 'Information Technology', '7.94', '10', '0')
(8115, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '620', '1420', '4.5', '109', 'Guru Gobind Singh Indraprashta University', 'Computer Science', '8.4', '100', '0')
(8116, 'George Mason University', '13', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '760', '520', '1280', '3.5', '86', 'University of Mumbai', 'Instrumentation', '0', '0', '0')
(8117, 'George Mason University', '13', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2013', '156', '142', '298', '3', '97', 'SIES Graduate School of Technology', 'EXTC', '0', '0', '0')
(8118, 'George Mason University', '13', 'Admit', 'MS', 'Information Security', 'Fall ', '2012', '158', '145', '303', '3', 'None', 'VTU', 'Electronics and communication', '5.6', '100', '0')
(8119, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '158', '149', '307', '2.5', '80', 'gayathri engineering college', 'ece', '8', '100', '0')
(8120, 'George Mason University', '13', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '161', '151', '312', '3.5', '97', 'BMSIT', 'Computer Science', '7', '100', '0')
(8121, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '790', '530', '1320', '3', '100', 'VTU', 'Information Science & Engineering', '6.809', '100', '0')
(8122, 'George Mason University', '13', 'Admit', 'MS', 'Electrical & Computer Engg/MIS/Industrial/Systems Engg', 'Fall ', '2011', '760', '300', '1060', '3', '101', 'Kakatiya University', 'EEE', '6.6', '100', '0')
(8123, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '155', '318', '3.5', '103', 'St.Francis Institute of Technology', 'Computer Engineering', '5.74', '100', '0')
(8124, 'George Mason University', '13', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '690', '670', '1360', '4', '105', 'Nagpur University', 'BCA Post Grad Diploma in CS', '5.8', '100', '0')
(8125, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '152', '310', '3', '100', 'JNTU', 'cse', '6.2', '100', '0')
(8126, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2007', '790', '420', '1210', '3.5', '257', 'MU', 'Electronics', '6', '100', '0')
(8127, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '720', '510', '1230', '3', '106', 'MU', 'Computer Engineering', '6.9', '100', '0')
(8128, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '510', '1310', '3', '100', 'Jaypee Institute of Information Technology', 'ECE', '7', '10', '0')
(8129, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '610', '1410', '3.5', '106', 'Delhi College Of Engineeing', 'IT', '7.409999999999999', '100', '0')
(8130, 'George Mason University', '13', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2009', '760', '370', '1130', '4', '106', 'Atharva College', 'Electronics and Telecommunicatons', '5.7', '100', '0')
(8131, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '730', '410', '1140', '3.5', '101', 'Rajasthan Technical University', 'Computer Science', '6.3', '100', '0')
(8132, 'George Mason University', '13', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2012', '157', '145', '302', '3', '94', 'Cummins College of Engineering Pune', 'E&TC;', '0', '0', '0')
(8133, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '730', '300', '1030', '2.5', '86', 'SVCE', 'ECE', '0', '0', '0')
(8134, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '150', '310', '3', '102', 'JNTU', 'CSE', '7.792', '100', '0')
(8135, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '580', '1380', '3', '92', 'None', '0', '0', '0', '0')
(8136, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '156', '139', '295', '3', '93', 'JNTU', 'eee', '6.7', '100', '0')
(8137, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '152', '150', '302', '3', '93', 'None', '0', '3.87', '4', '0')
(8138, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '151', '313', '3.5', '106', 'MU', 'Computer Engineering', '6.025', '100', '58')
(8139, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2009', '700', '340', '1040', '3.5', '106', 'MU', 'Electronics', '5.8', '100', '0')
(8140, 'George Mason University', '13', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '720', '450', '1170', '3', '100', 'MU', 'Information Technology', '6.9', '100', '0')
(8141, 'George Mason University', '13', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '160', '147', '307', '3.5', '98', 'Pune University', 'CS', '0', '0', '0')
(8142, 'George Mason University', '13', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '740', '300', '1040', '3', '88', 'M.H.S.S', 'Electronics and Telecommunications', '0', '0', '0')
(8143, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '156', '138', '294', '3.5', '92', 'M.D.U.', 'Computer science', '6.6', '100', '0')
(8144, 'George Mason University', '13', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '680', '600', '1280', '3.5', '97', 'MU', 'I.T', '6.6', '100', '0')
(8145, 'George Mason University', '13', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '320', '1110', 'None', '94', 'Pune University', 'Elex & Telecom', '6.8', '100', '0')
(8146, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '500', '1260', '4', '98', 'Xavier Institute of Engineering University of Mumbai', 'Computer Engineering', '6.0084', '100', '0')
(8147, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '420', '1170', '3', '94', 'TCET mumbai university', 'Information technology', '6.242', '100', '0')
(8148, 'George Mason University', '13', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2011', '770', '530', '1300', '3.5', '106', 'SAKEC Mumbai University', 'Electronics', '7.023000000000001', '100', '0')
(8149, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '151', '313', '3.5', '98', 'DMCE University of Mumbai', 'Electronics', '5.7', '100', '0')
(8150, 'George Mason University', '13', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '157', '150', '307', '3', '95', 'Amity University', 'CSE', '8.35', '10', '0')
(8151, 'George Mason University', '13', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '159', '146', '305', '3', '89', 'VTU', 'EC', '6.5', '100', '24')
(8152, 'George Mason University', '13', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '12', '750', '580', '1330', '3', '90', 'University of Pune', 'ExTC', '5.9', '100', '0')
(8153, 'George Mason University', '13', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '157', '143', '300', '4', '100', 'University of Mumbai', 'Electronics Engineering', '6.3', '100', '0')
(8154, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '158', '149', '307', '2', '90', 'VIT Pune', 'Electronics', '6.345000000000001', '100', '0')
(8155, 'George Mason University', '13', 'Admit', 'MS', 'Telecommunication', 'Fall', 'None', '152', '150', '302', '3.5', '98', 'Canara Engineering College', 'Electronics & Communications', '6', '100', '0')
(8156, 'George Mason University', '13', 'Admit', 'MS', 'CS', 'Fall ', '2013', '157', '148', '305', '3', '102', 'Goa University', 'Computer Engineering', '6.1', '100', '0')
(8157, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '700', '570', '1270', '3.5', '107', 'PICT', 'Computer Engineering', '5.8', '100', '0')
(8158, 'George Mason University', '13', 'Admit', 'MS', 'Information Security', 'Fall ', '2013', '157', '150', '307', '3', '104', 'SSN College of Engineering', 'EEE', '6.9', '100', '0')
(8159, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '157', '154', '311', '4.5', '115', 'Anna University', 'CSE', '8', '100', '0')
(8160, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '350', '1150', '2.5', '89', 'Gujarat Technological University', 'Computer Engineering', '7', '100', '0')
(8161, 'George Mason University', '13', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '158', '146', '304', '3', '95', 'SIES Graduate School of Technology', 'Electronics and Telecommunication', '5.87', '100', '0')
(8162, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2016', '162', '142', '304', '2', 'None', 'JNTU', 'Ece', '6.4', '100', '0')
(8163, 'George Mason University', '13', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '155', '150', '305', '3', '99', 'Panimalar Engineering College', 'Electronics and Comminications', '7.1', '100', '0')
(8164, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '156', '153', '309', '3', '103', 'University of Pune', 'Chemical Engineering', '6.313000000000001', '100', '0')
(8165, 'George Mason University', '13', 'Admit', 'MS', 'Information Security', 'Fall ', '2011', '750', '410', '1160', '3', '97', 'WBUT', 'IT', '7.84', '10', '0')
(8166, 'George Mason University', '13', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2015', '161', '150', '311', '4', '116', 'University of Mumbai', 'Electronics and Telecommunication', '6.051', '100', '0')
(8167, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '161', '148', '309', '4', '103', 'CEG', 'Electronics and Communication', '7.97', '10', '27')
(8168, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '750', '470', '1220', '4', '106', 'VTU', 'Computer Science', '7.747', '100', '0')
(8169, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2014', '157', '144', '301', 'None', 'None', 'CVRCE', 'ECE', '7.2', '100', '0')
(8170, 'George Mason University', '13', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '159', '148', '307', '2.5', '95', 'Osmania University', 'ece', '7.2', '100', '0')
(8171, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '740', '420', '1160', '2.5', '89', 'MU', 'Electronics & Telecommunications', '5.806', '100', '0')
(8172, 'George Mason University', '13', 'Admit', 'MS', 'MIS', 'Fall', 'None', '720', '580', '1300', '4', '105', 'None', 'Information technology', '7.1', '100', '0')
(8173, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '750', '420', '1170', '3', 'None', 'GITAM', 'Information Technology', '8.13', '10', '0')
(8174, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '480', '1270', '3.5', '110', 'JNTU', 'csit', '8.2', '100', '0')
(8175, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall', 'None', '161', '146', '307', '3', '95', 'JNTU', 'Electical & Electronics Engineering', '7.7', '100', '0')
(8176, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '690', '460', '1150', '3', '106', 'Datta Meghe College of Engineering', 'information technology', '7', '100', '0')
(8177, 'George Mason University', '13', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '770', '380', '1150', '3', '94', 'MU', 'Computer Engineering', '5.7780000000000005', '100', '0')
(8178, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '500', '1290', '3', '96', 'R V College of Engineering', 'Computer Science', '7.2', '100', '0')
(8179, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '160', '321', '4', 'None', 'MU', 'Computer Science', '6.13', '100', '0')
(8180, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '760', '520', '1280', '3.5', '110', 'MU', 'Computer Engineering', '6', '100', '0')
(8181, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '730', '350', '1080', '3', '105', 'National Institute of Engineering Mysore', 'ECE', '8.14', '100', '0')
(8182, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '164', '148', '312', '3.5', '93', 'BSAITM', 'Computer Science', '7.2', '100', '0')
(8183, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '155', '318', '3.5', '103', 'MU', 'CE', '5.74', '100', '0')
(8184, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '1130', '400', '1530', '3', '93', 'BMIT Jaipur', 'computer science', '7.5', '100', '0')
(8185, 'George Mason University', '13', 'Admit', 'MS', 'MIS', 'Spring ', '2013', '160', '144', '304', '3', '94', 'VTU', 'Electronics and Communication', '3.11', '4', '0')
(8186, 'George Mason University', '13', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '720', '570', '1290', '3.5', '95', 'SRM', 'Instrumenation & Control Engineering', '7.6', '10', '0')
(8187, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '146', '306', '3.5', '95', 'JNTU', 'CSE', '7.65', '100', '0')
(8188, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '750', '530', '1280', '3', '108', 'LNMIIT', 'CCE', '8.32', '10', '0')
(8189, 'George Mason University', '13', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '295', '137', '432', '158', 'None', 'JNTU', 'ELECTRONICS AND COMMUNICATIONS ENGINEERING', '7.688', '100', '0')
(8190, 'George Mason University', '13', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '162', '150', '312', '3.5', '101', 'Pune University', 'Comp Engg', '6.2', '100', '0')
(8191, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2013', '760', '620', '1380', '3', '102', 'VNR VJIET', 'EEE', '6.99', '100', '0')
(8192, 'George Mason University', '13', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2014', '154', '146', '300', '3', '89', 'Bangalore Institute of Technology', 'Telecommunication (VTU)', '7.8', '100', '33')
(8193, 'George Mason University', '13', 'Admit', 'MS', 'Computer engineering VLSI CAD', 'Fall ', '2012', '156', '149', '305', '3.5', '104', 'University of Mumbai', 'Electronics', '5.9', '100', '0')
(8194, 'George Mason University', '13', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(8195, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '550', '1350', '3', '97', 'Rajiv Gandhi Institute Of Technology', 'Computer Engineering', '6.5920000000000005', '100', '0')
(8196, 'George Mason University', '13', 'Admit', 'MS', 'Electronics and Communication', 'Spring ', '2012', '780', '580', '1360', '3', 'None', 'JNTU', 'ELECTRONICS AND COMMUNICATION', '7.8', '100', '0')
(8197, 'George Mason University', '13', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '160', '144', '304', '3', '107', 'Bhoj Reddy Engineering College JNTU', 'electronics and computer engineering', '7.7', '100', '0')
(8198, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '720', '460', '1180', '3', '97', 'Kurukshetra University', 'computer science', '6.7', '10', '0')
(8199, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '650', '1440', '3', '106', 'Bharati Vidyapeeth', 'extc', '5.8', '100', '0')
(8200, 'George Mason University', '13', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2012', '154', '143', '297', '4', '0', 'S.I.E.S GST (Mumbai University)', 'Electronics and Telecommunications', '5.75', '100', '0')
(8201, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '158', '146', '304', '3', '105', 'University of Pune', 'Information technology', '5.93', '100', '0')
(8202, 'George Mason University', '13', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Spring ', '2016', '156', '148', '304', '3.5', '100', 'Pune University', 'E&TC;', '6.3', '100', '24')
(8203, 'George Mason University', '13', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '710', '400', '1110', '3', '86', 'Nagpur/G.H Raisoni', 'Information Tech.', '0', '0', '0')
(8204, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '530', '1310', '3', '93', 'K J Somaiya College of Engiineering', 'Electronics', '5.6', '100', '0')
(8205, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '580', '1350', '3.5', '96', 'Pune University', 'Computer Science', '6.3', '100', '0')
(8206, 'George Mason University', '13', 'Admit', 'MS', 'Information Security', 'Fall ', '2015', '150', '153', '303', 'None', '92', 'Sri Venkateswara College of Engineering', 'ECE', '6.8', '100', '29')
(8207, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '160', '141', '301', '3', '95', 'Coimbatore Insitute of Technology', 'Computer Science', '8.5', '10', '0')
(8208, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2009', '760', '470', '1230', '2.5', '93', 'GIET', 'EEE', '7.8', '100', '0')
(8209, 'George Mason University', '13', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2014', '153', '148', '301', '3.5', '106', 'Anna University', 'ECE', '0.7769999999999999', '100', '0')
(8210, 'George Mason University', '13', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2011', '710', '380', '1090', '2.5', '103', 'JNTU', 'ECE(2010 passout)', '6.127000000000001', '100', '0')
(8211, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '730', '410', '1140', '3', '103', 'DVR College of Engineering', 'EEE', '6.3', '100', '0')
(8212, 'George Mason University', '13', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '730', '420', '1150', '3.5', '105', 'College of Engineering and Technology', 'Electronics and telecommunications', '0', '0', '0')
(8213, 'George Mason University', '13', 'Admit', 'MS', 'Information Systems', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'Rajiv Gandhi Institute Of Technology', 'Computer Science', '0', '0', '0')
(8214, 'George Mason University', '13', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2013', '154', '147', '301', '3', '95', 'VTU', 'Computer Science', '6.4', '100', '0')
(8215, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '157', '152', '309', '3.5', '97', 'MU', 'Computer Science', '5.607', '100', '0')
(8216, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '161', '146', '307', '3', '92', 'Sreenidhi Institute of Science & Technology', 'Computer Science', '6.9', '100', '0')
(8217, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '750', '400', '1150', '2.5', '93', 'JNTU', 'CSE', '7.5', '100', '0')
(8218, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '740', '640', '1380', '3', '108', 'GITAM', 'CSE', '7.9', '10', '0')
(8219, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '166', '150', '316', '4', '100', 'University of Engineering & Technology Taxila', 'Electrical Engineering', '7.904999999999999', '100', '0')
(8220, 'George Mason University', '13', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '166', '154', '320', '3.5', '107', 'Amrita School of Engineering', 'ECE', '7.8', '10', '0')
(8221, 'George Mason University', '13', 'Admit', 'MS', 'Electrical and Electronics', 'Spring ', '2013', '162', '148', '310', '2.5', '99', 'Pondicherry Engineering College', 'EIE', '7.73', '10', '0')
(8222, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '145', '307', '3', '106', 'Government Engineering College ajmer', 'Computer Engineering', '6.67', '100', '0')
(8223, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '500', '1280', '2.5', '96', 'University of Mumbai', 'Information Technology', '6.049', '100', '0')
(8224, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '750', '370', '1120', '3', '91', 'St thomas college of engg & tech(under West Bengal University of technology)', 'Information Technology', '8.37', '10', '0')
(8225, 'George Mason University', '13', 'Admit', 'MS', 'Telecommunication', 'Spring ', '2012', '770', '360', '1130', '3', '95', 'None', 'EXTC', '6.15', '100', '0')
(8226, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '720', '590', '1310', '3', '97', 'University of Mumbai', 'Information Technology', '7.573', '100', '0')
(8227, 'George Mason University', '13', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '730', '550', '1280', '3', '97', 'Pune University', 'entc', '0', '0', '0')
(8228, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '770', '360', '1130', '3', '100', 'Ambala College of Engineering And Applied Research', 'Electronics and communication', '6.3', '100', '0')
(8229, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '550', '1330', '4', '103', 'University of Kerala', 'Computer Science', '7.3', '10', '0')
(8230, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '149', '312', '3.5', '111', 'JNTU', 'CSE', '7.83', '100', '12')
(8231, 'George Mason University', '13', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2011', '740', '570', '1310', '3.5', '110', 'University of Mumbai', 'Electronics', '6.2', '100', '0')
(8232, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '760', '500', '1260', '3.5', '280', 'SFIT', 'Computer', '5.9', '100', '0')
(8233, 'George Mason University', '13', 'Admit', 'MS', 'Information Assurance', 'Fall ', '2015', '163', '150', '313', '3', 'None', 'University of Pune', 'Electronics and Telecommunication', '7.95', '10', '20')
(8234, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '370', '1120', '3', '98', 'MU', 'Computers', '7.9670000000000005', '100', '0')
(8235, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '440', '1210', '4', '108', 'None', 'IT', '7', '100', '0')
(8236, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '163', '328', '3', '115', 'GGSIPU', 'CSE', '7.065', '100', '0')
(8237, 'George Mason University', '13', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '720', '530', '1250', '3.5', '104', 'Pune University', 'Computers', '6.227', '100', '0')
(8238, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '740', '450', '1190', '4', '97', 'VTU', 'Computer Science', '5.9', '100', '0')
(8239, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '790', '430', '1220', '2.5', '107', 'GITAM', 'Electronics', '7.32', '10', '0')
(8240, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '730', '580', '1310', '3.5', '105', 'University of Mumbai', 'Information Technology', '7', '100', '0')
(8241, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '158', '146', '304', '3', 'None', 'None', '0', '0', '0', '0')
(8242, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '790', '440', '1230', '3', '93', 'SRKR Engineering College', 'CSE', '8.2', '100', '0')
(8243, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '590', '1390', '4', '115', 'Heritage Institute of Technology', 'Electronics and Communication Engineering', '8.32', '10', '0')
(8244, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '1090', '390', '1480', '700', '93', 'teegala krishna reddy engineering college', 'ece', '0', '0', '0')
(8245, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '161', '154', '315', '3.5', '111', 'Gogte Institute of Technology', 'Electronics & Communication', '7.7', '100', '0')
(8246, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '340', '1100', '3.5', '102', 'None', '0', '0', '0', '0')
(8247, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2012', '730', '410', '1140', '3', '109', 'Guru Jambheshwar University of Science & Technology', 'ECE', '8.67', '10', '0')
(8248, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '760', '540', '1300', '3.5', '98', 'PSG College of Technology', 'Mathematics and Computer Applications', '9.4', '10', '0')
(8249, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '153', '153', '306', '3', 'None', 'VTU', 'CS', '6.4', '100', '0')
(8250, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '740', '440', '1180', '3', '99', 'Anna University', 'EE', '8.61', '10', '0')
(8251, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '147', '307', '3.5', '104', 'JNTU', 'CSE', '7.95', '100', '0')
(8252, 'George Mason University', '13', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '740', '480', '1220', '3', '100', 'University of Mumbai', 'Electronics and Telecommunication', '6.3', '100', '0')
(8253, 'George Mason University', '13', 'Admit', 'MS', 'MIS', 'Spring ', '2015', '160', '152', '312', '3.5', '110', 'JNTU', 'Metallurgical Engineering', '6.890000000000001', '100', '19')
(8254, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '750', '570', '1320', '4', '109', 'MU', 'IT', '6.7', '100', '0')
(8255, 'George Mason University', '13', 'Admit', 'MS', 'Computer Networking', 'Fall ', '2013', '161', '156', '317', '4', '105', 'Kerala University', 'Information Technology', '3.98', '4', '0')
(8256, 'George Mason University', '13', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2013', '162', '146', '308', '3', '107', 'St.Martin Engg College affiliated with JNTU', 'ECE', '6.8', '100', '0')
(8257, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '800', '470', '1270', '4.5', '104', 'K J Somaiya College of Engiineering', 'it', '6.7', '100', '0')
(8258, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '153', '312', '3', '105', 'BNMIT', 'Information Science and Engineering', '7.4', '100', '0')
(8259, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '730', 'None', '730', '3.5', '96', 'None', 'Information science', '8', '100', '0')
(8260, 'George Mason University', '13', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2010', '770', '450', '1220', '3', '100', 'VTU', 'Electronics and Communication', '7', '100', '0')
(8261, 'George Mason University', '13', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '770', '330', '1100', '3', '102', 'Amrita School of Engineering', 'ECE', '7', '10', '0')
(8262, 'George Mason University', '13', 'Admit', 'MS', 'Information Science', 'Fall ', '2006', '740', '410', '1150', '4', '287', 'SSN College of Engineering', 'Information Technology', '7.1', '100', '0')
(8263, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '570', '1360', '3', '114', 'None', 'Computer Science', '7.95', '10', '0')
(8264, 'George Mason University', '13', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '161', '151', '312', '3', '93', 'ITM Gurgaon', 'CS', '6.5', '100', '0')
(8265, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '156', '317', '4', '99', 'JNTU', 'CSE', '6.8', '100', '0')
(8266, 'George Mason University', '13', 'Admit', 'MS', 'Electrical & Computer Engg/MIS/Industrial/Systems Engg', 'Fall ', '2013', '161', '156', '317', '4.5', '113', 'University of Mumbai', 'Electronics', '7.3', '100', '0')
(8267, 'George Mason University', '13', 'Admit', 'MS', 'Embedded systems', 'Fall ', '2012', '780', '600', '1380', '3', '106', 'VIT Mumbai University', 'Electronics', '6.2', '100', '0')
(8268, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '156', '145', '301', '4', '90', 'University of Mumbai', 'Electrical Engineering', '6.2', '100', '0')
(8269, 'George Mason University', '13', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '750', '380', '1130', '3.5', '94', 'MU', 'Electronics', '6.5', '100', '0')
(8270, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '700', '600', '1300', '3.5', '110', 'MU', 'Computer Engineering', '6.2', '100', '0')
(8271, 'George Mason University', '13', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '740', '400', '1140', '3', '97', 'MSRIT', 'IT', '6.8', '100', '0')
(8272, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '157', '143', '300', '3', '7', 'JNTU', 'CSE', '7.5', '100', '0')
(8273, 'George Mason University', '13', 'Admit', 'MS', 'Information Science', 'Fall ', '2011', '750', '530', '1280', 'None', '103', 'Rajasthan Technical University', 'Information Technology', '7', '100', '0')
(8274, 'George Mason University', '13', 'Admit', 'MS', 'Bioinformatics', 'Fall', 'None', '730', '570', '1300', '3', '102', 'SASTRA', 'Bioinformatics', '7.6', '10', '0')
(8275, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '150', '312', '3.5', '102', 'NIT Calicut', 'CSE', '7.74', '10', '0')
(8276, 'George Mason University', '13', 'Admit', 'MS', 'Geographic and Cartographic Sciences', 'Fall ', '2011', '710', '490', '1200', '4', '107', 'None', 'Electronics & Telecomm', '6.8', '100', '0')
(8277, 'George Mason University', '13', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(8278, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '145', '305', '3', '99', 'Sree Vidyanikethan Engineering College', 'Information Technology', '7.6', '100', '0')
(8279, 'George Mason University', '13', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2010', '790', '380', '1170', '3.5', '107', 'JNTU', 'ECE', '6.4', '100', '0')
(8280, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '160', '142', '302', '3', 'None', 'GITAM', 'Electronics and Communications', '8.8', '10', '0')
(8281, 'George Mason University', '13', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '750', '390', '1140', '3', '106', 'Osmania University', 'ECE', '7.5', '100', '0')
(8282, 'George Mason University', '13', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '155', '146', '301', 'None', '97', 'MU', 'Electronics', '5.5', '100', '0')
(8283, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '770', '370', '1140', '3', '102', 'Koneru Lakshmaiah College of Engineering', 'Information Science and Technology', '8.44', '10', '0')
(8284, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '740', '370', '1110', '3', '96', 'None', '0', '0', '0', '0')
(8285, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '160', '147', '307', '2.5', 'None', 'GITAM', 'Electronics and Communication', '7.8', '10', '0')
(8286, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '730', '420', '1150', 'None', '103', 'MDU', 'ECE', '0', '0', '0')
(8287, 'George Mason University', '13', 'Admit', 'MS', 'Biotechnology', 'Spring ', '2014', '151', '150', '301', '3.5', '100', 'SASTRA', 'Biotechnology', '0.8099999999999999', '100', '0')
(8288, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '710', '500', '1210', '3.5', '96', 'MU', 'Computer Engg.', '5.785', '100', '0')
(8289, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '170', '148', '318', '3', '98', 'UCEK JNTUK', 'EEE', '7.7', '100', '12')
(8290, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '147', '313', '3', '107', 'JNTU', 'Information Technology', '6.544', '100', '0')
(8291, 'George Mason University', '13', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2007', '720', '510', '1230', '4', '267', 'VIT', 'Biotechnology', '8.56', '10', '0')
(8292, 'George Mason University', '13', 'Admit', 'MS', 'Telecommunication', 'Spring ', '2013', '145', '143', '288', 'None', '87', 'None', '0', '0', '0', '0')
(8293, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2016', '141', '137', '278', '2', 'None', 'Rajasthan Technical University', 'Electronics & Communication', '0.3', '100', '0')
(8294, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '170', '149', '319', '3.5', '100', 'GITAM', 'Computer Science', '8.54', '10', '0')
(8295, 'George Mason University', '13', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '167', '145', '312', '3', '101', 'VTU', 'Computer Science', '6.5', '100', '0')
(8296, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '790', '570', '1360', '3.5', '110', 'None', '0', '0', '0', '0')
(8297, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '157', '150', '307', '3', '94', 'GITAM', 'Computer Science', '8.23', '10', '0')
(8298, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '640', '1410', '4', '117', 'Watumull Institute University of Mumbai', 'Computer Science', '5.3', '100', '0')
(8299, 'George Mason University', '13', 'Admit', 'MS', 'Information Security', 'Fall ', '2012', '760', '630', '1390', '3', '98', 'MU', 'Information Technology', '5.5', '100', '0')
(8300, 'George Mason University', '13', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '760', '440', '1200', '3.5', '92', 'PESIT', 'electronics and communication', '6.4', '100', '0')
(8301, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '740', '410', '1150', '2.5', '110', 'BITS Pilani', 'Computer Science', '7.91', '10', '0')
(8302, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '660', '1440', '4.5', '109', 'MU', 'Computer Engineering', '5.7', '100', '0')
(8303, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '650', '1420', '3', '91', 'Vrsiddhartha Engineering College', 'CSE', '8.834999999999999', '100', '0')
(8304, 'George Mason University', '13', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '158', '160', '318', 'None', '112', 'Saboo Siddik', 'Computers', '6.2', '100', '0')
(8305, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '450', '1240', '3', '100', 'MU', 'Information Technology', '6.7', '100', '0')
(8306, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '165', '159', '324', '3', '101', 'BITS Pilani', 'Electronics', '4.93', '10', '0')
(8307, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Spring ', '2011', '730', '390', '1120', '3', '90', 'IET DAVV', 'Computer Engineering', '0', '0', '0')
(8308, 'George Mason University', '13', 'Reject', 'MS', 'Bioinformatics', 'Fall ', '2011', '720', '470', '1190', '3', '87', 'D Y Patil College of Engineering', 'Bioinformatics', '6.2299999999999995', '100', '0')
(8309, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '161', '152', '313', '3', '92', 'Pune University', 'Mechanical Engineering', '6.25', '100', '53')
(8310, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Spring ', '2016', '167', '142', '309', '3.5', '99', 'Sikkim Manipal University', 'Computer Engineering', '6.58', '10', '56')
(8311, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '161', '152', '313', '3.5', '105', 'Pune University', 'information technology', '5.6', '100', '0')
(8312, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '157', '151', '308', '3', '101', 'MU', 'IT', '5.875', '100', '0')
(8313, 'George Mason University', '13', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '770', '370', '1140', '3', '87', 'K J Somaiya College of Engiineering', 'Electronics', '6', '100', '0')
(8314, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '157', '150', '307', '3.5', '111', 'VTU', 'Telecommunication', '5.7', '100', '0')
(8315, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '145', '304', '3', '98', 'Greater Noida Institute Of Technology', 'Comuter Science engineering', '6.840000000000001', '100', '0')
(8316, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '680', '430', '1110', '3.5', '102', 'VCET', 'Computer Science', '6.3', '100', '0')
(8317, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '139', '300', '3', '95', 'GGSIPU', 'IT', '7.5280000000000005', '100', '0')
(8318, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '159', '146', '305', '3', '92', 'SSN College of Engineering', 'Electrical and Electronics', '7.9', '100', '0')
(8319, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '730', '540', '1270', '3', '89', 'Manipal Institue of Technology', 'Computer Science', '7.03', '10', '0')
(8320, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '159', '149', '308', '3.5', '105', 'None', '0', '0', '0', '0')
(8321, 'George Mason University', '13', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '750', '550', '1300', '4', '89', 'MU', 'EXTC', '5.5', '10', '0')
(8322, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '158', '148', '306', '4', '98', 'K J Somaiya College of Engiineering', 'Computer Engineering', '5.8', '100', '0')
(8323, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '170', '155', '325', '3.5', '111', 'MU', 'Information Technology', '6.4', '100', '17')
(8324, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '166', '150', '316', '2.5', '98', 'BITS Pilani', 'Computer Science', '5.5', '10', '0')
(8325, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '143', '304', '3', '97', 'Vasavi College of Engineering', 'IT', '8.2', '100', '0')
(8326, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '145', '306', '3', '103', 'B V Bhoomaraddi College of Engg & Tech (Affiliated to VTU)', 'Information Science and Engineering', '7.39', '10', '26')
(8327, 'George Mason University', '13', 'Reject', 'MS', 'Electronics and Communication', 'Spring ', '2015', '159', '147', '306', '3', 'None', 'JNTU', 'Electronics and Communication Engineering', '7.555', '100', '26')
(8328, 'George Mason University', '13', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2013', '154', '154', '308', '3.5', '105', 'MU', 'IT', '6.3', '100', '0')
(8329, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '370', '1120', '3', '108', 'MU', 'Information Technology', '6.8', '100', '0')
(8330, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '170', '153', '323', '3.5', '103', 'Pune University', 'ECE', '7.2', '100', '0')
(8331, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '156', '319', '3', 'None', 'Coimbatore Insitute of Technology', 'CSE', '8.1', '10', '0')
(8332, 'George Mason University', '13', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Spring ', '2012', '690', '580', '1270', 'None', '98', 'JNTUK/REC', 'CSE', '5.86', '100', '0')
(8333, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '156', '145', '301', '3', '102', 'Andhra University', 'CS&SE;', '8.28', '10', '0')
(8334, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '151', '143', '294', '3', '98', 'Sinhgad College of Engineering', 'Computer', '6.6659999999999995', '100', '0')
(8335, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '167', '330', '4', '112', 'University of Mumbai', 'Computer Engineering', '5.4', '100', '0')
(8336, 'George Mason University', '13', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '151', '143', '294', '3', '83', 'Padre Conceicao College Of Engineering', 'Information Technology', '0', '0', '0')
(8337, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '720', '330', '1050', '3', '95', 'Anna University', 'I.T.', '6.8', '100', '0')
(8338, 'George Mason University', '13', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '160', '149', '309', '3', '101', 'GGSIPU', 'CSE', '7.9', '100', '0')
(8339, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '740', '310', '1050', '2.5', '87', 'KL University', 'Information Technology', '7.83', '10', '0')
(8340, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '147', '306', '2.5', '107', 'MIT Pune', 'Computer Engineering', '6', '100', '0')
(8341, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '152', '156', '308', '4.5', '113', 'Anna University', 'CS', '7.2', '100', '48')
(8342, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '145', '303', '3', '96', 'PESIT', 'Computer Science', '7.340000000000001', '100', '0')
(8343, 'George Mason University', '13', 'Reject', 'MS', 'Business Analytics', 'Fall ', '2015', '158', '145', '303', '3', '94', 'PESIT', 'Computer Science and Engineering', '6.71', '10', '42')
(8344, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '770', '310', '1080', '2.5', '93', 'Amity University', 'Computer Science and Engineering', '7.5', '10', '0')
(8345, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '139', '300', '3', '95', 'Guru Gobind Singh Indraprashta University', 'Information Technology', '7.5280000000000005', '100', '0')
(8346, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '154', '143', '297', '2.5', 'None', 'Vivekananda Institute Of Technology', 'Information Science', '6.779999999999999', '100', '58')
(8347, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '740', '670', '1410', '3', '110', 'MU', 'IT', '5.89', '100', '0')
(8348, 'George Mason University', '13', 'Reject', 'MS', 'MIS', 'Fall ', '2015', '153', '149', '302', '3.5', '101', 'MU', 'Instrumentation', '5.5', '100', '8')
(8349, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2007', '690', '370', '1060', '4', '89', 'ACET Nagpur', 'Computer Science', '6.941', '100', '0')
(8350, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '158', '144', '302', '3', '93', 'Pune University', 'Computer Engg.', '5.89', '100', '0')
(8351, 'George Mason University', '13', 'Reject', 'MS', 'Computer Forensics', 'Fall ', '2012', '156', '153', '309', '4', '110', 'Anna University', 'Information Technology', '6.5', '100', '0')
(8352, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '157', '154', '311', '3.5', '104', 'None', '0', '7.09', '10', '0')
(8353, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '154', '162', '316', '4.5', '113', 'Walchand College Of Engineering', 'CSE', '8.06', '10', '16')
(8354, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '720', '470', '1190', '3.5', '94', 'K J Somaiya College of Engiineering', 'IT', '6.1', '100', '0')
(8355, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '740', '300', '1040', '3.5', '107', 'JNTU', 'Electronics & Communication', '6.7', '100', '0')
(8356, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '670', '600', '1270', '3', '93', 'VTU', 'CSE', '6.7', '100', '0')
(8357, 'George Mason University', '13', 'Reject', 'MS', 'Computer Engineering/Comp Science', 'Fall ', '2015', '156', '151', '307', '3', '90', 'DMI College of Engineering', 'I.T', '6.53', '10', '22')
(8358, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '560', '1310', '4', '105', 'MU', 'Information Technology(B.E. I.T)', '5.88', '100', '0')
(8359, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '158', '152', '310', '3.5', '102', 'University of Pune', 'Computer Engineering', '5.8', '100', '0')
(8360, 'George Mason University', '13', 'Reject', 'MS', 'Bioinformatics', 'Fall ', '2007', '770', '420', '1190', '3.5', '103', 'Bharathidasan University', 'Biotechnology', '7.5', '100', '0')
(8361, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '151', '144', '295', '3.5', '90', 'VTU', 'CSE', '7.8', '100', '0')
(8362, 'George Mason University', '13', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2011', '720', '450', '1170', '3', '85', 'MU', 'Electronics', '5.970000000000001', '100', '0')
(8363, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '670', '450', '1120', '3', '82', 'Amrita Vishwa Vidhyapeetham', 'Computer Science', '6.14', '10', '0')
(8364, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '310', '1110', '3', '95', 'University of Mumbai', 'Computer', '6.43', '100', '0')
(8365, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '158', '143', '301', '3.5', '100', 'JNTU', 'ECE', '7.3', '100', '0')
(8366, 'George Mason University', '13', 'Reject', 'MS', 'Embedded systems', 'Fall ', '2012', '157', '156', '313', '4', '116', 'SASTRA', 'electronics&communications;', '7', '10', '0')
(8367, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '158', '143', '301', '3', 'None', 'VGEC GTU', 'Computer Engineering', '7.2', '10', '0')
(8368, 'George Mason University', '13', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2013', '153', '137', '290', '3', '81', 'MU', 'Electronics and telecommunicatio', '6.904000000000001', '100', '0')
(8369, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '660', '430', '1090', '3', '106', 'MU', 'Information Technology', '5.7', '100', '0')
(8370, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '340', '1100', '3', '97', 'MU', 'Electronics', '6.3', '100', '0')
(8371, 'George Mason University', '13', 'Admit', 'MS', 'Electronics & Communication', 'Fall', '2011', '157', '148', '305', '3.5', '105', 'College of engineering and technology', 'Electronics and Telecommunication', '-1', '-1', '0')
(8372, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '169', '165', '334', '5.5', '118', 'IIT Delhi', 'Mechanical', '9.1', '10', '40')
(8373, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '154', '321', '4', '110', 'University of Mumbai', 'Electronics and Telecommuication', '6.306', '100', '0')
(8374, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '170', '159', '329', '4', '113', 'IIT Indore', 'Mechanical Engineering', '7.7', '10', '24')
(8375, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical and computer engineering electrical engineering telecommunications engineering', 'Fall ', '2014', '165', '154', '319', '4', '115', 'MU', 'Electronics', '7.57', '100', '0')
(8376, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2011', '780', '590', '1370', '3.5', '105', 'VTU', 'ECE', '8.2', '100', '0')
(8377, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Chemical Engineering', 'Fall ', '2014', '165', '154', '319', '4', '112', 'DSCE', 'Chemical Engg.', '8.229000000000001', '100', '0')
(8378, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2011', '800', '550', '1350', '3', '104', 'BIT Mesra', 'Biotechnology', '7.02', '10', '0')
(8379, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'economics', 'Fall ', '2015', 'None', 'None', '0', 'None', 'None', 'University of Delhi', 'Economics', '7.1', '100', '0')
(8380, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '166', '159', '325', '4', '115', 'NIT', 'Production Engineering', '9.24', '100', '0')
(8381, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '790', '600', '1390', '3.5', '108', 'K J Somaiya College of Engiineering', 'ECE', '7', '100', '0')
(8382, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2008', '800', '680', '1480', '5', '113', 'University of Mumbai', 'Computer Engineering', '7.087999999999999', '100', '0')
(8383, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '168', '154', '322', '3.5', '110', 'University of Mumbai', 'Electronics & Telecommunications', '8.056999999999999', '100', '0')
(8384, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '730', '1530', '4', '118', 'NSIT', 'Instrumentation and Control Engineering', '7.927', '100', '0')
(8385, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '164', '166', '330', '4.5', '117', 'University of Mumbai', 'Engineering Electronics and Telecommunication', '6.038', '100', '0')
(8386, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2011', '800', '570', '1370', '4', '112', 'VESIT', 'Electronics and Telecommunication', '8.737', '100', '0')
(8387, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '790', '710', '1500', '4', '115', 'VTU', 'Electronics & Communication', '8.25', '100', '0')
(8388, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical and computer science', 'Fall ', '2008', '750', '520', '1270', 'None', '250', 'None', '0', '0', '0', '0')
(8389, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '750', '630', '1380', '4', '106', 'D J Sanghvi', 'Electronics', '7.368', '100', '0')
(8390, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '770', '440', '1210', '4.5', '108', 'SJCE', 'Electronics and Communication', '9.78', '10', '0')
(8391, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Information Assurance', 'Fall ', '2015', '161', '160', '321', '3', '103', 'TU', 'CS', '6.970000000000001', '100', '36')
(8392, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '170', '158', '328', '4', '116', 'IIT Kharagpur', 'Electrical Engineering', '8.52', '10', '0')
(8393, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '680', '1480', '3', '102', 'Zhejiang University', 'Dpt. of Mechanical Engineering', '3.68', '4', '0')
(8394, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '800', '590', '1390', '3.5', '120', 'PSG College of Technology', 'Mechanical', '8.9', '10', '0')
(8395, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '600', '1400', '3.5', '111', 'VESIT', 'Electronics', '7.8', '100', '0')
(8396, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '620', '1410', '5', '117', 'NIT Karnataka', 'ECE', '9.36', '10', '0')
(8397, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '168', '150', '318', '4', '109', 'University of Mumbai', 'Electronics', '3.25', '4', '0')
(8398, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '168', '155', '323', '5', '108', 'MSRIT', 'Electronics and Communication', '9.33', '10', '0')
(8399, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '750', '1550', '4.5', '117', 'SRM', 'CSE', '8.4', '10', '0')
(8400, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '168', '160', '328', '4', '118', 'Amrita School of Engineering', 'ECE', '9.49', '10', '0')
(8401, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '660', '1460', '3', '110', 'NIT Bhopal', 'IT', '7.9', '10', '0')
(8402, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Supply chain management', 'Fall ', '2015', '166', '157', '323', '4', '112', 'BITS Pilani', 'Manufacturing', '0.7', '100', '24')
(8403, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '800', '700', '1500', '3.5', '110', 'IIT Kharagpur', 'Industrial Engineering', '8.37', '10', '0')
(8404, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '170', '166', '336', '5', '112', 'IIT BHU', 'Electrical Engg', '8.15', '10', '0')
(8405, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '157', '323', '4', '105', 'IIIT Delhi', 'Computer Science', '3.8', '10', '0')
(8406, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '750', '580', '1330', '4.5', '287', 'K J Somaiya College of Engiineering', 'Comp Engg', '6.9', '100', '0')
(8407, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '690', '1490', '4', '110', 'Maharashtra Institute of Technology', 'EnTc', '7.6', '100', '0')
(8408, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '780', '650', '1430', '4', '101', 'NITK Surathkal', 'Computer Engineering', '3.9', '4', '0')
(8409, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2011', '790', '650', '1440', '3.5', '111', 'BITS Pilani', 'MSc (Hons) Biological Science & BE (Hons) Computer Science', '9.18', '10', '0')
(8410, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '650', '1450', '4', '110', 'Vidyalankar Institute of Technology', 'Information Technology', '7.145999999999999', '100', '0')
(8411, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '168', '157', '325', '4.5', '114', 'Netaji Subhas Institute of Technology', 'Instrumentation and Control', '7.140000000000001', '100', '0')
(8412, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '160', '155', '315', '3.5', '104', 'MU', 'Electronics', '7.614', '100', '0')
(8413, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'environmental engineering', 'Fall ', '2011', '800', '540', '1340', '4', '114', 'R V College of Engineering', 'Chemical engineering', '9.14', '10', '0')
(8414, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '790', '550', '1340', '3', '111', 'SSN College of Engineering', 'Computer Science', '8.774', '100', '0')
(8415, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '163', '160', '323', '4', '115', 'SRM', 'ECE', '9.157', '10', '0')
(8416, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '700', '1480', '4', '110', 'MU', 'Computer Engineering', '7.5', '100', '0')
(8417, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'computer science / MIS', 'Fall ', '2014', '163', '159', '322', '5', '115', 'MU', 'Information Technology', '0', '0', '18')
(8418, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '800', '1600', '5.5', '117', 'MIT College of Engineering University of Pune', 'Computer Science and Engineering', '5.851', '100', '0')
(8419, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '168', '335', '4', '115', 'VNIT Nagpur', 'ECE', '8.83', '10', '0')
(8420, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '162', '160', '322', '4', '117', 'None', 'Electronics & communication', '9.1', '10', '0')
(8421, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '550', '1350', '4', '107', 'VESIT', 'Instrumentation engg', '7.202', '100', '0')
(8422, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '790', '640', '1430', '3.5', '104', 'Mar Athanasius College of Engineering Kerala', 'Electronics and Communication', '7.1', '100', '0')
(8423, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '167', '166', '333', '4', '115', 'MU', 'Electronics & Telecommunication', '7.26', '100', '0')
(8424, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '164', '159', '323', '4.5', '117', 'Nirma Institute of Technology', '0', '8.54', '10', '0')
(8425, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '168', '155', '323', '4', '108', 'VJTI', 'Electronics', '8', '10', '0')
(8426, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '620', '1400', '4', '115', 'PICT', 'Computer', '3.45', '4', '0')
(8427, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '165', '157', '322', '4', 'None', 'Punjab Engineering College', 'Electronics and Electrical Communication', '9.65', '10', '0')
(8428, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(8429, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2013', '780', '680', '1460', '4', '109', 'NIT Surat', 'Civil', '8.75', '10', '0')
(8430, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '167', '152', '319', '3.5', '108', 'Amrita School of Engineering', 'EEE', '9.01', '10', '24')
(8431, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '166', '163', '329', '4', '114', 'IET DAVV', 'Computer Science', '7.2', '100', '0')
(8432, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '169', '164', '333', '4', '118', 'NIT Tirchy', 'production engineering', '9.03', '10', '0')
(8433, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '720', '1520', '4', '118', 'Galgotias college of engineering & technology', 'Information Technology', '7.35', '100', '0')
(8434, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '720', '1520', '4', '103', 'KIIT', 'Electronics and Electrical', '8.82', '10', '0')
(8435, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '800', '620', '1420', '3.5', '109', 'IIT Delhi', 'Mechanical Engineering', '8.48', '10', '0')
(8436, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2014', '162', '152', '314', '3.5', '112', 'University of Manchester', 'Aerospace Engineering', '3.74', '4', '12')
(8437, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '159', '319', '4.5', '118', 'SSN College of Engineering', 'CSE', '8.6', '10', '0')
(8438, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '700', '1450', '4', '110', 'VTU', 'CS', '7.9', '100', '0')
(8439, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '600', '1400', '4.5', '110', 'NIT Surat', 'Computer Engineering', '7.2', '10', '0')
(8440, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '168', '158', '326', '4', '115', 'JSS Noida', 'ECE', '7.67', '100', '0')
(8441, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '760', '560', '1320', '4', '107', 'PSG College of Technology', 'Computer Science', '8.91', '10', '0')
(8442, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '770', '580', '1350', '3', '106', 'Madras Institute of Technology', 'Production Engineering', '9.45', '10', '24')
(8443, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '161', '162', '323', '3.5', '116', 'SVCE', 'ECE', '7.98', '10', '0')
(8444, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Architecture', 'Fall ', '2014', '164', '159', '323', '4', '108', 'NIT Tirchy', 'Architecture', '9.43', '10', '0')
(8445, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '157', '320', '3.5', '115', 'D J Sanghvi', 'Information technology', '6.6', '100', '0')
(8446, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '660', '1460', '4', '116', 'WBUT', 'Computer Science Engineering', '8.93', '10', '0')
(8447, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2012', '800', '530', '1330', '4', '105', 'Sathyabama University', 'Aeronautical enggineering', '8.3', '100', '0')
(8448, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer vision/image-video processing', 'Fall ', '2013', '167', '159', '326', '5', '117', 'IIT Jodhpur', 'CSE', '10', '10', '0')
(8449, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2011', '770', '410', '1180', 'None', 'None', 'Fr Agnel', 'Computer', '0', '0', '0')
(8450, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '800', '680', '1480', '3.5', '114', 'NIT Calicut', 'Electrical and Electronics', '8.66', '10', '0')
(8451, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'CS', 'Fall ', '2012', '790', '560', '1350', '3.5', '108', 'R V College of Engineering', 'Computer Science', '7.5', '100', '0')
(8452, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '163', '159', '322', '4.5', '115', 'MSRIT', 'Telecommunications Engineering', '9.07', '10', '0')
(8453, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '169', '160', '329', '3.5', 'None', 'NIT Calicut', 'ECE', '9.62', '10', '0')
(8454, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '690', '1490', '4.5', '117', 'Anna University', 'IT', '8.3', '100', '0')
(8455, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '770', '540', '1310', '3.5', '107', 'MSRIT', 'Telecommunication', '8.8', '10', '0')
(8456, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '170', '157', '327', '4', '118', 'West Bengal University Of Technology', 'Electronics and Communication Engineering', '8.79', '10', '0')
(8457, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '168', '158', '326', '5', '112', 'CEG', 'Mechanical Engineering', '9', '10', '0')
(8458, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '166', '153', '319', '3.5', '115', 'COEP', 'Electronics and Telecommunication Engineering', '9.1', '10', '0')
(8459, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'None', 'Fall ', '2014', '165', '158', '323', '4', '112', 'MDU', 'ECE', '6.2', '100', '0')
(8460, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '620', '1410', '3', '108', 'COEP', 'Information Technology', '8.67', '10', '0')
(8461, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical and computer science', 'Fall ', '2012', '800', '620', '1420', '4', '118', 'Manipal Institue of Technology', 'ECE', '9.15', '10', '0')
(8462, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '500', '1300', '4', '113', 'Gujarat Technological University', 'Computer Enigneering', '6.4799999999999995', '100', '0')
(8463, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Human Computer Interaction', 'Fall ', '2011', '800', '560', '1360', '4.5', '117', 'Anna University', 'EEE', '7.2', '100', '0')
(8464, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2010', '800', '600', '1400', '5.5', '118', 'R V College of Engineering', 'Mechanical Engineering', '3.95', '4', '0')
(8465, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '170', '160', '330', '4', 'None', 'BITS Pilani', 'EEE', '8.7', '10', '0')
(8466, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '800', '710', '1510', '4', '111', 'MU', 'Information Technology', '6.617', '100', '0')
(8467, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '770', '720', '1490', '3.5', '106', 'Watumull Institute University of Mumbai', 'Electronics and Telecommunication', '0', '0', '0')
(8468, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '560', '1320', '3.5', '104', 'BITS Goa', 'Computer Science', '8.95', '10', '0')
(8469, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '166', '149', '315', '3.5', '101', 'CoE Trivandrum', 'Industrial Engineering', '7.3', '10', '0')
(8470, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'CS', 'Fall ', '2013', '170', '154', '324', 'None', '112', 'None', '0', '7.2', '100', '0')
(8471, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Information Networking', 'Fall ', '2012', '800', '570', '1370', '3.5', '108', 'CEG', 'Computer science & Engg', '8.3', '10', '0')
(8472, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '650', '1440', '5', 'None', 'National Technical University of Athens', 'ECE', '9.4', '4', '0')
(8473, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '167', '153', '320', '3.5', '108', 'R V College of Engineering', 'Electrical and Electronics', '9.38', '10', '0')
(8474, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '162', '159', '321', '3', '111', 'SJCE', 'CS', '9.45', '10', '0')
(8475, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '158', '323', '4', '114', 'IIT Guwahati', 'Mathematics and Computing', '7.62', '10', '0')
(8476, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2009', '800', '650', '1450', '4', '111', 'GGSIPU', 'Computer Science', '7.9', '100', '0')
(8477, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '560', '1360', '4.5', '113', 'VTU', 'Electronics and Communication', '7.3', '100', '0')
(8478, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '164', '154', '318', '4', '118', 'kvw', 'ece', '6.99', '100', '0')
(8479, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '590', '1370', '4.5', '118', 'NIT Warangal', 'Computer Science', '9.23', '10', '0')
(8480, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computational Engineering', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'BITS Pilani', 'Civil', '7.2', '10', '0')
(8481, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2011', '800', '550', '1350', 'None', 'None', 'R V College of Engineering', 'Mechanical', '8.47', '10', '0')
(8482, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '168', '156', '324', 'None', '106', 'SASTRA', 'ELECTRONICS AND COMMUNICATION', '9.01', '10', '0')
(8483, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '550', '1350', '3.5', '110', 'shu', 'physics', '4', '4', '0')
(8484, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '580', '1380', '4', '111', 'UPTU', 'Computer Science', '6.876', '100', '0')
(8485, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '158', '325', '4.5', '112', 'Delhi University', 'ECE', '6.993', '100', '0')
(8486, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Human Computer Interaction', 'Fall ', '2012', '159', '160', '319', '4', 'None', 'Amity University', 'Computer Science', '8.31', '10', '0')
(8487, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2011', '780', '620', '1400', '3.5', '110', 'Delhi College Of Engineeing', 'ECE', '7.970000000000001', '100', '0')
(8488, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '166', '170', '336', '4.5', '119', 'BITS Goa', 'Computer Science', '8.8', '10', '0')
(8489, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '168', '163', '331', '4.5', '112', 'NMIMS', 'Electronics engineering', '3.58', '4', '0')
(8490, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '670', '1470', '4', '112', 'NIT Silchar', 'EE', '0.85', '100', '0')
(8491, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '160', '322', '4.5', '112', 'Manipal Institue of Technology', 'Electrical and Electronics', '7.1', '10', '0')
(8492, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '153', '314', '4', '111', 'NIT', 'CSE', '8.37', '10', '0')
(8493, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '500', '1300', '3', '99', 'Shanghai Jiao Tong University', 'ECE', '3.2', '4', '0')
(8494, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '660', '1460', '4', '113', 'PICT', 'Computer Engg.', '0', '0', '0')
(8495, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '160', '161', '321', '4', '114', 'Yeshwantrao Chavan College of Engineering', 'Electronics and communication', '6.886', '100', '19')
(8496, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '154', '316', '4', '106', 'Bangalore University', 'CS', '7.999', '100', '0')
(8497, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '550', '1330', '4', '106', 'SSN College of Engineering', 'ECE', '8.9', '100', '0')
(8498, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '169', '164', '333', '4', '109', 'BMSCE', 'EEE', '9.23', '10', '0')
(8499, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '163', '161', '324', '4.5', '116', 'SASTRA', 'Electronics and Communication Engg', '8.13', '10', '0')
(8500, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '780', '630', '1410', '4', '96', 'Anna University', 'Mechanical Engineering', '8.93', '10', '0')
(8501, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '780', '650', '1430', '4.5', '118', 'Pune University', '0', '7.5', '100', '0')
(8502, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '790', '700', '1490', '5.5', '277', 'D J Sanghvi', 'EXTC', '6.95', '100', '0')
(8503, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '630', '1430', '3.5', '108', 'None', 'School of Management', '0', '0', '0')
(8504, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '730', '550', '1280', '4', '100', 'MU', 'Electronics', '6.1', '100', '0')
(8505, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computational Science', 'Fall ', '2012', '800', '690', '1490', '4', '113', 'NSIT', 'COE', '7.5', '100', '0')
(8506, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2010', '740', '600', '1340', '5', '104', 'Padmashree Dr D Y Patil University', 'Department of Biotechnology and Bioinformatics', '7.24', '100', '0')
(8507, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Engineering', 'Fall', 'None', '169', '163', '332', '4.5', '115', 'BITS Pilani', 'Electronics', '8.65', '10', '0')
(8508, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '800', '490', '1290', '3.5', '106', 'NIT Durgapur', 'electronics and communication engineering', '8.5', '10', '0')
(8509, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Spring ', '2014', '165', '161', '326', '4', '114', 'KIIT', 'Electronics and Electrical', '9', '10', '0')
(8510, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '610', '1410', '4.5', '114', 'International Institute of Information Technology Hyderabad', 'Computer Science and Engineering', '9', '10', '0')
(8511, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '800', '620', '1420', '4.5', 'None', 'NIT Surathkal', 'Computer Engineering', '8.64', '10', '0')
(8512, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '690', '1490', '3.5', '111', 'VTU', 'Mechanical Engineering', '8.85', '10', '0')
(8513, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '730', '530', '1260', '3', 'None', 'MU', 'Electronics', '6.7', '100', '0')
(8514, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2015', '170', '155', '325', '3.5', '109', 'Sardar Patel College of Engineering', '0', '8', '10', '0')
(8515, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '164', '159', '323', '4', 'None', 'Clemson University', 'Electrical Engineering', '3.81', '4', '0')
(8516, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '580', '1370', '4', '109', 'Gujarat Technological University', 'Electronics and Communications', '7.25', '100', '0')
(8517, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2013', '164', '152', '316', '4', '108', 'VIT University', 'Bioinformatics', '8.74', '10', '0')
(8518, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '169', '159', '328', '4.5', '118', 'Netaji Subhas Institute of Technology', 'Electronics and Communicartion', '7.495', '100', '0')
(8519, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '157', '318', '4.5', '117', 'VTU', 'Computer Science', '8.81', '10', '12')
(8520, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Embedded systems', 'Fall ', '2012', '800', '580', '1380', '3.5', '110', 'University of Mumbai', 'Electronics and Telecommunication', '7.2', '100', '0')
(8521, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '170', '150', '320', '3.5', '106', 'IIT Bombay', 'Mechanical', '8.1', '10', '0')
(8522, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '570', '1370', '4', '109', 'M S University of Baroda', 'Computer Science', '4', '4', '0')
(8523, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '168', '169', '337', '5', 'None', 'SVCE', 'Computer Science & Engineering', '7.4', '100', '32')
(8524, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '730', '1530', '3.5', '114', 'CEG', 'EEE', '8.66', '10', '0')
(8525, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '550', '1350', '3.5', '114', 'MANIT BHOPAL', 'Computer Science', '8.59', '10', '0')
(8526, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2011', '800', '620', '1420', '3.5', '117', 'NIT Nagpur', 'civil engineering', '8.96', '10', '0')
(8527, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '166', '162', '328', '4', '117', 'NITK Surathkal', 'Computer Science and Engineering', '8.23', '10', '26')
(8528, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '650', '1450', '4.5', '116', 'MU', 'Computer Science', '7.3', '100', '0')
(8529, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '800', '640', '1440', '4.5', '108', 'MU', 'Electronics Engg.', '0', '0', '0')
(8530, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '580', '1380', '3', '112', 'JNTU', 'Computer Science', '7.7379999999999995', '100', '0')
(8531, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Information Security', 'Fall ', '2012', '790', '660', '1450', '4', '115', 'Cochin University of Science and Technology', 'Electronics & Communication', '6.659999999999999', '100', '0')
(8532, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '610', '1410', '4.5', '115', 'BITS Pilani', 'EEE', '0', '0', '0')
(8533, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '170', '152', '322', '3.5', '108', 'NSIT', 'ECE', '7.464', '100', '36')
(8534, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '650', '1450', '4', '118', 'BITS Pilani', 'Information Systems', '8.81', '10', '0')
(8535, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Spring ', '2015', '154', '149', '303', '3.5', '100', 'MSRIT', 'Electronics and Communication', '9.35', '10', '0')
(8536, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2013', '164', '157', '321', '5', '113', 'NIT Rourkela', 'Civil Engineering', '8.23', '10', '0')
(8537, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'CS/ EE', 'Fall ', '2011', '730', '670', '1400', '4.5', '116', 'VTU', 'ECE', '7.2', '100', '0')
(8538, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2015', '162', '153', '315', '4', '101', 'NIT', 'Electronics and Telecommunication Engineering', '9.59', '10', '22')
(8539, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2010', '800', '580', '1380', '3.5', 'None', 'Anna University', 'Electronics and Communication', '0', '0', '0')
(8540, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2011', '800', '690', '1490', '4.5', '110', 'University of Pune', 'Mechanical Engineering', '10.2', '100', '0')
(8541, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '164', '164', '328', '4', '119', 'BITS Pilani', 'CS and Physics', '7.97', '10', '0')
(8542, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Human Computer Interaction', 'Fall ', '2009', '720', '540', '1260', '3.5', '113', 'VTU', 'Computer Science', '6.8', '100', '0')
(8543, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '450', '1250', '4', '114', 'None', 'Computer Science', '9.57', '10', '0')
(8544, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '560', '1360', '3.5', '116', 'Supelec (France)', 'Electrical Engineering', '3.5', '4', '0')
(8545, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Human Computer Interaction', 'Fall', 'None', '165', '148', '313', '4.5', '112', 'None', 'Computer Science', '8.3', '10', '0')
(8546, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '164', '329', '4', '111', 'Anna University', 'Computer Science and Engineering', '9.3', '10', '0')
(8547, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2011', '770', '570', '1340', '3', '105', 'None', '0', '0', '0', '0')
(8548, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '660', '1420', '4', '102', 'JNTU', 'Computer Science and Engineering', '7.1', '100', '0')
(8549, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '800', '690', '1490', '4', '115', 'R V College of Engineering', 'Electrical and Electronics Engineering', '7.2', '100', '0')
(8550, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2013', '161', '157', '318', '4', '111', 'MU', 'Electronics and Telecommunication', '7.6', '100', '0')
(8551, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '700', '1500', '4.5', '119', 'R V College of Engineering', 'CSE', '9.85', '10', '0')
(8552, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2008', '800', '540', '1340', '6', '300', 'University of Mumbai', 'Mechanical Engineering', '7.6', '100', '0')
(8553, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '660', '1430', '4', '112', 'VESIT', 'Information Technology', '6.9', '100', '0')
(8554, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Robotics', 'Fall ', '2011', '800', '630', '1430', '5', '112', 'NITC', 'ME', '0', '0', '0')
(8555, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '660', '1460', '3.5', '117', 'BITS Goa', 'Computer Science(B.E) & Bio (Msc)', '8.58', '10', '0')
(8556, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '165', '157', '322', '4', '322', 'MU', 'it', '8.1', '100', '33')
(8557, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science/ Electronics and Communication', 'Fall ', '2016', '160', '160', '320', '3.5', '115', 'University of Pune', 'Electronics and Telecommunication', '7.2', '100', '24')
(8558, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computational Science', 'Fall ', '2011', '780', '720', '1500', '4', '116', 'IGIT', 'Mechanical', '7', '100', '0')
(8559, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '800', '720', '1520', '5.5', 'None', 'Anna University', 'Mech', '9.5', '10', '0')
(8560, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2011', '790', '670', '1460', '5', '118', 'Madras Institute of Technology', 'Electronics and Instrumentation', '8.9', '10', '0')
(8561, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2014', '162', '151', '313', '4', '108', 'Naval Polytechnical Academy', 'Weapons Systems Engineering and Operations', '9.15', '100', '0')
(8562, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '590', '1380', '3', '107', 'Anna University', 'INFORMATION TECHNOLOGY', '8.2', '100', '0')
(8563, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '610', '1370', '4', '107', 'PSG College of Technology', 'Information Technology', '8.76', '10', '0')
(8564, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Human Computer Interaction', 'Fall ', '2012', '169', '155', '324', '4', '119', 'VIT', 'Computer Engineering', '8.2', '100', '0')
(8565, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '680', '1480', '4.5', '105', 'Jaypee Institute of Information Technology', 'Electronics and Communication', '9.1', '10', '0')
(8566, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Civil and Environmental Engg', 'Fall ', '2014', '167', '156', '323', '4', '114', 'VJTI', 'Civil Engineering', '7.7', '10', '0')
(8567, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '720', '1470', '3.5', '107', 'Sri Krishna College Of Engineering And Technology', 'computer science & engineering', '7.1', '100', '0')
(8568, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Financial Engineering', 'Spring ', '2011', '800', '540', '1340', '4', '105', 'None', '0', '7.4', '100', '0')
(8569, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '169', '154', '323', '4', '109', 'Jaypee Institute of Information Technology', 'Computer Science', '7.5', '10', '0')
(8570, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '710', '1490', '4', '119', 'Pune University', 'Information Technology', '6.6', '100', '0')
(8571, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Entertainment technology-Animations and graphics', 'Fall', 'None', '790', '560', '1350', '4', '106', 'NIT Calicut', 'Computer Science', '0.834', '100', '0')
(8572, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '640', '1440', '4.5', '111', 'MU', 'Computer Engineering', '6.8420000000000005', '100', '0')
(8573, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '750', '500', '1250', '3.5', '103', 'Maharishi Dayanand University', 'Computer Science & Engineering', '6.34', '100', '0')
(8574, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2011', '790', '490', '1280', '4', '106', 'College of Engineering and Technology', 'Biotechnology', '7.7', '100', '0')
(8575, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '720', '1520', '4', '114', 'SJCE', 'ELECTRONICS AND COMMUNICATION', '8.5', '100', '0')
(8576, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Human Computer Interaction', 'Fall ', '2012', '770', '700', '1470', '3.5', '116', 'SASTRA', 'Information and Communication Technology', '8.4', '10', '0')
(8577, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '159', '326', '5.5', '110', 'BNMIT', 'Electronics and communications', '8.61', '100', '0')
(8578, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2010', '790', '560', '1350', '3.5', '107', 'None', '0', '0', '0', '0')
(8579, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '480', '1280', '3', '92', 'MU', 'Electronics', '7.586', '100', '0')
(8580, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '166', '168', '334', '4', '117', 'None', '0', '9.3', '10', '0')
(8581, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '600', '1390', '3.5', 'None', 'SVCE', 'CS', '7.5', '100', '0')
(8582, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '800', '620', '1420', '4', '115', 'PICT', 'Information Technology', '6.2', '100', '0')
(8583, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Information Security', 'Fall ', '2015', '164', '167', '331', '5', 'None', 'Georgia Tech', 'Computer Science', '2', '4', '138')
(8584, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'computer science / MIS', 'Fall ', '2015', '168', '157', '325', '4', '107', 'BITS Goa', 'CS', '8.39', '10', '42')
(8585, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computational Science', 'Fall ', '2012', '800', '670', '1470', '4', '114', 'NIT Hamirpur', 'Mechanical Engineering', '8.68', '10', '0')
(8586, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '490', '1280', '4.5', '108', 'SSN College of Engineering', 'Electronics And Communication Engineering', '8.2', '100', '0')
(8587, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Chemical/Environmental Engg.', 'Fall ', '2014', '163', '163', '326', '4.5', '114', 'R V College of Engineering', 'Chem Engineering', '9.12', '10', '0')
(8588, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'EE / CS', 'Fall ', '2013', '800', '610', '1410', '4.5', '109', 'NIT Tirchy', 'Electronics & Comm. (ECE)', '9.1', '10', '0')
(8589, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '610', '1390', '5', '107', 'None', 'E&TC;', '3.92', '4', '0')
(8590, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Chemical Engineering', 'Fall ', '2013', '169', '162', '331', '5', '112', 'IIT Bombay', 'Chemical Engineering', '9.22', '10', '0')
(8591, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronic and Telecommunication Engineering', 'Fall ', '2012', '1430', '640', '2070', '3.5', '114', 'D J Sanghvi', 'EXTC', '8.14', '100', '0')
(8592, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '630', '1430', '4.5', '112', 'CEG', 'Computer Science', '9.21', '10', '0')
(8593, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '169', '154', '323', '3', '112', 'Zhejiang University', 'Digital Media Technology', '8.7', '100', '0')
(8594, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2015', '170', '155', '325', '5', '112', 'NITK Surathkal', 'Civil Engineering', '9.22', '10', '0')
(8595, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '750', '550', '1300', '3', '100', 'D J Sanghvi', 'EXTC', '7.9', '100', '0')
(8596, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '168', '157', '325', '4', '116', 'Sardar Patel College of Engineering', 'Electrical Engineering', '7.022', '100', '0')
(8597, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '164', '162', '326', '4', '116', 'R V College of Engineering', 'Information Science', '9.35', '10', '0')
(8598, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Construction Management', 'Fall ', '2014', '163', '157', '320', '3.5', '116', 'IIT Roorkee', 'Architecture & Planning', '7.714', '10', '0')
(8599, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '520', '1320', '3', '107', 'Thapar University', 'Computer Science', '9', '10', '0')
(8600, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Biological Sciences Biotechnology ', 'Fall ', '2014', '163', '157', '320', '4', '115', 'BITS Pilani', 'Biological Sciences and Chemical Engineering', '6.11', '10', '0')
(8601, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2014', '162', '160', '322', '4', '110', 'University of Pune', 'Civil', '7.373', '100', '6')
(8602, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '600', '1400', '4', 'None', 'IT BHU', 'Metallurgical Engineering', '7.74', '10', '0')
(8603, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '166', '164', '330', '4.5', '117', 'IT BHU', 'CSE', '8.17', '10', '0')
(8604, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2009', '800', '650', '1450', '4.5', '117', 'Nirma Institute of Technology', 'Information Technology', '8.88', '10', '0')
(8605, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '800', '570', '1370', '3.5', '107', 'CEG', 'ECE', '8.85', '10', '0')
(8606, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '167', '163', '330', '4.5', '118', 'R V College of Engineering', 'Information Science Engineering', '9.09', '10', '0')
(8607, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(8608, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '750', '550', '1300', '4', '114', 'Manipal Institue of Technology', 'Electronics and Communication Engineering', '9.8', '10', '0')
(8609, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical and computer science', 'Fall ', '2011', '800', '730', '1530', '4.5', '116', 'CEG', 'ECE', '9.7', '10', '0')
(8610, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2015', '170', '158', '328', '3.5', '111', 'YMCA', 'Electronics & Communication Engg', '9.225', '10', '7')
(8611, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '168', '154', '322', '4', '112', 'Manipal Institue of Technology', 'Mechanical & Manufacturing', '9.2', '10', '0')
(8612, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '170', '151', '321', '3.5', '100', 'IIT Roorkee', 'Mech and Industrial Engg', '7.4', '10', '10')
(8613, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '660', '1430', '4', '111', 'VIT Pune', 'Computer Engineering', '7.2', '100', '0')
(8614, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical and computer science', 'Fall ', '2011', '800', '660', '1460', '3.5', '104', 'CEG', 'ECE', '8.81', '10', '0')
(8615, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2012', '760', '630', '1390', '4', '108', 'K J Somaiya College of Engiineering', 'Electronics', '7', '100', '0')
(8616, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '161', '151', '312', '3', 'None', 'Bharathiar University', 'Electrical and Electronics', '8', '10', '84')
(8617, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '800', '680', '1480', '3.5', '101', 'D J Sanghvi', 'Computer Engineering', '7', '100', '0')
(8618, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Information Security', 'Fall ', '2013', '162', '158', '320', '4', '112', 'KU', 'Information Technology', '7.1', '10', '0')
(8619, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Civil and Environmental Engg', 'Fall ', '2014', '163', '158', '321', '4', '111', 'None', '0', '0', '0', '0')
(8620, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '168', '157', '325', '4', '113', 'CEG', 'ECE', '9.27', '10', '0')
(8621, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '164', '159', '323', '4', '109', 'MU', 'Electronics & Telecommunication', '6.888', '100', '0')
(8622, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '800', '550', '1350', '4', '114', 'WBUT', 'ECE', '9.04', '10', '0')
(8623, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '170', '158', '328', '4', '110', 'Sir MVIT', 'Computer Science and Engg', '8.35', '100', '0')
(8624, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '660', '1440', '4', '119', 'SSN College of Engineering', 'Computer science', '8.7', '10', '0')
(8625, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2013', '760', '630', '1390', '3.5', 'None', 'UPTU', '0', '6.9', '100', '0')
(8626, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '800', '650', '1450', '4', '115', 'University of Pune', 'Mechanical Engineering', '6.515000000000001', '100', '0')
(8627, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '670', '1470', '4', '108', 'VESIT', 'Electronics and Telecommunication', '7.053', '100', '0')
(8628, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '740', '1540', '5', '117', 'CEG', 'ECE', '9.3', '10', '0')
(8629, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2012', '800', '600', '1400', '3.5', '110', 'SSN College of Engineering', 'Computer Science', '6.88', '100', '0')
(8630, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '570', '1360', '3.5', '100', 'BITS Goa', 'B.E(Hons) Computer Science & M.Sc(Hons) Economics', '8.47', '10', '0')
(8631, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Information Security', 'Fall ', '2012', '800', '640', '1440', '4.5', '116', 'M.U.', 'Infotech', '6.45', '100', '0')
(8632, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '170', '163', '333', '4', '109', 'BITS Pilani', 'Electrical and Electronics', '8.9', '10', '0')
(8633, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '750', '600', '1350', '3.5', '104', 'SSN College of Engineering', 'CSE', '8.75', '100', '0')
(8634, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '169', '168', '337', '4', '111', 'None', '0', '0', '0', '0')
(8635, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '800', '600', '1400', '4.5', '114', 'BITS Pilani', 'Electrical and Electronics', '8', '10', '0')
(8636, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2011', '800', '610', '1410', '3.5', '106', 'R V College of Engineering', 'Computer Science', '7.7700000000000005', '100', '0')
(8637, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '153', '315', '3.5', '102', 'SSN College of Engineering', 'Computer Science and Enginnering', '8.66', '100', '0')
(8638, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '650', '1450', '4.5', '118', 'Anna University', 'IT', '8', '100', '0')
(8639, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '440', '1240', '3', '105', 'Sri Jayachamarajendra College of Engineering', 'ELECTRONICS AND COMMUNICATION', '9.82', '10', '0')
(8640, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '590', '1370', '4', '113', 'BITS Pilani', 'Computer Science', '9.36', '10', '0')
(8641, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '520', '1280', '3.5', '103', 'CEG', 'Computer Science', '9.01', '10', '0')
(8642, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '620', '1420', '4', '112', 'PSG College of Technology', 'Information Technology', '9.05', '10', '0')
(8643, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2007', '800', '390', '1190', '4', '263', 'Nirma Institute of Technology', 'Civil Engineering', '8.65', '10', '0')
(8644, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Information Security', 'Fall ', '2013', '163', '151', '314', '4', '108', 'VIT', 'EEE', '8.53', '10', '0')
(8645, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '570', '1360', '3.5', '100', 'PICT', 'IT', '6', '100', '0')
(8646, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '470', '1250', '3.5', '106', 'D J Sanghvi', 'Electronics', '7.518000000000001', '100', '0')
(8647, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '790', '630', '1420', '4', '108', 'B N M Institute of Technology', 'ECE', '8.765', '100', '0')
(8648, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Aerospace Engineering', 'Fall', 'None', '156', '162', '318', 'None', '115', 'Universidad Simon Bolivar', 'Computer Science', '4.6', '5', '0')
(8649, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '15', '168', '158', '326', '4', '109', 'IIT Guwahati', 'ECE', '9.47', '10', '8')
(8650, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '550', '1350', '4', '107', 'TSEC', 'Computer Engineering', '7.4', '100', '0')
(8651, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '710', '550', '1260', '4.5', '108', 'ITESM', 'CS', '8.6', '100', '0')
(8652, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '151', '312', '3', 'None', 'University of madras/ Vellammal Engineering College', 'Computer science and Engineering', '7.3', '100', '0')
(8653, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '168', '160', '328', '4.5', '106', 'Manipal Institue of Technology', 'Computer science engineering', '8.8', '10', '0')
(8654, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '740', '600', '1340', '3.5', '117', 'Netaji Subhas Institute of Technology', 'Information Technology', '7.67', '100', '0')
(8655, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2015', '166', '149', '315', '4', '107', 'VESIT', 'Electronics', '7.825', '100', '0')
(8656, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '170', '155', '325', '4', '112', 'BITS Pilani', 'Electrical and Electronics', '9.13', '10', '0')
(8657, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '800', '630', '1430', '4', '113', 'University of Mumbai', 'Electronics and Telecommunication', '7.3', '100', '0')
(8658, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '670', '1470', '4', '110', 'BITS Pilani', 'Computer Science and Engineering', '6.93', '10', '0')
(8659, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'CS', 'Fall ', '2013', '166', '162', '328', '4', '117', 'BITS Pilani', 'Computer Science', '8.52', '10', '0')
(8660, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '570', '1350', '4', '113', 'National University of Singapore', 'ECE', '4.42', '5', '0')
(8661, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Human Computer Interaction', 'Fall ', '2012', '164', '162', '326', '4', '113', 'Manipal Institue of Technology', 'IT', '7.24', '10', '0')
(8662, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '161', '328', '3', '103', 'COEP', 'Instrumentation and Control', '9.38', '10', '12')
(8663, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '630', '1430', '4', '113', 'NIT Karnataka', 'Computer Science', '7.75', '10', '0')
(8664, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Financial Engineering', 'Fall ', '2006', '800', '680', '1480', '4.5', '280', 'COEP', 'E & TC', '0', '0', '0')
(8665, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '167', '156', '323', '4.5', '115', 'BITS Hyderabad', 'Computer Science', '8.55', '10', '30')
(8666, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '680', '1480', '4', '101', 'University of Mumbai', 'Electronics Engineering', '6.6819999999999995', '100', '0')
(8667, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '770', '660', '1430', '3.5', '116', 'Mahatma Gandhi University Kerala', 'Electronics & Communication Engineering', '6.8', '100', '0')
(8668, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '590', '1390', '4.5', '117', 'VTU', 'Information Science', '7.9', '100', '0')
(8669, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '770', '660', '1430', '3', '111', 'None', 'Electrical and Electronics Engineering', '8.73', '10', '0')
(8670, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '800', '720', '1520', '4.5', '120', 'R V College of Engineering', 'ECE', '7.720000000000001', '100', '0')
(8671, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2011', '680', '520', '1200', '3.5', '101', 'Maulana Azad National Institute of Technology', 'Bioinformatics', '8.04', '10', '0')
(8672, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '168', '158', '326', '4', '112', 'VIT University', 'EEE', '8.9', '10', '0')
(8673, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '610', '1400', '4', '114', 'PICT', 'Computer Engineering', '3.5', '4', '0')
(8674, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '170', '159', '329', '3', '112', 'IIT Kanpur', 'EE', '9', '10', '0')
(8675, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '1334', '530', '1864', '4', '113', 'JSS Noida', 'Computer Science and Engineering', '7.32', '100', '0')
(8676, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall', 'None', '168', '160', '328', '4.5', '119', 'None', 'ECE', '0.9800000000000001', '100', '24')
(8677, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '700', '1500', '4.5', '115', 'MU', 'electronics engineering', '7', '100', '0')
(8678, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Human Computer Interaction', 'Fall ', '2012', '159', '161', '320', '4', '116', 'R V College of Engineering', 'Information Science', '7.6', '100', '0')
(8679, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '800', '720', '1520', '4.5', 'None', 'MU', 'Computer Engineering', '7.1', '100', '0')
(8680, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', 'None', 'None', '0', 'None', 'None', 'None', 'Computer Science', '0', '0', '12')
(8681, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '800', '560', '1360', '3.5', '108', 'VTU', 'E&C;', '8.26', '100', '0')
(8682, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '760', '670', '1430', '5.5', '287', 'University of Mumbai', 'Computer Science', '6.6', '100', '0')
(8683, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '730', '1530', '4', '120', 'Random Anna University Affiliated College', 'Computer Science', '8.2', '10', '0')
(8684, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '700', '1500', 'None', '110', 'BITS Pilani', 'Computer Science', '7.52', '10', '0')
(8685, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '700', '1500', '3', '116', 'VTU', 'electronics & communication', '8.2', '100', '0')
(8686, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '161', '327', '3', '113', 'NIT Nagpur', 'Computer Science', '9.49', '10', '0')
(8687, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2011', '800', '690', '1490', '5', '116', 'Madras Institute of Technology', 'Aerospace Engineering', '8.3', '10', '0')
(8688, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '167', '162', '329', '5', 'None', 'Madras Institute of Technology', 'Computer Science', '0.8800000000000001', '100', '36')
(8689, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '167', '152', '319', '4', '101', 'BITS Goa', 'Computer Science', '8.76', '10', '0')
(8690, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Financial Engineering', 'Fall ', '2014', '170', '159', '329', '3.5', '103', 'PEC University of Technology', 'Electronics Engineering', '7.1', '10', '0')
(8691, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '710', '1500', '4.5', 'None', 'D J Sanghvi', 'IT', '6.7', '100', '0')
(8692, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '750', '620', '1370', '4.5', '100', 'VESIT', 'Electronics and Telecomm.', '7.8', '100', '0')
(8693, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '169', '152', '321', '4', '115', 'IIT Roorkee', 'Industrial Engineering-B.Tech', '0', '0', '0')
(8694, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '169', '167', '336', '4', '116', 'IIITDM Kancheepuram', 'Computer Engineering', '8.96', '10', '0')
(8695, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '780', '600', '1380', '4.5', '116', 'SSN College of Engineering', 'Computer Science and Engineering', '8.41', '10', '0')
(8696, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '170', '160', '330', '4.5', '110', 'IIITDM Kancheepuram', 'Eledctronics Design and Manufacturing', '9.25', '10', '18')
(8697, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Industrial Design', 'Fall ', '2014', '168', '158', '326', '4.5', '105', 'IIT Roorkee', 'Mechanical Engineering', '6.8', '10', '0')
(8698, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '730', '560', '1290', '4', '108', 'JNTU', 'CSE', '7.6', '100', '0')
(8699, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '800', '650', '1450', '4', 'None', 'Netaji Subhas Institute of Technology', 'Instrumentation and Control Engg', '7.827', '100', '0')
(8700, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical and computer science', 'Fall ', '2011', '800', '540', '1340', '3', '107', 'University of Mumbai', 'Electronics', '7.308', '100', '0')
(8701, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '170', '159', '329', '4', '117', 'SSN College of Engineering', 'CSE', '8.1', '100', '0')
(8702, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '168', '161', '329', '3.5', '117', 'MU', 'Production Engineering', '7.4799999999999995', '100', '0')
(8703, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Networking', 'Fall ', '2014', '165', '155', '320', '4', 'None', 'Manipal Institue of Technology', 'Electronics', '8.7', '10', '0')
(8704, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2012', '780', '600', '1380', '4', '102', 'SSN College of Engineering', 'CSE', '8.02', '100', '0')
(8705, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '800', '610', '1410', '4', '115', 'SSN College of Engineering', 'ECE', '8.02', '100', '0')
(8706, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '790', '420', '1210', '4.5', '108', 'Maharashtra Institute of Technology', 'Mechanical', '6.5329999999999995', '100', '0')
(8707, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '170', '159', '329', '4', '112', 'Model Engineering College', 'Computer Science and Engineering', '7.63', '100', '0')
(8708, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '670', '1470', '5', '116', 'BITS Pilani', 'Computer Science', '7.9', '10', '0')
(8709, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '166', '334', '4', '113', 'RGPV', 'Computer Science', '7.57', '100', '0')
(8710, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Biological Sciences Biotechnology ', 'Fall ', '2013', '155', '146', '301', '2.5', '105', 'R V College of Engineering', 'Biotechnology', '8.57', '10', '0')
(8711, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '170', '155', '325', '4.5', '105', 'Delhi College Of Engineeing', 'Electronics and Communication', '6.75', '100', '0')
(8712, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2011', '800', '590', '1390', '3.5', '113', 'Sardar Patel College of Engineering', 'Electronics Engineering 2009 Batch (old syllabus)', '7.37', '100', '0')
(8713, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '690', '1490', '4.5', '114', 'IIT Kharagpur', 'Elctronics and Communication', '9.35', '10', '0')
(8714, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '20')
(8715, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '164', '155', '319', '4', '112', 'BITS Goa', 'Electronics and Instrumentation', '9.313', '10', '0')
(8716, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '166', '158', '324', '3.5', '114', 'Maharaja Agrasen Institute Of Technology', 'ECE', '7.26', '100', '2')
(8717, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'EE / CS', 'Fall ', '2013', '167', '159', '326', '3.5', '109', 'Pune University', 'Electronics and Telecommunications', '7.878', '100', '36')
(8718, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Operations Research', 'Fall ', '2012', '166', '161', '327', '4.5', '110', 'IIT Madras', 'Mechanical', '6.68', '10', '0')
(8719, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '650', '1450', '4', '109', 'Dhirubhai Ambani Institute of Information & Communication Technology', 'Information & Communication Technology', '9.35', '10', '0')
(8720, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall', 'None', '165', '155', '320', '3.5', '118', 'NITK Surathkal', 'Electronics and communication', '9.01', '10', '0')
(8721, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Information Security', 'Fall ', '2014', '170', '155', '325', '3.5', '109', 'Institute of Engineering and Technology Lucknow', 'Computer science', '7.44', '100', '0')
(8722, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '750', '640', '1390', '4', '267', 'SIES Graduate School of Technology', 'COMPUTER', '6', '100', '0')
(8723, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2009', '750', '570', '1320', '3', '102', 'Jaypee Institute of Information Technology', 'CSE/IT', '6.62', '10', '0')
(8724, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '167', '157', '324', '5', '113', 'VIT', 'Electrical and Electronics Engineering', '8.65', '10', '1')
(8725, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '770', '520', '1290', '3.5', '107', 'R V College of Engineering', 'Electronics and communication', '8.4', '100', '0')
(8726, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2012', '155', '149', '304', '3.5', '89', 'VTU', 'Biotechnology', '7.1', '100', '0')
(8727, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2013', '161', '155', '316', '4', '106', 'NIT Surat', 'Civil Engineering', '8.31', '10', '0')
(8728, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '760', '640', '1400', '3.5', '113', 'MU', 'Elec and Telecom', '6.709999999999999', '100', '0')
(8729, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '650', '1450', '4', '106', 'IIT Madras', 'Electrical Engineering', '9.13', '10', '0')
(8730, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2008', '780', '640', '1420', '4.5', '102', 'Anna University', 'CSE', '8.1', '100', '0')
(8731, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '168', '154', '322', '3.5', '111', 'Netaji Subhas Institute of Technology', 'Electronics and Communication', '7.290000000000001', '100', '0')
(8732, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Human Computer Interaction', 'Fall ', '2014', '160', '161', '321', '4', '113', 'KSRCT Anna university', 'Biotechnology', '8.6', '100', '0')
(8733, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2011', '710', '420', '1130', '3.5', '106', 'Padmashree Dr D Y Patil University', 'Dept. of Biotechnology and Bioinformatics', '6.81', '100', '0')
(8734, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2012', '710', '660', '1370', '4.5', '111', 'VIT University', 'Bioinformatics', '8.83', '10', '0')
(8735, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '168', '157', '325', '4', '110', 'BITS Pilani', 'Electrical and Electronics', '8.86', '10', '0')
(8736, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '164', '161', '325', '4', '109', 'BPUT', 'Electrical Engineering', '9.03', '10', '0')
(8737, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '170', '161', '331', '5', '113', 'Manipal Institue of Technology', 'CSE', '7.73', '10', '31')
(8738, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '630', '1400', '3', '108', 'MIT', 'CSE', '9', '10', '0')
(8739, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '730', '1530', '4', '117', 'SSN College of Engineering', 'Electronics & Communications', '8.2', '100', '0')
(8740, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '590', '1390', '3.5', '107', 'Thapar University', 'Computer Engineering', '8.15', '10', '0')
(8741, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '164', '158', '322', '3.5', '111', 'GGSIPU', 'ECE', '7.922', '100', '0')
(8742, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'EE / CS', 'Fall ', '2011', '800', '670', '1470', '4', '111', 'IIT Bombay', 'EE', '9.69', '10', '0')
(8743, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '162', '158', '320', '4', '110', 'BITS Pilani', 'CS', '9.18', '10', '0')
(8744, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2012', '800', '600', '1400', '4', '110', 'COEP', 'Mechanical', '6.97', '10', '0')
(8745, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '800', '630', '1430', '4', '115', 'VTU', 'ECE', '7.7', '100', '0')
(8746, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2015', '167', '158', '325', '4', '115', 'Pune University', 'Electronics', '9.7', '10', '0')
(8747, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '800', '560', '1360', '3.5', '108', 'R V College of Engineering', 'Electronics and Communication', '9.54', '10', '0')
(8748, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '650', '1450', '4', '112', 'NITK Surathkal', 'Computer Science', '8.82', '10', '0')
(8749, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '770', '520', '1290', '3', '104', 'PSG College of Technology', 'EEE', '9.12', '10', '0')
(8750, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Textile Science & Technology', 'Fall ', '2012', '740', '300', '1040', '2', 'None', 'Osmania University', 'Textile Technology', '9.02', '10', '0')
(8751, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Operations Research', 'Spring ', '2012', '790', '430', '1220', '4', '107', 'Anna University', 'ECE', '8.8', '100', '0')
(8752, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '165', '332', '4.5', '113', 'University of Pune', 'Electronics and Telecommunication', '6.333', '100', '0')
(8753, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2014', '164', '161', '325', '4', '116', 'K J Somaiya College of Engiineering', 'Electronics and Telecommunication', '6.548', '100', '0')
(8754, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '166', '156', '322', '4', '106', 'IIT', 'EE', '9.1', '10', '48')
(8755, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '610', '1410', '4', '111', 'MU', 'EXTC', '7', '100', '0')
(8756, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '600', '1400', '4', '106', 'Govt. College of Technology Coimbatore (Anna University)', 'Computer Science and Engineering', '8.6', '10', '0')
(8757, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '750', '690', '1440', '4.5', '113', 'VTU', 'ECE', '8.77', '10', '0')
(8758, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '800', '630', '1430', '4', '109', 'NITK Surathkal', 'Mechanical Engg', '8.4', '10', '0')
(8759, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '165', '151', '316', '3.5', '110', 'Manipal Institue of Technology', 'Electronics and Communication Engineering', '9.6', '10', '0')
(8760, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '590', '1390', '4', '106', 'None', '0', '8.7', '10', '0')
(8761, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '680', '1480', '3.5', '114', 'Jabalpur Engineering College (Govt.)', 'Information Technology', '7.15', '100', '0')
(8762, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '170', '162', '332', '3.5', '109', 'Delhi College Of Engineeing', 'Mechanical', '7.901999999999999', '100', '0')
(8763, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '560', '1360', '4', '111', 'DCE', 'EC', '8', '100', '0')
(8764, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Information Security', 'Fall ', '2013', '160', '168', '328', '4', '110', 'VIT', 'CS', '8.1', '10', '0')
(8765, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Information Security', 'Fall ', '2011', '800', '560', '1360', '4', '108', 'MU', 'Computer', '5.87', '100', '0')
(8766, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '500', '1290', '3', '105', 'VJTI', 'IT', '8.4', '10', '0')
(8767, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '163', '330', '4', '111', 'NIT Surathkal', 'ECE', '8.15', '10', '0')
(8768, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '163', '160', '323', '4', '109', 'Amity School of Engineering and Technology', 'Computer Science and Engineering', '7.56', '10', '0')
(8769, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Engineering/Comp Science', 'Fall ', '2014', '168', '159', '327', '4', '114', 'RAIT', 'INSTRUMENTATION', '7.7', '100', '0')
(8770, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2012', '800', '480', '1280', '4', '109', 'TSEC', 'Chem Engg', '7.2', '100', '0')
(8771, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '169', '157', '326', '4.5', '118', 'VIT University', 'ECE', '9.28', '10', '2')
(8772, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Engineering/Comp Science', 'Fall ', '2012', '800', '630', '1430', '4', '110', 'University of Pune', 'E&TC;', '3.95', '4', '0')
(8773, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Information Security', 'Fall ', '2012', '800', '570', '1370', '3.5', '113', 'VIT', 'Computer Science and Engineering', '8.61', '10', '0')
(8774, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '790', '560', '1350', '4', '4', 'CEG', 'Manufacturing', '8.61', '10', '0')
(8775, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'environmental engineering', 'Fall ', '2013', '166', '161', '327', '4', '111', 'D J Sanghvi', 'Chemical Engineering', '6', '10', '0')
(8776, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Mathematics', 'Fall ', '2014', '169', '156', '325', '4', '108', 'MNNIT', 'Electronics', '8.93', '10', '24')
(8777, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'HCI / CS', 'Fall', 'None', '166', '160', '326', '4', '114', 'BMSCE', 'Electronics and Communication Engineering', '9.24', '10', '0')
(8778, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2013', '165', '146', '311', '3', '101', 'MANIT (NIT) Bhopal', 'Bioinformatics', '7.13', '10', '25')
(8779, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '570', '1370', '4.5', '117', 'IIT Bombay', 'Computer Science', '7.84', '10', '0')
(8780, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2015', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(8781, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '790', '690', '1480', '3.5', 'None', 'University of Texas at Austin', 'ECE', '3.64', '4', '0')
(8782, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '640', '1410', '3.5', 'None', 'VIT', 'Information Technology', '9.25', '10', '0')
(8783, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '167', '165', '332', '4', '118', 'MU', 'Computer Engineering', '6.76', '100', '0')
(8784, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '166', '169', '335', '4', '113', 'IIT Guwahati', 'ECE', '0.837', '100', '0')
(8785, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '157', '320', '3', '106', 'Jaypee Institute of Information Technology', 'CS', '7.4', '10', '0')
(8786, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Human Computer Interaction', 'Fall ', '2012', '750', '630', '1380', 'None', '114', 'PESIT', 'Information Science', '8.1', '10', '0')
(8787, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '800', '710', '1510', '4', '115', 'Guru Gobind Singh Indraprashta University', 'Computer Science', '7.55', '100', '0')
(8788, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '800', '660', '1460', '4.5', '118', 'MU', 'Electronics and Telecommunication', '8.065999999999999', '100', '0')
(8789, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '800', '570', '1370', '4', '108', 'VIT University', 'EE', '8.7', '10', '0')
(8790, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '163', '155', '318', '4', '116', 'MSRIT', 'Electronics and Communication', '9.22', '10', '0')
(8791, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Human Computer Interaction', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'IIT Roorkee', 'Architecture', '8.2', '10', '0')
(8792, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '170', '154', '324', '4.5', '113', 'UPTU', 'CSE', '7.87', '100', '0')
(8793, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Information Security', 'Fall ', '2012', '770', '670', '1440', '3', '113', 'SGSITS', 'Information Technology', '7.56', '100', '0')
(8794, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '800', '730', '1530', '5', '119', 'MU', 'Electronics and Telecommunication', '7.19', '100', '0')
(8795, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '170', '154', '324', '4', '110', 'Netaji Subhas Institute of Technology', 'Computer Engineering', '7.3', '100', '0')
(8796, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '165', '160', '325', '4', '117', 'SJCE', 'E&C;', '9.5', '10', '0')
(8797, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Spring ', '2016', '170', '162', '332', '4', '110', 'BITS Pilani', 'Electronics and Communication', '9.43', '10', '3')
(8798, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Industrial Engg/Robotics', 'Fall ', '2014', '170', '154', '324', '4', '110', 'IIT Bombay', 'Mechanical Engineering', '7.32', '10', '22')
(8799, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2013', '164', '151', '315', '3.5', '112', 'SRM', 'Civil Engineering', '9.66', '10', '0')
(8800, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '710', '1490', '4', '111', 'Thadomal Shahani Engineering College', 'Computer Engineering', '6.7', '100', '0')
(8801, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '610', '1390', '4', '108', 'PESIT', 'Computer Science', '6.956', '100', '0')
(8802, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '620', '1420', '4', '106', 'COEP', 'Computer Engineering & Information Technology', '8.27', '10', '0')
(8803, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Embedded systems', 'Fall ', '2013', '166', '158', '324', '3.5', '110', 'Manipal Institue of Technology', 'Electronics and Communication', '8.8', '10', '0')
(8804, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '640', '1420', '1420', '116', 'IIT Roorkee', 'ECE', '8.026', '10', '0')
(8805, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '800', '560', '1360', '3', '98', 'D j Sanghvi', 'EXTC', '7.1', '100', '0')
(8806, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Information Security', 'Fall ', '2011', '800', '690', '1490', '4.5', '115', 'DA-IICT', 'Information and Communication Technology', '8.29', '10', '0')
(8807, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '170', '163', '333', '3.5', '113', 'NITK Surathkal', 'ECE', '0.817', '100', '0')
(8808, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Information Security', 'Fall ', '2012', '158', '151', '309', '4.5', '110', 'Nagpur University', 'Electronics and Communication', '7.6', '100', '0')
(8809, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Civil and Environmental Engg', 'Fall', 'None', '169', '165', '334', '4.5', '114', 'IIT Bombay', 'Chemical Engineering', '7.43', '10', '0')
(8810, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2010', '800', '590', '1390', '4', '112', 'University of Mumbai', 'Chemical Engineering', '0', '0', '0')
(8811, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '169', '157', '326', '4', '116', 'BITS Pilani', 'EEE', '8.83', '10', '0')
(8812, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '570', '1370', '4', '112', 'NIT Tirchy', 'CS', '8.81', '10', '0')
(8813, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '640', '1440', '5', '113', 'Delhi College Of Engineeing', 'Computer Engineerring', '6.3', '100', '0')
(8814, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(8815, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2011', '790', '470', '1260', '4.5', '110', 'VTU', 'biotechnology', '7.9', '10', '0')
(8816, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2013', '157', '150', '307', '3', '106', 'DY Patil University Navi Mumbai', 'Bioinformatics', '7.1', '100', '0')
(8817, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '165', '155', '320', '4.5', '110', 'SASTRA', 'ECE', '9.1', '10', '0')
(8818, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer vision/image-video processing', 'Fall ', '2013', '165', '160', '325', '5', '114', 'SPCE', 'IT', '6.1', '100', '0')
(8819, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '790', '640', '1430', '4', '109', 'K J Somaiya College of Engiineering', 'Mechanical Engineering', '6', '100', '0')
(8820, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Biotechnology/bio-engineering', 'Fall', 'None', '780', '530', '1310', '3.5', '103', 'NIT Rourkela', 'Biotechnology', '8.8', '10', '0')
(8821, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '800', '500', '1300', '4.5', '283', 'IP University Delhi', 'CSE', '8.161', '100', '0')
(8822, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2008', '800', '600', '1400', '4', '112', 'University of Kerala', 'Mechanical', '7.3', '100', '0')
(8823, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Engineering', 'Fall', 'None', '153', '148', '301', '3.5', '101', 'VTU', 'Computer science and engineering', '7.206999999999999', '100', '0')
(8824, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '1300', 'None', '1300', 'None', '100', 'BITS Pilani', 'Electrical and electronics', '7.5', '10', '0')
(8825, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2015', '169', '166', '335', '3.5', '113', 'NIT', 'Civil Engineering', '9.22', '10', '0')
(8826, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '168', '154', '322', '4', '110', 'Nagpur University', 'Electrical engineering', '7.44', '100', '0')
(8827, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2012', '800', '620', '1420', '1420', '105', 'RAIT', 'ECE', '7.2', '100', '0')
(8828, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '460', '1250', '3.5', '107', 'SSN College of Engineering', 'Electronics and Communication Engineering', '8.6', '100', '0')
(8829, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '160', '162', '322', '4', '114', 'R V College of Engineering', 'Computer Science and Engineering', '9.18', '10', '0')
(8830, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '730', '1520', '3.5', '109', 'VTU', 'CSE', '8.25', '100', '0')
(8831, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Operations Research', 'Fall ', '2012', '800', '550', '1350', '3.5', '109', 'MU', 'Computer', '7.5200000000000005', '100', '0')
(8832, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '169', '154', '323', '4.5', '111', 'MU', 'Electronics and telecommunication', '8', '100', '0')
(8833, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '770', '600', '1370', '5', 'None', 'Toronto', 'EE', '3.6', '4', '0')
(8834, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Operations Research', 'Fall ', '2012', '800', '480', '1280', '4', '115', 'IIT Madras', 'Electrical Engineering', '7.3', '10', '0')
(8835, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(8836, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '770', '690', '1460', '4.5', '116', 'None', 'Computer Science', '8.48', '10', '0')
(8837, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(8838, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '690', '1490', '5', '114', 'VTU', 'Electronics and Communication', '9.85', '10', '0')
(8839, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Bioinformatics', 'Fall', 'None', 'None', 'None', '0', '3', 'None', 'IIT BHU', 'Biomedical Engineering', '7.83', '10', '0')
(8840, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2011', '760', '350', '1110', '3.5', '96', 'VTU', 'Mechanical', '6.7', '100', '0')
(8841, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '166', '161', '327', '4.5', '107', 'MSRIT', 'Electronics and Communication Engineering', '9.22', '10', '0')
(8842, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '800', '690', '1490', '4', '113', 'Sri Jayachamarajendra College of Engineering', 'Electronics & Communication', '8.192', '100', '0')
(8843, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '770', '650', '1420', '4', '115', 'Anna University', 'computer science', '8', '100', '0')
(8844, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '750', '610', '1360', '3.5', '109', 'Velammal Engineering College', 'Computer Science and Engineering', '8.8', '10', '0')
(8845, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '165', '157', '322', '4.5', '118', 'University of Pune', 'CS', '6.8', '100', '0')
(8846, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '168', '155', '323', '3.5', '108', 'K J Somaiya College of Engiineering', 'Electronics and Telecommunication', '7.526000000000001', '100', '0')
(8847, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '159', '323', '5', '119', 'MVJ College of Engineering', 'Computer Science', '7.5200000000000005', '100', '0')
(8848, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2013', '170', '153', '323', '3.5', '104', 'DCE', '0', '7.4', '100', '0')
(8849, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '165', '330', '5.5', 'None', 'University of Cambridge', 'Computer Laboratory', '0', '0', '0')
(8850, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '750', '570', '1320', '3', '106', 'UA', 'Electronics And Communication', '7.57', '100', '0')
(8851, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2014', '159', '154', '313', '3.5', '107', 'KIIT', 'Civil Engineering', '7.85', '10', '1')
(8852, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Human Computer Interaction', 'Fall ', '2011', '800', '620', '1420', '4', '110', 'IIT Guwahati', 'Design', '8.04', '10', '0')
(8853, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '800', '740', '1540', '4.5', '293', 'D J Sanghvi', 'Computer Engg.', '7.2909999999999995', '100', '0')
(8854, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '164', '155', '319', '4', '109', 'R V College of Engineering', 'Computer Science and Engineering', '9.4', '10', '0')
(8855, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '165', '162', '327', '4', '111', 'NIT Calicut', 'ECE', '9.04', '10', '17')
(8856, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '168', '165', '333', '4', '117', 'BITS Pilani', 'Computer Science', '9.12', '10', '14')
(8857, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '780', '710', '1490', '4.5', '111', 'VJTI', 'Electronics', '9.1', '10', '0')
(8858, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '163', '157', '320', '5', '114', 'VTU', 'ECE', '7.374', '100', '0')
(8859, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '163', '163', '326', '4.5', '118', 'VTU', 'Telecommunication', '8.38', '10', '0')
(8860, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2009', '740', '510', '1250', '3.5', '108', 'Amity University', 'Bioinformatics', '7.88', '10', '0')
(8861, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Urban Design', 'Fall ', '2015', '156', '155', '311', '4.5', '110', 'University of Mumbai', 'Sir J J College of Architecture', '7.4', '100', '36')
(8862, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '680', '1480', '5', '111', 'SSN College of Engineering', 'Electronics and Communication Engineering', '8.7', '100', '0')
(8863, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '166', '155', '321', '3.5', '113', 'YMCA', 'EIC', '8.17', '10', '0')
(8864, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '800', '510', '1310', '4', '112', 'BITS Pilani', '0', '9.91', '10', '0')
(8865, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '620', '1420', '4.5', '116', 'Jadavpur University', 'Electrical Engineering', '8.82', '10', '0')
(8866, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '164', '157', '321', '4', '111', 'SSN College of Engineering', 'ECE', '8.705', '10', '0')
(8867, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '166', '161', '327', '4', '117', 'University of Mumbai', 'Electronics and Telecom', '7.2', '100', '0')
(8868, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'HCI / CS', 'Fall ', '2014', '168', '149', '317', '3', 'None', 'IIIT Hyderabad', 'Computer Science', '7.87', '10', '0')
(8869, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'civil', 'Fall ', '2012', '163', '155', '318', '3.5', '107', 'Jadavpur University', 'construction engg', '8.56', '10', '0')
(8870, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '680', '1480', '5', '114', 'MU', 'Como Sc', '7.1', '100', '0')
(8871, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '165', '328', '4.5', '115', 'Anna University', 'CSE', '9.64', '100', '0')
(8872, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '156', '323', '4', '110', 'VIT', 'Electrical and Electronics', '8.51', '10', '0')
(8873, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Chemical Engineering', 'Fall ', '2013', '169', '157', '326', '3.5', 'None', 'M.N.I.T. JAIPUR', 'CHEMICAL ENGINEERING', '8.65', '10', '0')
(8874, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Human Computer Interaction', 'Fall ', '2010', '770', '560', '1330', '4.4', '116', 'UIIT HPU', '0', '6.7', '100', '0')
(8875, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '550', '1350', '4', '107', 'MU', 'EXTC', '7.1', '100', '0')
(8876, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Spring ', '2014', '169', '160', '329', '3.5', '114', 'Pune University', 'E&TC;', '6.447', '100', '0')
(8877, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'statistics', 'Fall ', '2015', '166', '165', '331', '3.5', '110', 'IIT Roorkee', 'Chemistry', '7.4', '10', '0')
(8878, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '169', '161', '330', '4.5', '117', 'None', 'Computer Science & Engineering', '8.92', '10', '0')
(8879, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Financial Engineering', 'Fall ', '2015', '170', '153', '323', '4', '113', 'Thadomal Shahani Engineering College', 'Information Technology', '6.651999999999999', '100', '25')
(8880, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '800', '530', '1330', '3.5', '108', 'Sri Jayachamarajendra College of Engineering', 'Electronics and Communication', '9.87', '10', '0')
(8881, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '580', '1370', '5.5', '115', 'VTU', 'Computer Science & Engineering', '7.8', '100', '0')
(8882, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Financial Engineering', 'Fall ', '2015', '170', '153', '323', '4', '114', 'Sardar Patel College of Engineering', 'Computer Science', '7', '100', '0')
(8883, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2013', '168', '152', '320', '4', 'None', 'Thiagarajar College of engineering', 'electrical and electronics', '9.53', '10', '0')
(8884, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '162', '160', '322', '4', '112', 'Bangalore University', 'electrical', '7', '100', '0')
(8885, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(8886, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '170', '157', '327', '4', '108', 'MU', 'Electronics and Telecommunication', '5.970000000000001', '100', '0')
(8887, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '730', '490', '1220', '4', '110', 'Jaypee Institute of Information Technology', 'CSE', '8.7', '10', '0')
(8888, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'CS', 'Fall ', '2013', '166', '164', '330', '5', '119', 'CoE Trivandrum', 'Electronics and Communication Engg', '8.5', '10', '0')
(8889, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '700', '430', '1130', '3', '91', 'Andal Alagar College of Engineering', 'EEE', '7.93', '100', '0')
(8890, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall', 'None', '780', '570', '1350', '3.5', '114', 'BITS Dubai', 'Mechanical Engineering', '9.64', '10', '0')
(8891, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '800', '720', '1520', '4', '118', 'Sardar Patel College of Engineering', 'Electrical Engineering', '6.8', '100', '0')
(8892, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '700', '1490', '4', '116', 'R V College of Engineering', 'electrical', '8.011', '100', '0')
(8893, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '670', '1460', '3.5', '114', 'NITK Surathkal', 'IT', '8.8', '10', '0')
(8894, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '170', '151', '321', '3', '104', 'BITS Goa', 'Mechanical', '8.32', '10', '0')
(8895, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall', 'None', '167', '155', '322', '4', '116', 'MU', 'EXTC', '7.7', '100', '0')
(8896, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'electronics', 'Fall ', '2012', '800', '680', '1480', '4', '101', 'University of Mumbai', 'Electronics', '8.044', '100', '0')
(8897, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '158', '323', '3.5', '113', 'NITK Surathkal', 'ECE', '8.4', '10', '0')
(8898, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '158', '152', '310', '4', '106', 'Sri Venkateswara College of Engineering', 'ECE', '7.9', '100', '0')
(8899, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Human Computer Interaction', 'Fall', 'None', '800', '660', '1460', '3.5', '110', 'University of Mumbai', 'Information Technology', '7.848000000000001', '100', '0')
(8900, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '630', '1430', '4', '106', 'NIT Jalandhar', 'Computer Science', '7.4', '100', '0')
(8901, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '740', '550', '1290', '4', '115', 'Anna University', 'ECE', '7.9', '100', '0')
(8902, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '770', '530', '1300', '4', '108', 'Anna University', 'ECE', '7.874', '100', '0')
(8903, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Robotics', 'Fall ', '2011', '800', '710', '1510', '4.5', '111', 'Coimbatore Insitute of Technology', 'Computer Science', '8.8', '10', '0')
(8904, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '170', '149', '319', '3', '103', 'International Institute of Information Technology Hyderabad', 'Computer Science and Engineering', '8.36', '10', '0')
(8905, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '166', '157', '323', '4', '114', 'PSG College of Technology', 'Electronics and Communication Engineering', '9.7', '10', '0')
(8906, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '800', '740', '1540', '5', '114', 'R V College of Engineering', 'EEE', '8.2', '100', '0')
(8907, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall', 'None', '163', '156', '319', '4', '109', 'MU', 'Electronics and telecommunication', '7.65', '100', '0')
(8908, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '167', '155', '322', 'None', '112', 'SASTRA', 'ECE', '0', '0', '0')
(8909, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '164', '161', '325', '5', '118', 'NIT Calicut', 'Electronics and Communication Engineering', '5.9', '10', '0')
(8910, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Finance', 'Fall ', '2011', '50', '34', '84', '4.5', '103', 'IIT Madras', 'Biotechnology', '7.37', '10', '0')
(8911, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'CS / MSIS / ITM', 'Fall ', '2014', '164', '155', '319', '3.5', '105', 'SMVDU Jammu', 'CSE', '8.73', '10', '39')
(8912, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '154', '315', '4', '120', 'PICT', 'Information Technology', '4.92', '5', '24')
(8913, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '159', '152', '311', 'None', 'None', 'MU', 'EXTC', '6.640000000000001', '100', '0')
(8914, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '680', '1440', '4', '114', 'VESIT', 'Electronics and Telecom', '7.6', '100', '0')
(8915, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '730', '690', '1420', '4', '109', 'SSN College of Engineering', 'EEE', '7.9', '100', '0')
(8916, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '640', '1440', '4', '110', 'BITS Pilani', 'Computer Science', '8.5', '10', '0')
(8917, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '157', '322', '4.5', '110', 'NIT Karnataka', 'Computer Science and Engineering', '8.32', '10', '0')
(8918, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '720', '560', '1280', '3.5', '108', 'Model Engineering College', 'Computer science', '7.5', '100', '0')
(8919, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Structural', 'Fall ', '2013', '164', '154', '318', '4', '104', 'NIT Srinagar', 'Civil Engineering', '9.603', '10', '0')
(8920, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '580', '1370', '4', '115', 'CEG', 'Computer Science', '8.3', '10', '0')
(8921, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '170', '164', '334', '4', '113', 'NIT Warangal', 'ECE', '8.64', '10', '0')
(8922, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall', 'None', '790', '700', '1490', '4.5', 'None', 'None', '0', '8', '100', '0')
(8923, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '640', '1430', '4.5', '115', 'MNM Jain Engineering College', 'CSE', '7.51', '100', '0')
(8924, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '770', '650', '1420', '4', '111', 'VESIT', 'Electronics and Tele communications', '7', '100', '0')
(8925, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '650', '1450', '4', '116', 'SRM', 'Information Technology', '9.8', '10', '0')
(8926, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '640', '1420', '4', '113', 'VIT Pune', 'Comp Engg', '8.83', '10', '0')
(8927, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall', 'None', '170', '157', '327', '4', '102', 'BITS Pilani', 'EEE', '9.94', '10', '0')
(8928, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '680', '1480', '5', '116', 'University of Mumbai', 'Electronics and Telecommunication', '7.0569999999999995', '100', '0')
(8929, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '170', '152', '322', 'None', '110', 'SASTRA', 'ECE', '8.1', '10', '24')
(8930, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '720', '1520', '5', '116', 'VJTI', 'Computer Engineering', '8.5', '10', '0')
(8931, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Mechanical Engineering', 'Fall', 'None', '790', '660', '1450', '4', '111', 'University of Pune', 'Mechanical Engineering', '6.3', '100', '0')
(8932, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'environmental engineering', 'Fall ', '2011', '800', '670', '1470', '4.5', '113', 'Delhi College Of Engineeing', 'Environmental Engineering', '7.454000000000001', '100', '0')
(8933, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '168', '145', '313', '3', '109', 'NITK Surathkal', 'ECE', '8.97', '10', '26')
(8934, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '750', '610', '1360', '3', '109', 'VJTI', 'Computer Engineering', '8.6', '10', '0')
(8935, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '470', '1240', '3.5', '106', 'BMSCE', 'Telecommunication', '7', '100', '0')
(8936, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering and Computer Science', 'Fall ', '2015', '168', '164', '332', '4', '119', 'University of Mumbai', 'Electronics and Telecommunication', '8.3', '100', '0')
(8937, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '163', '150', '313', '3.5', '100', 'R V College of Engineering', 'Mechanical', '9.19', '10', '0')
(8938, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '160', '154', '314', '3.5', '108', 'Sri Bhagawan Mahaveer Jain College of Engineering', 'Information Science', '7.3', '100', '0')
(8939, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '170', '150', '320', '3', '104', 'BITS Goa', 'Mechanical', '6.32', '10', '48')
(8940, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '166', '158', '324', '3.5', '105', 'Manipal Institue of Technology', 'Mechatronics', '7.1', '10', '0')
(8941, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '99', '91', '190', '4.5', '115', 'BITS Pilani', 'Electrical and Electronics', '8.6', '10', '0')
(8942, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '167', '158', '325', '4', '115', 'Maharaja Agrasen Institute Of Technology', 'CSE', '7.17', '100', '7')
(8943, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '166', '162', '328', '4', '117', 'None', 'EEE', '8.9', '10', '0')
(8944, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '163', '156', '319', '4', '113', 'MU', 'Computer Engineering', '6.7', '100', '0')
(8945, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '164', '155', '319', '3', '111', 'Amity University', 'Computer Science', '7.22', '10', '36')
(8946, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '168', '156', '324', '4', '112', 'NIT Allahabad', 'CSE', '9.13', '10', '0')
(8947, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Spring ', '2015', '167', '150', '317', '3', '102', 'COEP', 'Instrumentation & Control Engineering', '8.03', '10', '0')
(8948, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and electrical engineering', 'Fall ', '2014', '165', '150', '315', '3.5', '110', 'Vidyalankar Institute of Technology', 'Electronics', '7.2', '100', '0')
(8949, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '630', '1390', '3.5', '103', 'Rajiv Gandhi Technical University', 'Electronics and Communication', '7.3', '100', '0')
(8950, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '159', '156', '315', '4', '112', 'Cochin University of Science and Technology', 'INFORMATION TECHNOLOGY', '8.415000000000001', '100', '63')
(8951, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '158', '156', '314', '3', '109', 'MSRIT', 'Telecommunication', '8.52', '10', '0')
(8952, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '650', '1450', '4.5', 'None', 'Anna University', 'Production', '8.57', '10', '0')
(8953, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '800', '450', '1250', '4.5', '112', 'Dr. Ambedkar Institute of Technology', 'Computer Science', '7.5', '100', '0')
(8954, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '660', '1440', '4', '111', 'MU', 'Computer Enginnering', '6.9', '100', '0')
(8955, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '168', '151', '319', '3.5', '109', 'BITS Pilani', 'Mechanical', '7.99', '10', '0')
(8956, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2010', 'None', 'None', '0', 'None', 'None', 'VTU', 'Computer Science', '7.6', '100', '0')
(8957, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '158', '152', '310', '3.5', '98', 'Shri Ramdeobaba Engineering College', 'Industrial Engineering', '7.7', '100', '0')
(8958, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2013', '161', '154', '315', '4', '109', 'SRM', 'Civil Engineering', '8.95', '10', '0')
(8959, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '640', '1440', '3', '113', 'Galgotias College Of Engineering & Technology', 'CSE', '6.87', '100', '0')
(8960, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Materials Science & Engineering', 'Fall ', '2014', '166', '157', '323', '3.5', '111', 'IIT (BHU) Varanasi', 'Metallurgical Engineering', '8.37', '10', '0')
(8961, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '169', '152', '321', '3.5', '97', 'VIT', 'ECE', '8.93', '100', '0')
(8962, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '750', '540', '1290', '3', '105', 'University of Pune', 'Computer Engineering', '6.5', '100', '0')
(8963, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', 'None', 'None', '0', 'None', '117', 'Symbiosis Institute of Technology', 'Mechanical', '3.511', '4', '0')
(8964, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '800', '520', '1320', '4', '113', 'VTU', 'Electronics and Communication', '6.1', '100', '0')
(8965, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '770', '660', '1430', '3', '111', 'Motilal Nehru National Institute of Technology', 'ECE', '8.65', '10', '0')
(8966, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '790', '690', '1480', '4', '109', 'Sardar Patel College of Engineering', 'Electrical Engineering', '5.93', '100', '0')
(8967, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '710', '1500', '3.5', '107', 'COEP', 'Computers', '6.89', '10', '0')
(8968, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '166', '155', '321', 'None', '107', 'Thapar University', 'Computer Science', '7.44', '10', '0')
(8969, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'CS', 'Fall ', '2012', '800', '700', '1500', '4', 'None', 'University of Mumbai', 'Computer', '6.4', '100', '0')
(8970, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '780', '570', '1350', '4', '117', 'PESIT', 'Telecommunication Engineering', '8.68', '10', '0')
(8971, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '160', '322', '3', '109', 'Panjab University', 'Computer Science', '7.6', '100', '0')
(8972, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '640', '1440', '4.5', '114', 'IIT Roorkee', 'Electrical Engineering', '7.1', '10', '0')
(8973, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '163', '152', '315', '3.5', '111', 'Siddaganga Institue of Technology', 'Telecommunication Engineering', '9.17', '10', '0')
(8974, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '165', '150', '315', '3.5', '111', 'BITS Pilani', 'ENI', '8.42', '10', '0')
(8975, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '148', '309', '3', '106', 'University Vishweriah College of Engineering', 'Computer Science', '7.51', '100', '0')
(8976, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '800', '540', '1340', '4', '119', 'Anna University', 'IT', '7.4', '100', '0')
(8977, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '164', '157', '321', '3', '105', 'VTU', 'Electrical and Electronics', '7.3260000000000005', '100', '24')
(8978, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '152', '316', '3.5', '102', 'University of Pune', 'Information Technology', '7.144', '100', '0')
(8979, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '530', '1320', '3.5', '102', 'Sinhgad College of Engineering', 'Computer', '5.3', '100', '0')
(8980, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '161', '153', '314', '3.5', '108', 'PESIT', 'Electronics and Communication', '6.959999999999999', '100', '14')
(8981, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '550', '1350', '3.5', '104', 'D J Sanghvi', 'Information Technology', '7.4', '100', '0')
(8982, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall', 'None', '170', '153', '323', '4', '110', 'IIT', '0', '8.4', '10', '0')
(8983, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Information Science', 'Fall ', '2011', '680', '470', '1150', 'None', '102', 'Himachal Pradesh University/UIIT', 'Information Technology', '7.359999999999999', '100', '0')
(8984, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2015', '800', '650', '1450', '4', '115', 'BITS Goa', 'Electrical and Electronics Engineering', '8.2', '10', '32')
(8985, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '167', '157', '324', '3.5', '102', 'Sardar Vallabhbhai National Institute of Technology', 'Production Department', '7.66', '10', '34')
(8986, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '166', '156', '322', '3.5', '114', 'GITAM', 'CSE', '0.8039999999999999', '100', '0')
(8987, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '640', '1440', '4', '109', 'PSG College of Technology', 'ECE', '8.4', '10', '0')
(8988, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2008', '800', '520', '1320', '5', '287', 'D J Sanghvi', 'Computer Engineering', '6.2', '100', '0')
(8989, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '157', '321', '4', '106', 'MU', 'Computer Engg.', '6.8', '100', '0')
(8990, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '450', '1230', '3.5', 'None', 'Walchand College Of Engineering', 'Electronics', '7.6', '100', '0')
(8991, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2015', '164', '153', '317', '3.5', '104', 'COEP', 'Civil Engineering', '7.52', '10', '0')
(8992, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '590', '1390', '3.5', '107', 'Nagpur University', 'electronics', '6.9', '100', '0')
(8993, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '750', '590', '1340', '3', '107', 'JNTU', 'Electronics and Communication', '7.4', '100', '18')
(8994, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '580', '1380', '3.5', 'None', 'Guru Gobind Singh Indraprashta University', 'ECE', '7.659000000000001', '100', '0')
(8995, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(8996, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '168', '166', '334', '5', '116', 'IIT BHU', '0', '8.4', '10', '0')
(8997, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '550', '1330', '4', '100', 'DTU', 'IT', '7.1', '100', '0')
(8998, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '152', '317', '4', '99', 'CEG', 'Information Technology', '9.1', '10', '0')
(8999, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '800', '550', '1350', '5', '111', 'Osmania University', 'Mechanical Engineering', '8.3', '100', '0')
(9000, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '690', '1490', '4.5', '113', 'TCET MU', 'Computer Engineering', '6.9', '100', '0')
(9001, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2009', '770', '570', '1340', '4', '113', 'Cochin University of Science and Technology', 'Computer Science & Engineering', '6.8', '100', '0')
(9002, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2010', '800', '580', '1380', '3.5', '106', 'PICT', 'Computer Engg', '3.56', '4', '0')
(9003, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and computer engineering electrical engineering telecommunications engineering', 'Fall ', '2015', '170', '157', '327', '4.5', '114', 'Jamia Millia Islamia', 'Electronics and Communication', '8.89', '10', '3')
(9004, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '168', '153', '321', '4', '110', 'D J Sanghvi', 'Computer Engg', '6.9', '100', '21')
(9005, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '157', '320', '4.5', '117', 'Shiv Nadar University', 'Computer Science', '9.15', '10', '0')
(9006, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '640', '1440', '4', '107', 'VTU', 'Telecommunication', '7.7', '100', '0')
(9007, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '156', '319', 'None', 'None', 'Panjab University', 'Information Technology', '7.0200000000000005', '100', '0')
(9008, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '740', '510', '1250', '3.5', '100', 'PSG College of Technology', 'Computer Science and Engineering', '8.94', '10', '0')
(9009, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '168', '161', '329', '4', '110', 'BITS Pilani', 'El', '8.7', '10', '0')
(9010, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '168', '152', '320', '4', '108', 'MU', 'Computer Engineering', '6.947', '100', '12')
(9011, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '169', '162', '331', '4', '113', 'Visvesvaraya NIT Nagpur', 'Mechanical Engineeing', '7.94', '10', '0')
(9012, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '160', '148', '308', '3.5', '99', 'BIT Mesra', 'Electronics and Communication', '8.08', '100', '0')
(9013, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '154', '321', '3', '108', 'FRCRCE-Mumbai University', 'Information Technology', '6.720000000000001', '100', '0')
(9014, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '163', '156', '319', '3.5', '104', 'MU', 'Computers', '6.772', '100', '0')
(9015, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '168', '152', '320', '3.5', '106', 'Maharashtra Institute of Technology', 'electronics and telecommunication', '7', '100', '0')
(9016, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'International Affairs.', 'Fall ', '2013', '150', '148', '298', '4', '104', 'None', '0', '7.7', '100', '0')
(9017, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Chemical Engineering', 'Fall ', '2011', '800', '540', '1340', '4', '112', 'University school of chemical technology GGS Indraprastha University Delhi', '0', '7.9', '100', '0')
(9018, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '168', '158', '326', '4', '107', 'Veermata Jijabai Technological Institute', 'Electronics Engineering', '8.7', '10', '14')
(9019, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '148', '311', '4.5', '111', 'GITAM', 'CSE', '9.25', '10', '0')
(9020, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '159', '323', '5', '116', 'Amrita School of Engineering', 'Computer Science and Engineering', '8.6', '10', '0')
(9021, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '157', '319', '4', '115', 'BMSCE', 'CS', '9.3', '10', '24')
(9022, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Information Security', 'Fall ', '2014', '166', '156', '322', '4', '106', 'Thapar University', 'Computer Science', '7.1', '10', '24')
(9023, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '170', '163', '333', '4', '114', 'CoE Trivandrum', 'Computer Science', '7.64', '10', '0')
(9024, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2006', '7990', '650', '8640', '5', '297', 'MVSR', 'Mechanical Engg', '7.959999999999999', '100', '0')
(9025, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '156', '318', '3.5', '110', 'UPTU', 'Electronics', '6.473999999999999', '100', '42')
(9026, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Engineering Management / Industrial Engineering / IMSE', 'Fall', 'None', '163', '150', '313', 'None', '100', 'University of Pune', 'Mechanical Engg', '3.76', '4', '46')
(9027, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '161', '156', '317', '3.5', '105', 'Vishwakarma Institute of Technology', 'Computer Engineering', '7.5', '100', '0')
(9028, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '157', '143', '300', '3.5', '91', 'MU', 'Computer', '6.089', '100', '0')
(9029, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '170', '152', '322', '3.5', '98', 'Guru Gobind Singh Indraprashta University', 'TOOL ENGINEERING', '7.947', '100', '18')
(9030, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2013', '169', '161', '330', '4.5', '112', 'B M S College of Engineering', 'Mechanical', '9.14', '10', '0')
(9031, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '790', '670', '1460', '3.5', '107', 'BITS Pilani', 'Information Systems', '8.53', '10', '0')
(9032, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '169', '160', '329', '4.5', '111', 'NIT-Trichy', 'ECE', '7.82', '10', '24')
(9033, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '168', '161', '329', '3.5', '108', 'Delhi College Of Engineeing', 'Department of Computer Science', '7.140000000000001', '100', '0')
(9034, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '163', '154', '317', '3.5', '103', 'VTU', 'Computer science', '7.58', '100', '0')
(9035, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Spring ', '2016', '170', '155', '325', '4', '101', 'NIT Goa', 'CSE', '8.1', '10', '14')
(9036, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and computer engineering electrical engineering telecommunications engineering', 'Fall ', '2015', '166', '161', '327', '3.5', 'None', 'CoE Trivandrum', 'ELECTRONICS AND COMMUNICATION', '6.95', '10', '0')
(9037, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '780', '420', '1200', '3.5', '105', 'SRM', 'Computer Science and Engineering', '9.28', '10', '0')
(9038, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '170', '159', '329', '3', '103', 'Punjab Engineering College', 'Computer Science', '9.25', '10', '0')
(9039, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '156', '320', '3.5', '106', 'BIT Mesra', 'Information Technology', '7.34', '10', '0')
(9040, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Human Computer Interaction', 'Fall ', '2013', '154', '150', '304', '4', '97', 'CEG', 'Media Sciences', '8.235', '10', '0')
(9041, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '163', '164', '327', '4', 'None', 'Indira Gandhi Institute Of Technology', 'Electronics and Communication engineering', '8.193999999999999', '100', '0')
(9042, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Electronics', 'Fall ', '2014', '168', '154', '322', '3.5', '105', 'PSG College of Technology', 'Electrical and Electronics Engineering', '9.23', '10', '0')
(9043, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '590', '1390', '3', '111', 'K J Somaiya College of Engiineering', 'Computer Engineering', '7.5120000000000005', '100', '0')
(9044, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '740', '530', '1270', '3', '105', 'Pune University', 'IT', '6.8', '100', '0')
(9045, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '640', '1440', '3.5', '107', 'VJTI', 'IT', '7.8', '10', '0')
(9046, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '154', '318', '3', '102', 'thakur mumbai university', 'computer engg', '6.26', '100', '0')
(9047, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '168', '167', '335', '4', '105', 'VNIT Nagpur', 'ECE', '7.13', '10', '0')
(9048, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '166', '154', '320', '3.5', '104', 'VNIT Nagpur', 'Electrical and Electronics Engg.', '8.52', '10', '0')
(9049, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '590', '1380', '3.5', '100', 'Sardar Patel College of Engineering', 'Computer engineering', '6.55', '100', '0')
(9050, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '170', '157', '327', '4', 'None', 'LNMIIT', 'COMPUTER SCIENCE', '8.2', '10', '0')
(9051, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '163', '151', '314', '3', '94', 'Amravati University', 'Mechanical Engineering', '7.234999999999999', '100', '0')
(9052, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and computer science', 'Fall ', '2013', '160', '152', '312', 'None', '100', 'Jaypee Institute of Information Technology', 'ECE', '6.8', '10', '0')
(9053, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '170', '156', '326', '3', 'None', 'Thapar University', 'Mechanical', '7.65', '10', '23')
(9054, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '610', '1410', 'None', '108', 'MU', 'Electronics Engineering', '6.3', '100', '0')
(9055, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '154', '167', '321', '3', '108', 'Veermata Jijabai Technological Institute', 'Information Technology', '8.6', '10', '0')
(9056, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'software engineering', 'Fall ', '2013', '160', '151', '311', '4', '109', 'R.D. National College', 'IT', '7', '100', '0')
(9057, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '170', '161', '331', '4', '111', 'Maharaja Surajmal Institute of Technology', 'Computer Science', '0', '0', '30')
(9058, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '165', '157', '322', '3', '104', 'NIT Calicut', 'Production Engineering', '8.5', '10', '0')
(9059, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '163', '153', '316', '3', '112', 'VIT', 'electronics', '8.86', '10', '0')
(9060, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '167', '163', '330', '4', 'None', 'NITK Surathkal', 'Mechanical Engineering', '8.92', '10', '29')
(9061, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '163', '164', '327', '4.5', '106', 'Nationl Institute of Technology Jamshedpur', 'Electronics and Communication Engineering', '9.42', '10', '0')
(9062, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '660', '1460', '4', '107', 'Nagpur University', 'Electronics Engineering', '6.9', '100', '0')
(9063, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '168', '157', '325', '4', '112', 'IIITD', 'Computer Science', '8.67', '10', '0')
(9064, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics & Communication', 'Fall ', '2012', '780', '690', '1470', 'None', 'None', 'SSN College of Engineering', 'ECE', '8.3', '100', '0')
(9065, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '780', '620', '1400', '4', '110', 'NIT Durgapur', 'Computer Science and Engineering', '8.29', '10', '0')
(9066, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '168', '330', '4.5', '116', 'Pune University', 'Computer Engineering', '5.9', '100', '0')
(9067, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '163', '151', '314', '4', '98', 'University of Mumbai', 'Electronics & Telecommunication', '7.556', '100', '0')
(9068, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '740', '560', '1300', '3', '100', 'YCCE', 'Electronics', '7.4', '100', '0')
(9069, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '760', '640', '1400', '3.5', '107', 'K J Somaiya College of Engiineering', 'Computer Engineering', '6.859999999999999', '100', '0')
(9070, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '600', '1400', '3.5', '109', 'NIT Calicut', 'ECE', '8.1', '10', '0')
(9071, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '163', '147', '310', '3.5', '106', 'SJCE', 'Electronics and Communication', '9.01', '10', '0')
(9072, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '158', '321', '4', '106', 'IIIT Jabalpur', 'Computer Science', '8.4', '10', '0')
(9073, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '151', '312', '4', '105', 'CSVTU', 'Electronics and Telecommunications', '7.109999999999999', '100', '18')
(9074, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '640', '1440', '4', '114', 'West Bengal University Of Technology', 'Information Tecdhnology', '8.03', '10', '0')
(9075, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '165', '145', '310', '3', '100', 'IIT', 'Information Technology', '8.28', '10', '48')
(9076, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '770', '680', '1450', '3', '99', 'BMSCE', 'EC', '8.5', '100', '0')
(9077, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '169', '153', '322', '4', '115', 'IIT Kharagpur', 'ECE', '9.28', '10', '0')
(9078, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '165', '148', '313', '2.5', '97', 'NIT Allahabad', 'Mechanical Engineering', '7.26', '10', '0')
(9079, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '620', '1400', '3.5', '114', 'NMIMS', 'Computer Engineering', '3.41', '4', '0')
(9080, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '530', '1330', '4', '104', 'VTU', 'Computer Science', '8.129999999999999', '100', '0')
(9081, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '740', '550', '1290', '3.5', '104', 'MU', 'computer', '6.723000000000001', '100', '0')
(9082, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '740', '610', '1350', '3.5', '92', 'MU', 'Computers', '7.058', '100', '0')
(9083, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall', 'None', '800', '440', '1240', '3', '97', 'MU', 'mech', '7.1', '100', '0')
(9084, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '168', '152', '320', '3.5', '103', 'KIIT', 'Computer Science', '9', '10', '0')
(9085, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '650', '1450', '3', '104', 'MU', 'Electronics and telecommunication', '7.8', '100', '0')
(9086, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '151', '312', '3', 'None', 'University of Pune', 'Computer Engg..', '6', '100', '0')
(9087, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '170', '148', '318', '3', '112', 'NIT Delhi', 'CSE', '8.23', '10', '0')
(9088, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'HCI / CS', 'Fall ', '2014', '169', '149', '318', '3.5', '108', 'Jaypee Institute of Information Technology', 'Computer Science Engineering', '8', '10', '0')
(9089, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '550', '1350', '3.5', '107', 'Jaypee Institute of Information Technology', 'ECE', '7.6', '10', '0')
(9090, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '168', '149', '317', '4', '107', 'ITM University Gurgaon', 'CS', '9.01', '10', '6')
(9091, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '790', '510', '1300', '3', '106', 'Jaypee Institute of Information Technology', 'Computer Science and Engineering', '7.5', '10', '0')
(9092, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '570', '1360', '4', '110', 'PESIT', 'Telecommunications', '8.33', '10', '0')
(9093, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '520', '1320', '4.5', '112', 'VTU', 'ECE', '7.5', '100', '0')
(9094, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '650', '1450', '4.5', '111', 'MU', 'Electronics & Telecommunication', '7.234', '100', '0')
(9095, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '550', '1330', '4.5', '112', 'University of Kerala', 'Electronics and Communication Engineering', '8.4', '100', '0')
(9096, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '165', '162', '327', '3', '109', 'NIT Silchar', '0', '6.96', '10', '54')
(9097, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '166', '160', '326', '4', '108', 'Bhilai Institute of Technology', 'Computer Science', '7.81', '10', '0')
(9098, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '167', '328', '3.5', '109', 'RNSIT', '0', '7.823', '100', '0')
(9099, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2011', '800', '640', '1440', '3.5', '108', 'IIT Roorkee', 'Industrail Eng', '0.71', '100', '0')
(9100, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '159', '149', '308', '3.5', '100', 'VIT Pune', 'I. T', '8.5', '10', '0')
(9101, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '167', '153', '320', '3.5', '110', 'NIT Kurukshetra', 'Electronics and Communication', '8.847', '10', '12')
(9102, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '166', '151', '317', '3.5', '95', 'VJTI', 'CS', '7.6', '10', '0')
(9103, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '156', '323', '4', '116', 'University of Mumbai', 'Computer Engineering', '6.555', '100', '16')
(9104, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall', 'None', '163', '153', '316', '3.5', '114', 'Jabalpur Engg College', 'EE', '8.21', '10', '0')
(9105, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '169', '154', '323', '4', '115', 'None', '0', '0', '0', '0')
(9106, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Human Computer Interaction', 'Fall ', '2011', '760', '440', '1200', '3.5', '110', 'Pune University', 'Computer Science', '7.066', '100', '0')
(9107, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '160', '146', '306', '3.5', '107', 'Sir MVIT', 'TELECOMMUNICATION', '8.254000000000001', '100', '0')
(9108, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '166', '157', '323', '3.5', '115', 'PESIT', 'Electronics and Communication', '9.03', '10', '0')
(9109, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '660', '1460', '3.5', '104', 'None', '0', '7.22', '10', '0')
(9110, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '720', '660', '1380', '4', '107', 'Anna University', 'Information Technology', '7.5', '10', '0')
(9111, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2013', '163', '155', '318', '3', '109', 'VIT University', 'Mechanical Engineering', '8.64', '10', '0')
(9112, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '152', '311', '4', '110', 'MU', 'Computer engg', '6.2', '100', '0')
(9113, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '168', '165', '333', '4.5', 'None', 'Delhi College Of Engineeing', 'ECE', '7.848000000000001', '100', '0')
(9114, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '800', '510', '1310', '3.5', '102', 'PSG College of Technology', 'IT', '9.36', '10', '0')
(9115, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '690', '1490', '3.5', '113', 'NIT-Trichy', 'EEE', '8.61', '10', '0')
(9116, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '160', '323', '4', '117', 'Thadomal Shahani Engineering College', 'Computer Engineering', '6.4959999999999996', '100', '0')
(9117, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '158', '153', '311', '3', '97', "St Joseph's College of Engineering", 'Mechanical engineering', '7.4', '100', '0')
(9118, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2014', '162', '152', '314', '4', '105', 'L D College Of Engineering', 'Civil Engineering', '7.9', '10', '0')
(9119, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '640', '1440', '3.5', '110', 'University of Mumbai', 'Computer Engineering Department', '6.1', '100', '0')
(9120, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '160', '158', '318', '4.5', '116', 'Amrita School of Engineering', 'ECE', '7.73', '10', '0')
(9121, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '640', '1440', '4.5', '114', 'MU', 'IT', '7.65', '100', '0')
(9122, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '170', '161', '331', '4.5', '115', 'BITS Pilani', 'Electrical and Electronics', '8.04', '10', '0')
(9123, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '155', '321', '3.5', '111', 'None', 'Computer Science', '9.06', '10', '0')
(9124, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '170', '160', '330', '3.5', '113', 'NIT Calicut', 'ECE', '7.27', '10', '24')
(9125, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '600', '1400', '3.5', '110', 'NIT Hamirpur', 'Computer Science and Engineering', '8.64', '10', '0')
(9126, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '170', '151', '321', '4', '106', 'IIT Kharagpur', 'Mechanical Engineering B.Tech and M.Tech dual degree (5 yr)', '8.84', '10', '0')
(9127, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '150', '313', '4', 'None', 'DA-IICT', 'Information and Communication Technology', '9.26', '10', '15')
(9128, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '168', '162', '330', '3', '111', 'BIT Mesra', 'Electronics and Communication', '7.72', '10', '0')
(9129, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '165', '157', '322', '3.5', '109', 'VTU', 'Mechanical Engineering', '8.1', '100', '0')
(9130, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '161', '154', '315', '3', '103', 'PESIT', 'Telecommunicaiton', '7.95', '10', '0')
(9131, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Chemical Engineering', 'Fall ', '2012', '163', '156', '319', '4', '115', 'BITS Pilani', 'Chemical Engineering', '8.4', '10', '0')
(9132, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'software engineering', 'Fall ', '2015', '161', '154', '315', '3.5', '111', 'SASTRA', 'CSE', '8.75', '10', '0')
(9133, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2012', '800', '550', '1350', '3', '107', 'University of Mumbai', 'ELECTRONICS AND TELECOMMUNICATIONS', '6.7', '100', '0')
(9134, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '167', '157', '324', '3.5', '116', 'Amrita Vishwa Vidhyapeetham', 'ECE', '7.55', '10', '0')
(9135, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '164', '161', '325', '5', '111', 'Sir MVIT', 'Information Science and Engineering', '7.434', '100', '24')
(9136, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '158', '320', '3.5', '110', 'Thadomal Shahani Engineering College', 'Computers', '7.5200000000000005', '100', '0')
(9137, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2014', '168', '161', '329', '3', '105', 'IIT BHU', 'Electronics and communication', '7.86', '10', '0')
(9138, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '152', '315', '3.5', '109', 'Pune University', 'Computer Engineering', '7.7', '100', '24')
(9139, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '170', '159', '329', '4.5', '113', 'MSRIT', 'EC', '9.1', '10', '0')
(9140, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '160', '324', '4.5', '117', 'Don Bosco Institute of Technology', 'Computer Science', '7.55', '100', '14')
(9141, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '590', '1390', '3', '105', 'Uttarakhand Technical University', 'Computer Science and Engineering', '7.2', '100', '0')
(9142, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Civil Engineering', 'Fall', 'None', '165', '157', '322', '3.5', '110', 'None', 'Civil Engineering', '8.19', '10', '0')
(9143, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '160', '157', '317', '3.5', '113', 'Amrita School of Engineering', 'EEE', '8.64', '10', '0')
(9144, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '540', '1340', '4', '112', 'RNSIT', 'Electronics and Communication', '7.5', '100', '0')
(9145, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '720', '580', '1300', 'None', 'None', 'IIT Guwahati', 'CSE', '6.55', '10', '0')
(9146, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '158', '319', '4', '112', 'MDU', 'Computer Science', '7.5', '100', '41')
(9147, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(9148, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering/Comp Science', 'Fall ', '2013', '800', '500', '1300', '3.5', '110', 'SRM', 'Computer Science', '8.47', '10', '0')
(9149, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '770', '680', '1450', '3.5', '101', 'Anna University', 'Production Engg', '8.6', '10', '0')
(9150, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '168', '158', '326', 'None', '115', 'Cochin University of Science and Technology', 'Computer Science and Engineering', '7.5', '100', '0')
(9151, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '460', '1260', '3.5', '99', 'Mahatma Gandhi University Kerala', 'Electronics & Communication', '7.95', '100', '0')
(9152, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '760', '580', '1340', '3.5', '105', 'RMK Engineering College', 'B.E Computer Science', '7.4', '100', '0')
(9153, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '166', '162', '328', '3', '102', 'BITS Pilani', 'Electronics & Communication', '9.73', '10', '0')
(9154, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2008', '800', '560', '1360', '5.5', '117', 'University of Calicut', 'Electronics and Communication Engg', '7.9', '100', '0')
(9155, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '600', '1400', '4', '110', 'Pune University', 'Computer Science', '6.5', '100', '0')
(9156, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2011', '800', '460', '1260', '4', '109', 'Sardar Patel College of Engineering', 'Electronics and Telecommunication', '7.133', '100', '0')
(9157, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '170', '157', '327', '3.5', '109', 'IIT Roorkee', 'Mechanical Engineering', '8.06', '10', '0')
(9158, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2012', '800', '660', '1460', '3.5', '117', 'Madras Institute of Technology', 'Aerospace engineering', '9.46', '10', '0')
(9159, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '167', '165', '332', '4', '107', 'NIT Calicut', 'Electrical and Electronics Engineering', '7.54', '10', '0')
(9160, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '163', '324', '4', '116', 'D J Sanghvi', 'Computers', '7.58', '100', '24')
(9161, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '163', '154', '317', '4', '100', 'BITS Hyderabad', 'Mechanical Engineering', '9.35', '10', '0')
(9162, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '170', '153', '323', '3.5', '107', 'Jadavpur University', 'Electrical Engineering', '8.56', '10', '0')
(9163, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '165', '156', '321', '3', '106', 'NSIT', 'Computer Engineering', '7.888', '100', '32')
(9164, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2014', '168', '158', '326', '4', '114', 'NIT Calicut', 'Computer Science and Engineering', '9.48', '10', '0')
(9165, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2010', '800', '600', '1400', '4', '105', 'VIT', 'EEE', '9.28', '10', '0')
(9166, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Spring ', '2014', '170', '142', '312', '3', '92', 'NIT Surat', 'Mechanical engineering', '7.32', '10', '0')
(9167, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Information Security', 'Fall ', '2012', '161', '151', '312', '3.5', '104', 'Pune University', 'Computer Engineering', '5.75', '100', '0')
(9168, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '170', '162', '332', '3', '107', 'IIT Mandi', 'Computer Science', '6.74', '10', '16')
(9169, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'MIS/MS CS', 'Fall ', '2013', '800', '450', '1250', '4.5', '101', 'Sri Sairam Engineering College', 'Computer Science', '7.3', '100', '0')
(9170, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '159', '326', '3.5', '114', 'R V College of Engineering', 'electrical and Electronics', '8.76', '10', '0')
(9171, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '760', '580', '1340', '4', '111', 'CEG', 'ECE', '8.47', '10', '0')
(9172, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '170', '152', '322', '3.5', '107', 'BITS Pilani', 'CS', '8.5', '10', '44')
(9173, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '750', '490', '1240', '4', '114', 'Amrita School of Engineering', 'Electronics and Instrumentation Engineering', '8.2', '10', '0')
(9174, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '159', '321', '3', '110', 'SRM', 'Mechatronics', '8.57', '10', '0')
(9175, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '164', '153', '317', '4', '112', 'SSN College of Engineering', 'ECE', '8.72', '10', '0')
(9176, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '750', '550', '1300', '3', '89', 'Coimbatore Insitute of Technology', 'Mechanical', '8.34', '10', '0')
(9177, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2013', '800', '640', '1440', '5', '114', 'COEP', 'Production Engineering', '7.88', '10', '0')
(9178, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '168', '153', '321', '4', '114', 'BITS Pilani', 'Computer Science and Information systems', '7.23', '10', '0')
(9179, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'KIIT', 'Electrical engineering', '7.64', '10', '0')
(9180, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '164', '151', '315', '4', '110', 'SJCE', 'Industrial and Production Engineering', '9.34', '10', '0')
(9181, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '630', '1430', '4.5', '114', 'VTU', 'ECE', '8.48', '100', '0')
(9182, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '169', '152', '321', '4', '109', 'MU', 'Information Technology', '6.247', '100', '28')
(9183, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '650', '1450', '3.5', '107', 'Sardar Patel College of Engineering', 'Computer', '7.6', '100', '0')
(9184, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Biomedical Engineering', 'Fall ', '2015', '167', '160', '327', '4', '115', 'BITS Goa', 'Physics + Electronics and Electrical', '8.05', '10', '3')
(9185, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Biomedical Engineering', 'Fall ', '2014', '161', '156', '317', '4', '108', 'VTU', 'Biotechnology', '8.4', '100', '0')
(9186, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '800', '590', '1390', '3', '109', 'Biju Patnaik University of Technology', 'Electronics and Instrumentation', '8.85', '10', '0')
(9187, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2007', '800', '720', '1520', '5', '280', 'PESIT', 'Electronics and Communication', '8.6', '100', '0')
(9188, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '780', '380', '1160', '3.5', '101', 'SSN College of Engineering', 'Electronics and communication engineering', '7.8', '100', '0')
(9189, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '164', '154', '318', '4', '111', 'SSN College of Engineering', 'B.E. Mechanical Engineering', '7.9', '100', '30')
(9190, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2015', '166', '163', '329', '4', '117', 'Medicaps Institute of Science & Technology Indore', 'ECE', '8.040000000000001', '100', '24')
(9191, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2007', '800', '660', '1460', '3.5', '112', 'VTU', 'ECE', '0', '0', '0')
(9192, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '800', '670', '1470', '4', '113', 'NIT Calicut', 'Mechanical Engineering', '6.67', '10', '0')
(9193, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '700', '1500', '4', '112', 'University of Pune', 'Electronics & Telecommunications', '6.1', '100', '0')
(9194, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '162', '156', '318', '4', '112', 'VTU', 'Instrumentation Technology', '9.57', '10', '0')
(9195, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '164', '150', '314', '3', '100', 'Dharamsinh Desai University', 'Computer Engineering', '7.87', '10', '0')
(9196, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '670', '1470', '4', '115', 'BITS Pilani', 'Computer Science', '8.13', '10', '0')
(9197, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering/Comp Science', 'Fall ', '2013', '164', '151', '315', '3', '94', 'SSN College of Engineering', 'CSE', '7.640000000000001', '100', '0')
(9198, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Embedded systems', 'Fall ', '2013', '161', '158', '319', '5', '112', 'VJTI', 'Electronics', '8.2', '100', '0')
(9199, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '164', '160', '324', '4.5', '113', 'SSN College of Engineering', 'ECE', '8.8', '10', '0')
(9200, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'CS', 'Fall ', '2014', '161', '149', '310', '3.5', '102', 'Manipal Institue of Technology', 'Computer Science', '8.96', '10', '0')
(9201, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '166', '157', '323', '4', '119', 'BITS Goa', 'Computer Science', '8.48', '10', '0')
(9202, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '159', '155', '314', '3.5', '111', 'GGSIPU', 'IT', '7.2', '100', '0')
(9203, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '530', '1280', '4.5', '110', 'VTU', 'Computer Science', '8.2', '100', '0')
(9204, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '159', '318', '4', '107', 'GECA', 'Information Technology', '7.3', '10', '0')
(9205, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '169', '155', '324', '4', '111', 'Delhi College Of Engineeing', 'Production and Industrial Engineering', '6.9', '100', '0')
(9206, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '168', '157', '325', '4', '116', 'NIT Calicut', 'ECE', '8.15', '10', '0')
(9207, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Spring ', '2014', '790', '760', '1550', '4', '116', 'University College of Engineering Osmania University', 'ECE', '3.2', '4', '0')
(9208, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Instrumentation and Control', 'Fall ', '2012', '170', '156', '326', '5', 'None', 'Jadavpur University', 'Instrumentation and Electronics Engineering', '8.948', '10', '0')
(9209, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '670', '1470', '4', '116', 'MU', 'Electronics', '6.67', '100', '0')
(9210, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '153', '314', '4.5', '113', 'JNTU', 'Computer Science and Information Technology', '7.7', '100', '0')
(9211, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '550', '1350', '4', '107', 'IIIT Hyderabad', 'ECE', '9.12', '10', '0')
(9212, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '800', '580', '1380', '3.5', '105', 'IIT Kharagpur', 'Aerospace', '8.66', '10', '0')
(9213, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '720', '610', '1330', '3.5', '107', 'MSRIT', 'ELEC & COMM', '8.74', '10', '0')
(9214, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '760', '640', '1400', '3.5', '109', 'Anna University', 'Mech', '7.41', '10', '0')
(9215, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Electronics', 'Fall ', '2012', '780', '560', '1340', '4', '112', 'B M S College of Engineering', 'Telecommunication', '9.1', '10', '0')
(9216, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2012', '780', '720', '1500', '4.5', '115', 'PESIT', 'Telecommunication', '7.69', '10', '0')
(9217, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '164', '155', '319', '4.5', '115', 'VJTI', 'PRODUCTION', '8.3', '10', '0')
(9218, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '760', '710', '1470', '3.5', '100', 'Pune University', 'I.T', '6.13', '100', '0')
(9219, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Aerospace Engineering', 'Spring ', '2014', '760', '600', '1360', '4', '112', 'SIT', 'Mech', '7.1', '100', '0')
(9220, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '164', '152', '316', '3.5', '104', 'Sir MVIT', 'E&CE;', '8.305', '10', '0')
(9221, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '750', '510', '1260', '4', '108', 'Amrita Vishwa Vidhyapeetham', 'Computer Science and Engineering', '8.36', '10', '0')
(9222, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Chemical Engineering', 'Fall ', '2011', '780', '560', '1340', '3', '89', 'Jadavpur University', 'Chemical Engineering', '7.4', '100', '0')
(9223, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Chemical Engineering', 'Fall ', '2014', '165', '161', '326', '3.5', '113', 'VTU', 'Chemical Engineering', '7.59', '10', '0')
(9224, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '750', '590', '1340', '4', '109', 'SVCE', 'CS', '8.2', '10', '0')
(9225, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '500', '1300', '4', '109', 'NIT Calicut', 'CSE', '9.25', '10', '0')
(9226, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '168', '156', '324', '3.5', '113', 'NITK Surathkal', 'ECE', '8.3', '10', '0')
(9227, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '164', '154', '318', '4', '111', 'Gujarat Technological University', 'ECE', '7.6819999999999995', '100', '0')
(9228, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '750', '460', '1210', '3.5', '113', 'Manipal Institue of Technology', 'E&C;', '8.7', '10', '0')
(9229, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '166', '154', '320', '3.5', '111', 'University of Mumbai', 'Electrical Engineering', '7.06', '100', '0')
(9230, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '600', '1380', '3.5', '109', 'MU', 'Electronics', '7.3', '100', '0')
(9231, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '690', '1490', '4', '99', 'Sardar Patel College of Engineering', 'Electronics', '6.9', '100', '0')
(9232, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'CS/SE', 'Fall ', '2012', '800', '610', '1410', '4', '104', 'NMIMS', 'CE', '3.07', '4', '0')
(9233, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Systems and Control', 'Fall ', '2014', '165', 'None', '165', '3.5', '104', 'NIT Surat', 'Electrical Engineering', '8.18', '10', '0')
(9234, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2007', '800', '600', '1400', '4', '103', 'MU', 'Information Technology', '7.2', '100', '0')
(9235, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2009', '780', '680', '1460', '4', '110', 'U.P. Technical University', 'CS', '6.7', '100', '0')
(9236, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '168', '149', '317', '4', '107', 'University of Pune', 'Electronics and Tele-Communication', '6.3445', '100', '0')
(9237, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '169', '159', '328', '3', '113', 'MSRIT', 'E & C', '9.23', '10', '0')
(9238, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '720', '1520', '4', '112', 'None', '0', '8.36', '10', '0')
(9239, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '770', '530', '1300', '3', '106', 'MU', 'CS', '7.248', '100', '0')
(9240, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '167', '152', '319', '4', '104', 'Netaji Subhas Institute of Technology', 'Computer Engineering', '7.656000000000001', '100', '0')
(9241, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '580', '1360', '4', '110', 'COEP', 'Computer and Information Tehnology', '8.39', '10', '0')
(9242, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Materials Science & Engineering', 'Fall ', '2015', '167', '160', '327', '4.5', '111', 'IIT Roorkee', 'Metallurgical and Materials Engineering', '9.112', '10', '0')
(9243, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2010', '800', '570', '1370', '3.5', '116', 'NITK Surathkal', 'ECE', '8.56', '10', '0')
(9244, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'EE / CE / CS', 'Fall ', '2015', '166', '157', '323', '4', '109', 'BITS Pilani', 'EEE', '8.64', '10', '0')
(9245, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '800', '710', '1510', '4.5', '111', 'NIT Tirchy', 'Mechanical Engg', '8.59', '10', '0')
(9246, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronic and Telecommunication Engineering', 'Fall ', '2014', '167', '148', '315', '4', '106', 'Veermata Jijabai Technological Institute', 'Electronics and Telecommuniaction', '8.1', '10', '0')
(9247, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '780', '630', '1410', '3', '112', 'University of Mumbai', 'Computer Engg', '7', '100', '0')
(9248, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '169', '153', '322', '4.5', '114', 'MDU', 'Applied Electronics and Instrumentation', '7.4319999999999995', '100', '0')
(9249, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '800', '800', '1600', '4', '110', 'Thapar University', 'Mechanical Engineering', '9.35', '10', '0')
(9250, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '159', '166', '325', '4.5', '110', 'Anna University', 'EEE', '7.5', '10', '0')
(9251, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '161', '160', '321', '4', '110', 'NIT Delhi', 'EEE', '8.38', '10', '0')
(9252, 'Georgia Institute of Technology', '14', 'Reject', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '166', '156', '322', '4', '113', 'Pune University', 'Electronics & Telecomm', '6.29', '100', '22')
(9253, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '760', '640', '1400', '4', '112', 'NIT Calicut', 'ECE', '7.84', '10', '0')
(9254, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '157', '315', '3.5', '101', 'Anna University', 'Information Technology', '0.818', '100', '21')
(9255, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '156', '320', '4', '110', 'MITCOE University of Pune', 'IT', '5.657', '100', '0')
(9256, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'CS', 'Fall ', '2014', '167', '153', '320', '4.5', '113', 'Dhirubhai Ambani Institute of Information & Communication Technology', 'ICT (Information and Communication Technology)', '6.4', '10', '23')
(9257, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2013', '800', '400', '1200', '4', '105', 'CEG', '0', '9.2', '10', '0')
(9258, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '159', '157', '316', '4', '111', 'NITK Surathkal', 'Computer Engineering', '7.7', '10', '0')
(9259, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'None', 'computer science', '7.2', '100', '0')
(9260, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Spring ', '2015', '160', '147', '307', '3', '92', 'MU', 'Mechanical Engineering', '6', '100', '0')
(9261, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Interaction Design', 'Fall ', '2015', 'None', 'None', '0', 'None', '107', 'None', '0', '0', '0', '0')
(9262, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '550', '1330', '3', '112', 'Manipal Institue of Technology', 'Computer Science', '8.01', '10', '0')
(9263, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2014', '318', '157', '475', '4.5', '113', 'The LNM Institute of Information Technology', 'Electronics and Communication', '8.75', '10', '0')
(9264, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '166', '150', '316', '3', '104', 'K J Somaiya College of Engiineering', 'MECH', '7.214', '100', '0')
(9265, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '168', '155', '323', '4', '116', 'MU', 'Information Technology', '7.937', '100', '36')
(9266, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '620', '1410', '4', '108', 'VTU', 'Electronics', '8.84', '10', '0')
(9267, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '326', '156', '482', '4', '113', 'VTU', 'CSE', '8.264', '100', '12')
(9268, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2013', '166', '155', '321', '3', '107', 'NIT- Surat', 'Civil Engineering', '9.38', '10', '0')
(9269, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Embedded systems', 'Fall ', '2013', '800', '640', '1440', '4', '104', 'None', '0', '8.83', '10', '0')
(9270, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '167', '162', '329', '3.5', '113', 'COEP', 'Computer Engineering', '7.06', '10', '0')
(9271, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '570', '1340', '4', '108', 'MU', 'Comp Engg', '6.2', '100', '0')
(9272, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2012', '800', '650', '1450', '4.5', '115', 'BITS Goa', 'Chemical Engineering', '7.34', '10', '0')
(9273, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '165', '151', '316', '4', '103', 'J.N.T. University Hyderabad', 'Electronics and Communication Engineering', '8.184999999999999', '100', '0')
(9274, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '156', '317', '5', '115', 'PESIT', 'Information Science and Engineering', '8.5', '10', '0')
(9275, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Spring ', '2014', '162', '153', '315', '3.5', '97', 'VTU', 'Electronics and Communications', '8.3', '100', '0')
(9276, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Information Security', 'Fall ', '2014', '162', '148', '310', '3', '104', 'VESIT', 'CompEngg', '6.6', '100', '15')
(9277, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '170', '155', '325', '3.5', '111', 'MU', 'Information Technology', '6.4', '100', '17')
(9278, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '168', '168', '336', '5', '118', 'Madras Institute of Technology', 'Computer Science', '8.65', '10', '24')
(9279, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '154', '320', '3', '104', 'K J Somaiya College of Engiineering', 'Computer', '6.9', '100', '0')
(9280, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '740', '600', '1340', '4', '115', 'MU', 'Computer Science', '5.7', '100', '0')
(9281, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '580', '1350', '3.5', '96', 'Pune University', 'Computer Science', '6.3', '100', '0')
(9282, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '800', '640', '1440', '4', '115', 'None', '0', '8.74', '10', '0')
(9283, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', 'None', 'None', '0', 'None', '100', 'Pune University', 'Mechanical Engineering', '7.24', '100', '0')
(9284, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '780', '580', '1360', '4', '112', 'VTU', 'Information Science and Engineering', '7.7', '100', '0')
(9285, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '166', '153', '319', '4', '103', 'IIT Kanpur', 'M.Tech in Laser Technology', '10', '10', '0')
(9286, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '800', '680', '1480', '4', '108', 'R V College of Engineering', 'Electronics & Comm', '9.25', '10', '0')
(9287, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '165', '151', '316', '4', '109', 'Rajiv Gandhi Institute Of Technology', 'Computers', '6.5', '100', '0')
(9288, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '152', '314', '4', '111', 'MU', 'Computer Engineering', '6.7', '100', '0')
(9289, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '161', '154', '315', '4', '108', 'VIT', 'ECE', '8.78', '10', '0')
(9290, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '161', '145', '306', '3', '104', 'Anna University', 'Mechanical Engineering', '8.41', '10', '0')
(9291, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '164', '154', '318', '3.5', '109', 'MU', 'Information Technology', '6.981999999999999', '100', '30')
(9292, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '640', '1430', '3', '101', 'Nirma Institute of Technology', 'Computer engineering', '8.68', '10', '0')
(9293, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '162', '323', '3', '112', 'Rajasthan Technical University', 'Computer Science', '6.715000000000001', '100', '0')
(9294, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '149', '315', '3.5', '100', 'Nirma Institute of Technology', 'Information Technology', '7.63', '10', '30')
(9295, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '165', '158', '323', '3.5', 'None', 'MU', 'computer', '6.8', '100', '4')
(9296, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '161', '149', '310', '3', '104', 'Malaviya NIT Jaipur', 'Electronics and Communication', '8.63', '10', '0')
(9297, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2009', '470', '790', '1260', '3.5', '112', 'Madras Institute of Technology', 'Electronics and Communication engineering', '8', '10', '0')
(9298, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2011', '760', '540', '1300', '3', '102', 'Coimbatore Insitute of Technology', 'Computer Science & Engineering', '9.06', '10', '0')
(9299, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2015', '162', '162', '324', '3', '109', 'VTU', 'Civil Engineering', '8.12', '10', '12')
(9300, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2012', '800', '530', '1330', '3', '99', 'NMIMS', 'Electronics & Telecommunication', '2.73', '4', '0')
(9301, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '163', '157', '320', '5', '112', 'Amrita Vishwa Vidhyapeetham', 'Information Technology', '8.98', '10', '0')
(9302, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '165', '158', '323', '4.5', '115', 'SRM', 'Electrical & electronics engineering', '8.881', '10', '0')
(9303, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '162', '323', '4', '114', 'VTU', 'CSE', '9.23', '10', '0')
(9304, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '680', '1480', '3.5', '109', 'Osmania University', 'CSE', '8.620000000000001', '100', '0')
(9305, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '165', '161', '326', '3', '105', 'VTU', 'ECE', '8.7', '100', '0')
(9306, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '165', '151', '316', '3', '103', 'NIT Allahabad', 'Computer Science and Engineering', '8.7', '10', '36')
(9307, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '800', '710', '1510', '4', '116', 'D J Sanghvi', 'Electronics', '5.85', '100', '16')
(9308, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2013', '163', '164', '327', '4', '115', 'Anna University', 'Aeronautical Engg.', '8.73', '10', '0')
(9309, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '670', '1450', '3.5', '108', 'Jaypee Institute of Information Technology', 'ECE', '8.5', '10', '0')
(9310, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '167', '166', '333', '4.5', '118', 'None', 'Computer Science', '7.84', '10', '0')
(9311, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '168', '165', '333', '4', '117', 'PESIT', 'ECE', '9.7', '10', '0')
(9312, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '169', '157', '326', '3.5', '110', 'TU', 'Computer Science', '9.9', '10', '0')
(9313, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '152', '319', '3.5', '95', 'KIIT', 'ELECTRICAL ENGINEERING', '7.74', '10', '0')
(9314, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '510', '1310', '4.5', '104', 'Osmania University', 'CSE', '8.76', '100', '0')
(9315, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '600', '1370', '4', '104', 'MU', 'Electronics & Telecommunication', '7.1', '100', '0')
(9316, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2015', '159', '162', '321', '3.5', '107', 'NIT Kurukshetra', 'Civil Engineering', '8.84', '10', '24')
(9317, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '160', '150', '310', '4', '105', 'Sri Jayachamarajendra College of Engineering', 'ECE', '9.06', '10', '0')
(9318, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '170', '153', '323', '3.5', '105', 'NIT Tirchy', 'Production Engg', '7.77', '10', '34')
(9319, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science/ Mgmt', 'Fall ', '2011', '800', '640', '1440', 'None', '112', 'MU', 'IT', '6.2', '100', '0')
(9320, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '740', '550', '1290', '4', '107', 'University of New Orleans', 'Electrical Engineering', '3.74', '4', '0')
(9321, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '770', '580', '1350', '3', '107', 'PSG College of Technology', 'Production Engineering', '9.32', '10', '0')
(9322, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '167', '169', '336', '4.5', '117', 'BITS Pilani', 'Manufacturing Engineering', '7.97', '10', '12')
(9323, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Electronics', 'Fall ', '2015', '168', '160', '328', 'None', 'None', 'Anna University', 'Electrical and Electronics', '8.1', '100', '18')
(9324, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '155', '317', '4', '113', 'Anna University', 'EEE', '9', '10', '0')
(9325, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '159', '326', '3.5', '105', 'Dayananda Sagar College of Engineering', 'Information Science', '7.5', '100', '52')
(9326, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '650', '1450', '3.5', '116', 'D J Sanghvi', 'Comps', '6.7', '100', '0')
(9327, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '158', '321', '4', '105', 'GGSIPU', 'CSE', '6.9', '100', '0')
(9328, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '170', '154', '324', '4', '114', 'Manipal Institue of Technology', 'Electronics and Communication', '9.53', '10', '0')
(9329, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '740', '430', '1170', '3.5', '100', 'Amrita School of Engineering', 'eee', '6.3', '10', '0')
(9330, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Embedded systems', 'Fall ', '2015', '165', '153', '318', '3', '98', 'D J Sanghvi', 'Electronics', '7', '100', '0')
(9331, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '750', '550', '1300', '4', '108', 'YMCA', 'Computer Engineering', '7.6', '100', '0')
(9332, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Chemistry', 'Fall ', '2013', '800', '520', '1320', '3', '96', 'Institute of Chemical Technology', 'Dept. of Dyestuff Technology', '7', '10', '0')
(9333, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '640', '1440', '4', '112', 'GGSIPU', 'ECE', '6.6', '100', '0')
(9334, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '750', '600', '1350', '4', '106', 'Anna University', 'ECE', '8.4', '100', '0')
(9335, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '780', '600', '1380', '4', '102', 'VJCET (MG University)', 'CSE', '8.034', '100', '0')
(9336, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '640', '1440', '3', '103', 'IIT Jabalpur', 'CS', '7.35', '10', '0')
(9337, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '520', '1310', '4', '109', 'VESIT', 'Computer Science', '6.9', '100', '0')
(9338, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '162', '159', '321', '3.5', '108', 'PSG College of Technology', 'Electrical and electronics engineering', '9.4', '10', '0')
(9339, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '520', '1320', '4.5', '105', 'VTU', 'E&C;', '8.044', '100', '0')
(9340, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '620', '1410', '3.5', '105', 'BVCOE', 'IT', '7.5', '100', '0')
(9341, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2015', '168', '153', '321', '4', '116', 'University of Mumbai', 'Electronics and Telecommunication Engineering', '8', '100', '0')
(9342, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '800', '580', '1380', '3.5', '102', 'C.I.T.M M.D.U Rohtak', 'Mechanical Engineering', '7', '100', '0')
(9343, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '161', '320', '3', '106', 'Anna University', 'Information Technology', '7.4', '100', '0')
(9344, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '450', '1220', '4', '103', 'VTU', 'Computer Sciece', '7.35', '100', '0')
(9345, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronic and Telecommunication Engineering', 'Fall ', '2014', '170', '150', '320', '3.5', '103', 'IIT Bhubaneswar', 'Electrical Engineering', '9.47', '10', '0')
(9346, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '550', '1340', '3', '97', 'VTU', 'Computer Science', '8.05', '100', '0')
(9347, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '155', '151', '306', '4', '115', 'Amrita School of Engineering', 'ECE', '8.1', '10', '0')
(9348, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '570', '1370', '4.5', '116', 'MU', 'Computer Engineering', '7.295', '100', '0')
(9349, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '168', '155', '323', '4.5', '108', 'The LNM Institute of Information Technology', 'Electronics and Communication Engineering', '8.51', '10', '4')
(9350, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '790', '590', '1380', '3', '104', 'Amrita Vishwa Vidhyapeetham', 'ECE', '8.6', '10', '0')
(9351, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '162', '158', '320', '4', '101', 'COEP', 'Electrical', '7.4', '10', '36')
(9352, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '164', '152', '316', '4', '106', 'R V College of Engineering', 'TELECOMMUNICATIONS', '8.75', '10', '0')
(9353, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'software engineering', 'Fall ', '2014', '166', '154', '320', '4', '112', 'Delhi College Of Engineeing', 'Computers', '7', '100', '0')
(9354, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '168', '164', '332', '4', '110', 'TSEC', 'Electronics and Telecommunication', '6.4799999999999995', '100', '0')
(9355, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Automotive Engineering', 'Fall ', '2010', '740', '730', '1470', '1470', '112', 'Thapar University', 'Mechanical Engineering', '8.13', '10', '0')
(9356, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Embedded systems', 'Fall ', '2013', '162', '158', '320', '3', '113', 'RAIT', 'Electronics', '6.1', '100', '0')
(9357, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '168', '163', '331', '4', '118', 'Government Rajiv Gandhi Institute of Technology', 'Mechanical Engineering', '7.840000000000001', '100', '81')
(9358, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2013', '166', '151', '317', '3.5', '107', 'Guru Gobind Singh Indraprashta University', 'Electronics and Communication', '7.7', '100', '0')
(9359, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '161', '157', '318', '4', '109', 'Manipal Institue of Technology', 'Electronics and Communication', '8.78', '10', '0')
(9360, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '790', '640', '1430', '3', '105', 'JNNCE / VTU', 'Computer Science', '7.8', '100', '0')
(9361, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '170', '160', '330', '4', '112', 'Jaypee Institute of Information Technology', 'Electronics and Communication', '8.6', '10', '0')
(9362, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Biomedical Engineering', 'Fall ', '2015', '164', '155', '319', '4', '110', 'None', 'Biomedical Engineering', '9.04', '10', '0')
(9363, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '165', '166', '331', '4', '113', 'Madras Institute of Technology', 'ECE', '9.1', '10', '0')
(9364, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '157', '323', '4', '110', 'Galgotias College of Engineering and Technology', 'Electronics and Instrumentation', '7.926', '100', '0')
(9365, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '790', '460', '1250', '4', '109', 'MU', 'Computer Science', '7.325', '100', '0')
(9366, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '760', '640', '1400', '3.5', '103', 'GITAM', 'COMPUTER SCIENCE', '9.25', '10', '0')
(9367, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and electrical engineering', 'Fall ', '2013', '162', '148', '310', '3.5', '107', 'BITS Dubai', 'Ece', '9.68', '10', '0')
(9368, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Chemical Engineering', 'Fall ', '2006', '800', '600', '1400', '4', '267', 'Andhra University', 'Chemical Engg', '8.32', '100', '0')
(9369, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2012', '790', '520', '1310', '3.5', '99', 'MU', 'Electronics and Telecommunication', '7.534000000000001', '100', '0')
(9370, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '740', '540', '1280', '4', '111', 'MU', 'Computer Engineering', '6.9', '100', '0')
(9371, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Materials Science & Engineering', 'Fall ', '2011', '790', '740', '1530', '4', '112', 'NIT Nagpur', 'Metallurgical and Materials Engineering', '9.39', '10', '0')
(9372, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2013', '164', '157', '321', '3.5', '111', 'CEG', 'Manufacturing', '8.96', '10', '0')
(9373, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '167', '151', '318', '3.5', '95', 'NIT Calicut', 'ECE', '7.88', '10', '24')
(9374, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computational Science', 'Fall ', '2013', '163', '155', '318', '3', '112', 'BITS Dubai', 'ECE', '9.45', '10', '0')
(9375, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Human Computer Interaction', 'Fall ', '2014', '160', '150', '310', '3.5', '108', 'NIT Tirchy', 'Instrumentation and Control Engg', '8.3', '10', '0')
(9376, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '165', '157', '322', '3.5', '108', 'MIT', 'instrumentation', '8.7', '10', '0')
(9377, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'CS', 'Fall ', '2013', '770', '590', '1360', '3.5', '111', 'VTU', 'ISE', '7.45', '100', '0')
(9378, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2016', '164', '155', '319', '3.5', '101', 'Dharamsinh Desai University', 'Instrumentation And Control', '9.05', '10', '0')
(9379, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '152', '162', '314', '3', '107', 'Amrita School of Engineering', 'Computer Science', '8.68', '10', '0')
(9380, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2010', '780', '320', '1100', '3', '97', 'Osmania University', 'EEE', '0.4', '100', '0')
(9381, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '570', '1360', '3.5', '113', 'NMIMS', 'Computer Science', '3.24', '4', '0')
(9382, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '168', '155', '323', '3.5', '110', 'NIT Kurukshetra', 'Computer Science', '9.16', '10', '0')
(9383, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '780', '560', '1340', '3.5', '108', 'NIT', 'ECE', '9.02', '10', '0')
(9384, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Electronics', 'Spring ', '2014', '165', '158', '323', '3.5', '100', 'Osmania University', 'electrical and electronics engineering', '7.2', '100', '0')
(9385, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '163', '155', '318', '4', '104', 'IIIT Jabalpur', 'ECE', '0.8', '100', '0')
(9386, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '770', '510', '1280', '3', '113', 'Anna University', 'ECE', '7.63', '100', '0')
(9387, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '770', '680', '1450', '3', '100', 'Vidyalankar Institute of Technology', 'Electronics and Telecommunication', '7.0040000000000004', '100', '0')
(9388, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '170', '164', '334', '4', '112', 'Delhi College Of Engineeing', 'Electronics And Communication', '6.409000000000001', '100', '0')
(9389, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '800', '510', '1310', '3.5', '103', 'NIT Warangal', 'Computer science', '7.2', '10', '0')
(9390, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '600', '1380', '3', '97', 'Panjab University', 'Electronics and communication', '7.249', '100', '0')
(9391, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '780', '590', '1370', '3', '97', 'Sri Venkateswara College of Engineering', 'Computer Science', '8.2', '10', '0')
(9392, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '168', '152', '320', '4', '106', 'SASTRA', 'CSE', '9.37', '10', '12')
(9393, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '168', '157', '325', '3', '106', 'PESIT', 'Computer Science', '8.59', '10', '9')
(9394, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '167', '165', '332', 'None', '107', 'JNTU', 'EEE WES GPA : 3.9/4.0', '7.8', '100', '0')
(9395, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '154', '318', '4', '109', 'IIIT Allahabad', 'Information Technology', '8.54', '10', '0')
(9396, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '530', '1330', '3', '93', 'PICT', 'IT', '3.55', '4', '0')
(9397, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '790', '510', '1300', '4', '114', 'NIT Rourkela', 'Electronics and Communication Department', '9.45', '10', '0')
(9398, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Biomedical Engineering', 'Fall ', '2011', '720', '560', '1280', '5', '108', 'VJTI', 'Electrical Engineering', '7.4', '10', '0')
(9399, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2010', '780', '580', '1360', '4', '106', 'Anna University', 'Electronics and Communication', '7.4', '100', '0')
(9400, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2011', '790', '640', '1430', '4', '116', 'Sri Venkateswara College of Engineering', 'Computer Science and Engineering', '7.9', '100', '0')
(9401, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '167', '164', '331', '4.5', '117', 'R V College of Engineering', 'Electrical and Electronics', '8.5', '100', '55')
(9402, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '500', '1270', '3.5', '105', 'Anna University', 'C.S.E', '7.613', '10', '0')
(9403, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '165', '157', '322', '4.5', '116', 'Nanyang Technological University', 'EEE', '4.48', '5', '0')
(9404, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '167', '329', '5', '115', 'SRM', 'Computer science', '8.9', '10', '0')
(9405, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '155', '316', '3.5', '108', 'University of Calicut', 'Computer Science', '6.3', '100', '0')
(9406, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', '0', 'None', '152', '3', '155', '0', '101', 'BITS Pilani', 'EEE', '8', '10', '0')
(9407, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Biomedical Engineering', 'Fall ', '2013', '165', '157', '322', '3', '111', 'P.U.', 'UIET B.E.-Biotechnology', '7.2299999999999995', '100', '0')
(9408, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2009', '800', '670', '1470', '4', '115', 'NIT Calicut', 'Electrical and Electronics Engg', '8.4', '10', '0')
(9409, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '660', '1430', '4', '112', 'VIT University', 'Computer science engineering', '9.1', '10', '0')
(9410, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '660', '1450', '4.5', '109', 'VIT', 'Computer Science Engineering', '9.33', '10', '0')
(9411, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '161', '322', '3.5', '110', 'Nirma Institute of Technology', 'Information Technology', '7.87', '10', '0')
(9412, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '720', '1520', '3.5', '108', 'D J Sanghvi', 'Chemical Engineering', '6.7', '100', '0')
(9413, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '790', '540', '1330', '3', '96', 'Bangladesh University of Engineering & Technology', 'Industrial & Production Engineering', '3.84', '4', '0')
(9414, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '161', '322', '3.5', '108', 'C.S.V.T.U.', 'Computer Science and Engg', '8.53', '10', '0')
(9415, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '170', '167', '337', '4', '116', 'BITS Pilani', 'Electronics and Communication', '9.47', '10', '0')
(9416, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '560', '1360', '4', '102', 'MU', 'Computer Engineering', '6.5', '100', '0')
(9417, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Information Security', 'Fall ', '2012', '154', '144', '298', '3', '98', 'Anna University', 'CSE', '7.5', '100', '0')
(9418, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '159', '151', '310', '3.5', '101', 'D j Sanghvi', 'computer engineering', '6.9', '100', '0')
(9419, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '520', '1320', '3', '105', 'PESIT', 'Information Science and Engg', '8.8', '10', '0')
(9420, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '160', '153', '313', '3.5', '109', 'None', 'Information Technology', '9.19', '10', '0')
(9421, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and electrical engineering', 'Fall ', '2013', '164', '149', '313', '3', '104', 'Madras Institute of Technology', 'ECE', '8.2', '10', '0')
(9422, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall', 'None', '169', '165', '334', '3.5', '120', 'None', 'Electronics and Comm', '8.19', '10', '0')
(9423, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '155', '321', '3.5', '107', 'BITS Hyderabad', 'Information Systems', '7.98', '10', '0')
(9424, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '170', '166', '336', '3.5', '114', 'IIT Madras', 'Electrical Engineering', '6.7', '10', '7')
(9425, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'software engineering', 'Fall ', '2012', '760', '590', '1350', '3.5', '110', 'VTU', 'Computer Science and Engineering', '8', '100', '0')
(9426, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '168', '162', '330', '5', '116', 'BIT Mesra', 'ECE', '9.11', '10', '0')
(9427, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '740', '1540', '4', '112', 'Pune University', 'Instrumentation and Control', '6.4', '100', '0')
(9428, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and computer science', 'Fall ', '2012', '164', '153', '317', '4', '112', 'NIT Karnataka', 'Electronics and Communication Engineering', '8.87', '10', '0')
(9429, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '450', '1250', '3.5', '97', 'NIT Tirchy', 'INSTRUMENTATION & CONTROL ENGG', '7.98', '10', '0')
(9430, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '159', '160', '319', '4', '111', 'R V College of Engineering', 'Computer Science', '7.4', '100', '0')
(9431, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '154', '315', '4', '104', 'VTU', 'Computer Science', '7.665000000000001', '100', '46')
(9432, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '152', '315', '3.5', 'None', 'Pune University', 'Computer Science', '7', '100', '0')
(9433, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '580', '1360', '3', '110', 'K J Somaiya College of Engiineering', 'electronics', '6.345000000000001', '100', '0')
(9434, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '560', '1360', '3.5', '110', 'VTU', 'Computer Science', '7.2', '100', '0')
(9435, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '580', '1380', 'None', '105', 'MSRIT', 'Computer Science', '7.5', '100', '0')
(9436, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '800', '570', '1370', '3.5', '110', 'IIT Guwahati', 'Computer Science', '7.1', '10', '0')
(9437, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '630', '1390', '5', '112', 'RNSIT', 'Information Science', '7.5', '100', '0')
(9438, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '800', '600', '1400', '4', '111', 'Jaypee Institute of Information Technology', 'Electronics and Communications', '8.7', '10', '0')
(9439, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '760', '540', '1300', '3.5', 'None', 'NIT Warangal', 'ECE', '7.83', '10', '0')
(9440, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '169', '144', '313', '4', '102', 'Chulalongkorn', 'Mechanical Engineering', '3.34', '4', '0')
(9441, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '690', '1490', '3.5', '110', 'VITS', 'ECE', '8.2', '100', '0')
(9442, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '780', '660', '1440', '4', '113', 'MU', 'Information Technology', '6.7', '100', '22')
(9443, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '170', '168', '338', '4.5', '116', 'Pune University', 'B.E (Computer Science)', '5.7', '100', '15')
(9444, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '168', '159', '327', '4', '108', 'The Maharaja Sayajirao University', 'Electronics', '3.7', '4', '0')
(9445, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '166', '155', '321', '2.5', '98', 'BITS Goa', 'Mechanical', '8.36', '10', '0')
(9446, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Chemical Engineering', 'Fall ', '2012', '800', '630', '1430', '3.5', '108', 'Thapar University', 'Chemical Engineering Department', '7.1', '10', '0')
(9447, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '170', '149', '319', '3.5', '101', 'YMCA', 'Mechanical Engineering', '7.734', '10', '0')
(9448, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '167', '157', '324', '4', '105', 'Shah And anchor Kutchhi Engineering College', 'IT', '7.270999999999999', '100', '0')
(9449, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '146', '308', '4', '105', 'SSN College of Engineering', 'Information Technology', '8.2', '100', '0')
(9450, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '730', '560', '1290', '4', '113', 'Sri Sairam Engineering College', 'Information technology', '9', '100', '0')
(9451, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '158', '325', '5', '117', 'GGSIPU', 'Computer Science', '8.2', '100', '41')
(9452, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics Engineering', 'Fall ', '2013', '170', '159', '329', '3', '112', 'MU', 'Electronics', '7.4', '100', '0')
(9453, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '400', '1200', 'None', '91', 'BITS Goa', 'Computer Science', '7.59', '10', '0')
(9454, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and computer science', 'Fall ', '2011', '780', '660', '1440', '4', '117', 'Amrita School of Engineering', 'Electronics and Communication Engineering', '7.8', '100', '0')
(9455, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '158', '322', '3.5', '113', 'D J Sanghvi', 'computer engineering', '7.35', '100', '0')
(9456, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '167', '157', '324', '4', '116', 'Delhi College Of Engineeing', 'Electrical Engg', '7.540000000000001', '100', '0')
(9457, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '650', '1450', '4.5', '110', 'Gujarat Technological University', 'Electrical and Electronics', '7.56', '100', '0')
(9458, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '590', '1390', '3', '102', 'GITAM', 'Electronics and Communication', '9.02', '10', '0')
(9459, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '160', '154', '314', '3', '103', 'Khon Kaen University', 'Computer Engineering', '3.86', '4', '0')
(9460, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2016', '167', '154', '321', '3.5', '112', 'Motilal Nehru National Institute of Technology', 'Electronics and Communication Engineering', '9.17', '10', '49')
(9461, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '167', '155', '322', '3', 'None', 'IIT Guwahati', 'Mathematics and Computing', '7.56', '10', '0')
(9462, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '167', '154', '321', '4', '113', 'univ of kerala', 'ec', '8.8', '10', '0')
(9463, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical And Aerospace', 'Fall ', '2014', '163', '160', '323', '4.5', '113', 'University of Pune', 'Mechanical Engineering', '7.2', '100', '0')
(9464, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '780', '630', '1410', '4.5', '109', 'MU', 'Electronics and Telecommunication', '6.803', '100', '0')
(9465, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '160', '158', '318', '4', '117', 'Pune University', 'Computer Engineering', '3.23', '4', '0')
(9466, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '480', '1280', '3.5', '108', 'Sikkim Manipal Institute of Technology', 'CSE', '8.38', '10', '0')
(9467, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '164', '159', '323', '4', '116', 'NIT Tirchy', 'CSE', '8.72', '10', '34')
(9468, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '170', '160', '330', '4.5', '115', 'NIT Calicut', 'Computer Science and Engineering', '8.29', '10', '15')
(9469, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Chemical Engineering', 'Fall ', '2011', '780', '540', '1320', '3', '93', 'NIT Jalandhar', 'Chemical Engineering', '7.3', '10', '0')
(9470, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '780', '580', '1360', 'None', 'None', 'CEG', 'CS', '8', '10', '0')
(9471, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2013', '162', '152', '314', '3.5', '115', 'PSG College of Technology', 'Mechanical', '0.834', '100', '0')
(9472, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '170', '148', '318', '4', '108', 'SJCE', 'Electronics and Communication', '9.63', '10', '32')
(9473, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '166', '159', '325', '3', '107', 'IIT Indore', 'Electrical Engineering', '8.64', '10', '0')
(9474, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2013', '800', '530', '1330', '3.5', '110', 'NITK Surathkal', 'Mechanical Engineering', '8.34', '10', '0')
(9475, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'CS', 'Fall ', '2013', '770', '610', '1380', '4', '105', 'Gujarat Technological University', 'Computer Engg.', '8.1', '100', '0')
(9476, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '650', '1440', '4.5', '114', 'KIIT', 'ECE', '9.13', '10', '0')
(9477, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '170', '145', '315', '3', '108', 'Thapar University', 'Electronics and Communication', '8.52', '10', '0')
(9478, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '490', '1250', '3', '103', 'WBUT', 'MCA', '8', '10', '0')
(9479, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '153', '315', '3', '109', 'PSG College of Technology', 'IT', '9.09', '10', '19')
(9480, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '160', '156', '316', '4', '112', 'Panjab University', 'Computer Science and Engineering', '7.2', '100', '28')
(9481, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '168', '157', '325', '3.5', '110', 'VNIT Nagpur', 'ECE', '9.1', '10', '0')
(9482, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '600', '1400', '3.5', '107', 'Sri Venkateswara College of Engineering', 'Mechanical Engineering', '7.8', '100', '0')
(9483, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '166', '165', '331', '5.5', '112', 'Manipal Institue of Technology', 'Information Technology', '7.99', '10', '0')
(9484, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '790', '590', '1380', '4', '112', 'MU', 'Electronics', '7', '100', '0')
(9485, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '167', '153', '320', '3.5', '110', 'Panjab University', 'Electronics and communication', '8.16', '10', '0')
(9486, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2013', '166', '158', '324', '4.5', '113', 'NIT Calicut', 'Mechanical Engineering', '8.03', '10', '0')
(9487, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '150', '314', '3', '98', 'KLUniversity', 'Computer science and engineering', '8.67', '10', '0')
(9488, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '149', '308', '3.5', '104', 'SSN College of Engineering', 'Computer Science', '8.281', '100', '0')
(9489, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '570', '1370', '4', '103', 'NIT', 'Electrical Engineering', '6.5200000000000005', '100', '0')
(9490, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Nuclear Engineering', 'Fall ', '2011', '760', '660', '1420', '4.5', '114', 'NIT Bhopal', 'Electrical Engineering', '7.3', '10', '0')
(9491, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronic and Telecommunication Engineering', 'Fall ', '2012', '162', '152', '314', '3', '96', 'Sardar Patel University', 'Electronics and Telecommunication', '8.34', '10', '0')
(9492, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '168', '159', '327', '3.5', '104', 'University of Calicut', 'Computer Science', '7.01', '100', '30')
(9493, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '164', '157', '321', '3.5', '111', 'BIT Mesra', 'Electronics and Communication Engineering', '8.91', '10', '0')
(9494, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '170', '145', '315', '4', '110', 'PEC University of Technology', 'ECE', '9.2', '10', '0')
(9495, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '155', '317', '4.5', '114', 'Manipal Institue of Technology', 'Computer Science', '9.46', '10', '12')
(9496, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '165', '156', '321', '4.5', '112', 'MU', 'Computer Engineering', '7.1', '100', '30')
(9497, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2015', '160', '150', '310', '3.5', '100', 'MSRIT', 'Civil Engineering', '9.17', '10', '0')
(9498, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '600', '1400', '3.5', '102', 'NIT Tirchy', 'ELECTRONICS AND COMMUNICATION ENGINEERING', '8.53', '10', '0')
(9499, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '660', '1450', '4', '115', 'RNSIT', 'Electronics/communication', '7.7', '100', '0')
(9500, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '740', '610', '1350', '4', '108', 'Thiagarajar College of engineering', 'Mechanical Engineering', '8.7', '10', '0')
(9501, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '780', '520', '1300', '3.5', '108', 'PSG College of Technology', 'ECE', '9.17', '10', '0')
(9502, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '158', '319', '4', '107', 'VIT University', 'B.Tech Information Technology', '8.98', '10', '0')
(9503, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '450', '1250', '4', '102', 'CEG', 'Computer Science', '8.8', '10', '0')
(9504, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '790', '620', '1410', '3.5', '104', 'Madras Institute of Technology', 'Production engg', '8.4', '10', '0')
(9505, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '165', '152', '317', '4', '98', 'R V College of Engineering', 'ECE', '9.11', '10', '0')
(9506, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '162', '152', '314', '4', '110', 'VIT', 'Electronics and Communication Engineering', '8.89', '10', '0')
(9507, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '166', '159', '325', '3.5', '116', 'BITS Pilani', 'Electrical & Electronics Engineering', '7.58', '10', '0')
(9508, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '165', '162', '327', '3', '109', 'Sri Venkateswara College of Engineering', 'EEE', '7.11', '10', '0')
(9509, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '770', '620', '1390', '3.5', '112', 'Amrita School of Engineering', 'ECE', '7.24', '10', '0')
(9510, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2012', '780', '350', '1130', '3.5', '93', 'University of Mumbai', 'Instrumentation', '7', '100', '0')
(9511, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '580', '1380', '3', '104', 'VIT University', 'Electronics & Instrumentation', '9.01', '10', '0')
(9512, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '156', '149', '305', '3', '81', 'Walchand College Of Engineering', 'Computer sci and engg', '5.803', '100', '0')
(9513, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Electronics', 'Fall ', '2012', '780', '610', '1390', '3.5', '111', 'GTU', 'Electronics and Communication', '6.5', '100', '0')
(9514, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '170', '151', '321', '3.5', '109', 'BITS Pilani', 'EEE', '7.49', '10', '15')
(9515, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '580', '1380', '4', '112', 'Pune University', 'IT', '6.763', '100', '0')
(9516, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '167', '146', '313', 'None', '88', 'Madras Institute of Technology', 'information technology', '8.6', '10', '0')
(9517, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science/ Mgmt', 'Fall ', '2011', '780', '530', '1310', '3.5', '100', 'Sri manakula vinayagar engg college/Pondicherry university', 'computer science', '8.14', '10', '0')
(9518, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '550', '1350', '4.5', '108', 'Don Bosco Institute of Technology', 'Computers', '6.6', '100', '0')
(9519, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '165', '150', '315', '3.5', '100', 'COEP', 'I.T.', '7.65', '10', '54')
(9520, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2015', '161', '151', '312', '4', '107', 'MSRIT', 'Civil Engineering', '9.35', '10', '0')
(9521, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2014', '164', '157', '321', '4', '109', 'BITS Hyderabad', 'Mechanical Engineering', '7.25', '10', '0')
(9522, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '165', '155', '320', '4.5', '114', 'BITS Pilani', 'EEE', '8.46', '10', '9')
(9523, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '590', '1390', '4', '111', 'BITS Pilani', 'Computer Science', '8.7', '10', '0')
(9524, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '166', '165', '331', '4', '112', 'K.S. Institute of Technology', 'Computer Science and Engineering', '7.55', '100', '23')
(9525, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '790', '610', '1400', '3', '103', 'IET DAVV', 'Computer engineering', '7.1', '100', '0')
(9526, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '158', '153', '311', '4', '117', 'VTU', 'Information Science and Engineering', '7.5', '100', '0')
(9527, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '530', '1330', '3.5', '109', 'Cochin University of Science and Technology', 'Computer Science', '7.9', '100', '0')
(9528, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '164', '152', '316', '3.5', '106', 'NIT Calicut', 'Mechanical Engineering', '8.48', '10', '48')
(9529, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '159', '321', '3.5', '109', 'MIT', 'EEE', '8.85', '10', '0')
(9530, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '640', '1440', '4', '111', 'NITK Surathkal', 'ECE', '8.78', '10', '0')
(9531, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics & Communication', 'Fall ', '2012', '750', '630', '1380', '3.5', '110', 'SRM', 'ECE', '7.03', '10', '0')
(9532, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '760', '590', '1350', '3', '98', 'S.V Engineering College', 'Electrical & Electronics Engg', '7.2', '10', '0')
(9533, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '170', '155', '325', '3.5', 'None', 'IIT (BHU) Varanasi', 'Electrical', '7.91', '10', '0')
(9534, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '670', '1470', '4', '109', 'Thadomal Shahani Engineering College', 'Information Technology', '6.4', '100', '0')
(9535, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '165', '159', '324', '5', '111', 'Amrita School of Engineering', 'Computer Science', '8.93', '10', '0')
(9536, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2015', '170', '161', '331', '4', '119', 'NIT Karnataka', 'Electronics & Communication', '8.9', '10', '21')
(9537, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '150', '315', '3', '106', 'Sri Venkateswara College of Engineering', 'Information Technology', '7.8', '100', '0')
(9538, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '154', '152', '306', '3.5', '105', 'D J Sanghvi', 'IT', '7.2', '100', '36')
(9539, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '165', '157', '322', '3', 'None', 'None', '0', '8.68', '10', '0')
(9540, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '162', '157', '319', '4', '113', 'BIT Mesra', 'Mechanical', '8.5', '10', '0')
(9541, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '165', '155', '320', '4', 'None', 'VIT University', 'B.Tech Electronics and Communication', '8.99', '10', '0')
(9542, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '14', '162', '168', '330', '4', 'None', 'MU', 'Computers', '6.45', '100', '0')
(9543, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '165', '156', '321', '4', '114', 'VTU', 'ece', '7.6', '100', '0')
(9544, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '540', '1330', '4', '109', 'BESU Shibpur', 'Information Technology', '8.9', '100', '0')
(9545, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '164', '157', '321', '3.5', '104', 'IIT Guwahati', 'Mechanical', '6.23', '10', '0')
(9546, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '153', '314', '4', '113', 'MU', 'Computer Engineering', '6.0280000000000005', '100', '0')
(9547, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '170', '155', '325', '3.5', '110', 'BITS Hyderabad', 'Electronics & Communication', '9.26', '10', '0')
(9548, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '155', '322', '3', '110', 'Mukesh Patel School of Technology Management and Engineering', 'Information Technology', '3.22', '4', '0')
(9549, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '730', '1500', '4', '113', 'CoE Trivandrum', 'Computer science', '7.1', '100', '0')
(9550, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '800', '670', '1470', '4', '114', 'University of Pune', 'Computer', '5.9', '100', '0')
(9551, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '168', '156', '324', '4.5', '114', 'University of Pune', 'Mechanical Engg.', '7.734999999999999', '100', '12')
(9552, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2007', '780', '370', '1150', '5', '270', 'College of Technology Pantnagar', 'Electronics and Communication Engineering', '7.922', '10', '0')
(9553, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'CS', 'Fall ', '2014', '168', '156', '324', '4', '103', 'IIT', 'ECE', '7.4', '10', '36')
(9554, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Networks', 'Spring ', '2014', '167', '150', '317', '3.5', '97', 'CEG', 'Electronics and communication engineering', '7.84', '10', '0')
(9555, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '156', '319', '3', 'None', 'Coimbatore Insitute of Technology', 'CSE', '8.1', '10', '0')
(9556, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '163', '150', '313', '3', '107', 'VIT University', 'EEE', '8.68', '10', '0')
(9557, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Operations Research', 'Fall ', '2013', '165', '162', '327', '5', '114', 'NITK Surathkal', 'EEE', '7.57', '10', '0')
(9558, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '162', '324', '3.5', '113', 'SASTRA', 'ICT', '8.32', '10', '24')
(9559, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '151', '316', '4.5', '110', 'VTU', 'Computer Science', '7.9', '100', '0')
(9560, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '167', '163', '330', '4', '111', 'BITS Pilani', 'BE EEE', '0.8300000000000001', '100', '24')
(9561, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '169', '153', '322', '3.5', '100', 'Thiagarajar College of engineering', 'ECE', '8.78', '10', '0')
(9562, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'EE / CE / CS', 'Fall ', '2015', '170', '158', '328', '3.5', '113', 'NIT Warangal', 'Electronics and Communication Engg', '8.3', '10', '30')
(9563, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '163', '330', '5.5', '116', 'VIT University', 'ECE', '8.81', '10', '0')
(9564, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2010', '790', '610', '1400', '3', '108', 'JNTU', 'Information Technology', '7.9', '100', '0')
(9565, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '165', '150', '315', '3.5', '104', 'BITS Hyderabad', 'Electrical and Electronics Engineering', '7.8', '10', '0')
(9566, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '166', '154', '320', '4.5', '108', 'NIT Allahabad', 'Computer Science and Engineering', '7.67', '10', '0')
(9567, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Materials Science & Engineering', 'Fall ', '2011', '800', '630', '1430', '4', '110', 'IIT Madras', 'Metallurgical and Materials Engineering', '7.47', '10', '0')
(9568, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '164', '151', '315', '3.5', '105', 'Shah And anchor Kutchhi Engineering College', 'Computer Engineering', '7.62', '100', '0')
(9569, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Information Management', 'Fall ', '2015', '166', '159', '325', '4', '114', 'EEC', 'IT', '8.34', '10', '12')
(9570, 'Georgia Institute of Technology', '14', 'Reject', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '163', '157', '320', '3.5', '100', 'VSS Univ of Technology', 'Mechanical Engineering', '7.68', '10', '77')
(9571, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '162', '157', '319', '4', '108', 'R V College of Engineering', 'Computer Science', '7.8', '100', '0')
(9572, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '162', '157', '319', '4', '108', 'VTU', 'Computer Science', '7.933', '100', '0')
(9573, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '530', '1330', '4', '108', 'Anna University', 'Computer Science and Engineering', '8.1', '100', '0')
(9574, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '160', '327', '4', '112', 'MU', 'CS', '6.864', '100', '0')
(9575, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Information Security', 'Fall ', '2014', '152', '161', '313', '3', '105', 'PSG College of Technology', 'Computer Science & Engineering', '8.9', '10', '60')
(9576, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '750', '570', '1320', '4', '113', 'University of Pune', 'Computer Engineering', '6.1', '100', '0')
(9577, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Aerospace Engineering', 'Spring ', '2014', '166', '165', '331', '4', '112', 'NIT Calicut', 'Mechanical Engineering', '8.12', '10', '0')
(9578, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '149', '310', '3', '99', 'Sri Jayachamarajendra College of Engineering', 'Electronics and Communication', '9.52', '10', '0')
(9579, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Civil Engineering', 'Spring ', '2011', '780', '570', '1350', '3.5', '112', 'Bapatla Engineering College', 'Civil Engineering', '8.99', '100', '0')
(9580, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '168', '155', '323', '3.5', '105', 'NIT Warangal', 'Electronics and Communication Engineering', '8.88', '10', '36')
(9581, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '153', '314', 'None', '112', 'Coimbatore Insitute of Technology', 'Computer technology and Applications', '8', '100', '0')
(9582, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Information Security', 'Fall ', '2014', '159', '149', '308', '3', '103', 'SASTRA', 'Computer Science', '7.5', '10', '0')
(9583, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '150', '315', '4', '102', 'Madras Institute of Technology', 'Computer Science', '8.9', '10', '0')
(9584, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '740', '570', '1310', '4', '114', 'SIES Graduate School of Technology', 'Computer engineering', '7.0680000000000005', '100', '0')
(9585, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2010', '790', '530', '1320', '3', '100', 'VTU', 'Information Science & Engineering', '6.809', '100', '0')
(9586, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '153', '318', '4', '104', 'CHARUSAT', 'Computer Engineering', '8.58', '10', '0')
(9587, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '157', '144', '301', '3.5', '97', 'MU', 'Computer Engineering', '7.5', '100', '0')
(9588, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '162', '154', '316', '3.5', '114', 'VTU', 'Electronics and Communication', '8.31', '10', '0')
(9589, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Spring ', '2014', '163', '142', '305', '3.5', '102', 'G. H. Patel College of Engineering and Technology', 'Mechatronics', '8.06', '10', '0')
(9590, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '164', '157', '321', '3.5', '110', 'None', '0', '7.5', '100', '24')
(9591, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2013', '165', '150', '315', 'None', 'None', 'Punjabi University', 'B.tech', '7.55', '10', '0')
(9592, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '168', '157', '325', '3', '105', 'ISM Dhanbad', 'Computer Science & Engineering', '7.83', '10', '0')
(9593, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '168', '154', '322', '4', '112', 'L D College Of Engineering', 'Electronics & Communication', '8.75', '10', '0')
(9594, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '160', '321', '4', '113', 'BITS Dubai', 'Computer Science', '9.07', '10', '0')
(9595, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '166', '151', '317', '3.5', '101', 'VRSEC', 'CSE', '8.6', '100', '0')
(9596, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '168', '155', '323', '3.5', '111', 'IIITDM Jabalpur', 'ECE', '8.8', '10', '0')
(9597, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '520', '1310', '3', '102', 'Pune University', 'Computer Science and engineering', '6.92', '100', '0')
(9598, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '169', '158', '327', '4.5', 'None', 'R V College of Engineering', 'ECE', '8.52', '100', '0')
(9599, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '740', '530', '1270', '3', '108', 'PICT', 'Information Technology', '7.236', '100', '0')
(9600, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '780', '590', '1370', '4', '103', 'Thadomal Shahani Engineering College', 'EXTC', '0', '0', '0')
(9601, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '600', '1400', '3', '104', 'VTU', 'Computer Science', '8.2', '100', '0')
(9602, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2013', '168', '157', '325', '4', 'None', 'NIT Tirchy', 'Production Engineering', '8.96', '10', '0')
(9603, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '168', '156', '324', '3', '98', 'SNIST', 'E.C.E', '8.1', '100', '0')
(9604, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '153', '318', '4', '105', 'Siddaganga Institue of Technology', 'information science and engg', '9.34', '10', '0')
(9605, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '162', '159', '321', '4', '115', 'VTU', 'Comp Science', '7.9', '100', '0')
(9606, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '550', '1350', '4.5', '109', 'MSRIT', 'CSE', '9.07', '10', '0')
(9607, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '152', '314', '3.5', '114', 'Vidyalankar Institute of Technology', 'computer science', '6.7', '100', '36')
(9608, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '580', '1370', '3', '107', 'PSG College of Technology', 'B.E (CSE)', '8.8', '10', '0')
(9609, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '660', '1440', '3', '114', 'MU', 'electronics and telecomm', '7.1', '100', '0')
(9610, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2011', '800', '610', '1410', '3.5', '109', 'Anna University', 'Information Technology', '7.7', '100', '0')
(9611, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '800', '550', '1350', '3', '108', 'NITK Surathkal', 'ECE', '8.2', '10', '0')
(9612, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '170', '163', '333', '4.5', '112', 'Netaji Subhas Institute of Technology', 'Information Technology', '7.2', '100', '36')
(9613, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '168', '153', '321', '3.5', '106', 'Manipal Institue of Technology', 'ECE', '8.62', '10', '0')
(9614, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '510', '1310', '3', '100', 'Jaypee Institute of Information Technology', 'ECE', '7', '10', '0')
(9615, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '157', '165', '322', '3.5', 'None', 'VTU', 'Information Science', '7.6', '100', '0')
(9616, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '169', '153', '322', '3.5', '108', 'NSIT', 'Maufacturing and Automation', '7.3', '100', '0')
(9617, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '167', '162', '329', '4', '100', 'Delhi University', 'Electronics and Communication', '7.3', '100', '0')
(9618, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '158', '324', '3', '111', 'BITS Goa', 'Computer Science', '7.14', '10', '12')
(9619, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '790', '570', '1360', '3.5', '107', 'ANU', 'Computer Science', '8.5', '100', '0')
(9620, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2006', '790', '680', '1470', '5', '293', 'Model Engineering College', 'Electronics And Communication', '8.2', '100', '0')
(9621, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '159', '151', '310', '4', '107', 'Bangalore Institute of Technology', 'ISE', '7.176', '100', '28')
(9622, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2015', '161', '153', '314', '4', '111', 'Sri Venkateswara College of Engineering', 'EEE', '8.8', '10', '0')
(9623, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '167', '155', '322', '4', 'None', 'SASTRA', 'Computer science and engineering', '8.48', '10', '0')
(9624, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '790', '590', '1380', '4', '113', 'GGSIPU', 'Electronics and Communication', '7.6', '100', '0')
(9625, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '153', '316', '3.5', '110', 'VTU', 'Computer Science', '8.86', '10', '0')
(9626, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '420', '1200', '3', '91', 'K J Somaiya College of Engiineering', 'Computer Science', '0', '0', '0')
(9627, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '520', '1320', '3.5', '104', 'Pune University', 'Computer', '6.6', '100', '0')
(9628, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '167', '158', '325', '4.5', '108', 'VIT Pune', 'Mechanical', '8.69', '10', '0')
(9629, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '800', '360', '1160', '3', '103', 'MU', 'Electronics and Communicatiion', '7.128', '100', '0')
(9630, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '790', '530', '1320', '4', '112', 'Heritage Institute of Technology Kolkata', 'Computer Science and Engineering', '9.19', '10', '0')
(9631, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '630', '1430', '4', '104', 'Anna University', 'ECE', '9.02', '10', '0')
(9632, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '790', '580', '1370', '4.5', '114', 'VIT University', 'School Of Electrical Engineers', '8.85', '10', '0')
(9633, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '780', '650', '1430', '3', '110', 'MU', 'IT', '7.4', '100', '0')
(9634, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '790', '670', '1460', '5', '112', 'MU', 'Computer', '6.1', '100', '0')
(9635, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '169', '167', '336', '4', '119', 'Sardar Patel University', 'Computer Engineering', '8.14', '10', '32')
(9636, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '147', '309', '3', '110', 'SJCE', 'CSE', '8.86', '10', '0')
(9637, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'environmental engineering', 'Fall ', '2012', '790', '600', '1390', '4', '109', 'MU', 'Chemical Engineering', '7', '100', '0')
(9638, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '168', '156', '324', '5', '115', 'VTU', 'Information Science & Engineering', '8.66', '10', '0')
(9639, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '710', '1510', '4', '115', 'None', 'Electronics & Communication', '7', '100', '0')
(9640, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '159', '155', '314', '4', '110', 'None', 'E&Tc;', '6.4', '100', '0')
(9641, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Spring ', '2013', '790', '600', '1390', '3', 'None', 'Shri Guru Gobind Singhji Institute of Engineering And Technology', 'Electronics and Telecommunication', '7.7', '10', '0')
(9642, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '160', '322', '3.5', '113', 'Pune University', 'Computer Engineering', '3.36', '4', '31')
(9643, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '166', '155', '321', '4', '117', 'MU', 'CS', '6.8', '100', '0')
(9644, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '400', '1190', '3.5', '100', 'Anna University', 'CS', '7.6', '100', '0')
(9645, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '540', '1340', '3.5', '108', 'Manipal Institue of Technology', 'Mechanical', '8.73', '10', '0')
(9646, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '166', '327', '4', '114', 'SSN College of Engineering', 'Computer Science Engineering', '8.06', '10', '0')
(9647, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '167', '157', '324', '4', '102', 'SASTRA', 'CSE', '6.9', '10', '0')
(9648, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '164', '153', '317', 'None', '101', 'BITS Goa', 'Electrical & Electronics', '6.6', '10', '0')
(9649, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '770', '690', '1460', '3', '105', "Vivekanand Educational Society's Institute Of Technology Mumbai", 'Electronics and Telecommunication', '6.5', '100', '0')
(9650, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '410', '1190', 'None', '90', 'R V College of Engineering', 'Information Science & Engg', '7.8', '100', '0')
(9651, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '750', '660', '1410', '3.5', '107', 'Anna University', 'EEE', '8.1', '100', '0')
(9652, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Chemical Engineering', 'Fall ', '2012', '760', '480', '1240', '3.5', '104', 'Padmashree Dr D Y Patil University', 'Biotechnology', '6.8', '100', '0')
(9653, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '164', '149', '313', '3', '104', 'Nirma Institute of Technology', 'Electronics and Communication Engineering', '8.1', '10', '0')
(9654, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '166', '155', '321', '3', 'None', 'VIT', 'Electrical and Electronics Engineering', '7.97', '10', '0')
(9655, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '530', '1310', '3.5', '109', 'MU', 'Electronics', '7.05', '100', '0')
(9656, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '530', '1320', '3', '100', 'University of Mumbai', 'EXTC', '7', '100', '0')
(9657, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '169', '150', '319', '3.5', '110', 'NITK Surathkal', 'Information Technology', '8.92', '10', '0')
(9658, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '690', '1490', '4.5', '118', 'PESIT', 'ISE', '8.55', '10', '0')
(9659, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2013', '168', '157', '325', '4', '116', 'IIT Roorkee', 'Mechanical & Industrial', '8', '10', '0')
(9660, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and electrical engineering', 'Fall ', '2013', '162', '160', '322', '4', '113', 'BMSCE', 'ECE', '7.8', '100', '0')
(9661, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '167', '146', '313', '3.5', '95', 'B V Bhoomaraddi College of Engg & Tech (Affiliated to VTU)', 'Electronics and Communication', '7.6', '100', '0')
(9662, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '540', '1340', '4', '106', 'Pune University', 'computer', '6.7', '100', '0')
(9663, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '580', '1380', '4', '110', 'BVBCET', 'Computer science', '7.555', '100', '0')
(9664, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '168', '159', '327', '4', '111', 'IIT BHU', 'Electrical Engineering', '8.23', '10', '0')
(9665, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '151', '313', '4.5', '108', 'Shivaji University', 'Computer Science', '6.7', '100', '0')
(9666, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '770', '540', '1310', '3.5', '114', 'Thadomal Shahani Engineering College', 'Computer Engineering', '6.8', '100', '0')
(9667, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '159', '149', '308', '3.5', '101', 'Mepco Schlenk Engineering College', 'Electronics and Communication', '9', '10', '0')
(9668, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '620', '1420', '4', '108', 'NIT Bhopal', 'Computer Science and Engineering', '7.95', '10', '0')
(9669, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '160', '321', '3', '109', 'MU', 'Electronics and Telecommunication', '6.720999999999999', '100', '18')
(9670, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '520', '1320', '4', '90', 'Reputed private institute [deemed university] equivalent in standard to a upper-middle-ranked NIT', 'Computer Science', '6', '10', '0')
(9671, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Information Security', 'Fall ', '2011', '780', '540', '1320', '4', '117', 'BITS Pilani', 'Computer Science', '8.4', '10', '0')
(9672, 'Georgia Institute of Technology', '14', 'Reject', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '167', '153', '320', '4.5', '113', 'Dhirubhai Ambani Institute of Information & Communication Technology', 'Information and Communication Technology', '6.4', '10', '24')
(9673, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '520', '1320', '4', '113', 'University of Mumbai', 'Computer', '6.8', '100', '0')
(9674, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '780', '440', '1220', '3', '104', 'VIT', 'Informatin Technology', '9.72', '10', '0')
(9675, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '165', '151', '316', '3.5', '113', 'nitk', 'ee', '7.59', '10', '24')
(9676, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'CS / SE / IT / MIS', 'Fall ', '2013', '164', '166', '330', '4', '119', 'WBUT', 'CSE', '7.83', '10', '0')
(9677, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'None', 'Fall ', '2013', '164', '153', '317', '4', '114', 'CEG', 'Manufacturing Engineering', '8.81', '10', '0')
(9678, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '650', '1400', '3.5', '110', 'SASTRA', 'CSE', '9.1', '10', '0')
(9679, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '560', '1310', '4', '112', 'Faculty of Technology Dharmsinh Desai University', 'Computer Engineering', '6.8', '100', '0')
(9680, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '680', '1480', '3', '106', 'SSN College of Engineering', 'ECE', '8.370000000000001', '100', '0')
(9681, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '670', '1470', '3.5', '111', 'NIT Tirchy', 'E.C.E', '9.67', '10', '0')
(9682, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '170', '148', '318', '3.5', '101', 'Nirma Institute of Technology', 'Electronics and communication', '8.28', '10', '0')
(9683, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '168', '153', '321', '3.5', '108', 'NIT Rourkela', 'Electrical', '8.74', '10', '0')
(9684, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '740', '560', '1300', '3', '103', 'The National Institute of Engineering', 'Information Science(same as Computer science differing in terms of electives towards the last 3 semesters of engineering)', '7.654999999999999', '100', '0')
(9685, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '158', '152', '310', '3', '113', 'Goa University', 'Electronics and Telecommunications', '7', '100', '40')
(9686, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '167', '157', '324', '4.5', '110', 'NIT Calicut', 'Mechanical Engineering', '7.11', '10', '0')
(9687, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '700', '1480', '4', '116', 'Amrita School of Engineering', 'Computer Science', '8.74', '10', '0')
(9688, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2015', '170', '157', '327', '3.5', '112', 'IIT Madras', 'Electrical Engineering', '8.4', '10', '14')
(9689, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '540', '1310', '4', '102', 'Rajiv Gandhi Technical University', 'Computer Science', '7.3', '100', '0')
(9690, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2013', '163', '149', '312', '3.5', '98', 'Manipal Institue of Technology', 'Industrial and production', '9.01', '10', '0')
(9691, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '154', '315', '4.5', '106', 'MU', 'Information Technology', '6.723000000000001', '100', '24')
(9692, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '170', '156', '326', '3.5', '109', 'BITS Pilani', 'Computer Science', '7.6', '10', '0')
(9693, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '165', '150', '315', '3.5', '107', 'PEC University of Technology', 'Electronics', '9.6', '10', '0')
(9694, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '165', '163', '328', '4', '115', 'Pune University', 'Computer Engineering', '7.553', '100', '0')
(9695, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '720', '1520', '3.5', '106', 'DU', 'EE', '7.1', '100', '0')
(9696, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '158', '321', '3', '115', 'VIT', 'Computer Science', '8.8', '10', '0')
(9697, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '166', '167', '333', '4.5', '113', 'Punjab Engineering College', 'Mechanical Engineering', '7.74', '10', '0')
(9698, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '570', '1330', '4', '107', 'RMK Engineering College', 'Computer science', '7', '100', '0')
(9699, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '164', '150', '314', '4', 'None', 'CEG', 'Computer Science', '8.99', '10', '0')
(9700, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '154', '317', '3', '101', 'MU', 'Computer Engineering', '7.6', '100', '0')
(9701, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '680', '1450', '4.5', '116', 'MU', 'Computers', '6.4', '100', '0')
(9702, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and computer science', 'Fall ', '2011', '800', '580', '1380', '4', '111', 'COEP', 'Electronics and Telecommunication', '8.52', '10', '0')
(9703, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '800', '700', '1500', '4', '116', 'COEP', 'Computer Engineering', '9.16', '10', '0')
(9704, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2010', '800', '730', '1530', '4.5', '118', 'Jaypee Institute of Information Technology', 'Information Technology', '8', '10', '0')
(9705, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics & Communication', 'Fall ', '2013', '162', '151', '313', '4', '99', 'VIT', 'Electronics & Communication', '8.76', '10', '0')
(9706, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2011', '800', '610', '1410', '3', '112', 'IIT Kanpur', 'Civil Engineering', '8.4', '10', '0')
(9707, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '160', '324', '3', '108', 'WBUT', 'CSE', '8.19', '10', '42')
(9708, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '560', '1360', '4', '116', 'Anna University', 'IT', '8.97', '10', '0')
(9709, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '159', '322', '4.5', '111', 'BITS Hyderabad', 'Electronics and Communication', '7.63', '10', '30')
(9710, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2013', '158', '157', '315', '4.5', '110', 'Moscow Aviation Institute(National Research University) Moscow Russia', 'Aerospace', '4.3', '5', '0')
(9711, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '156', '149', '305', '4', '108', 'MSRIT', 'Computer Science', '9.67', '10', '0')
(9712, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '610', '1410', '3.5', '113', 'MANIT Bhopal', 'Computer Science and Engineering', '8.89', '10', '0')
(9713, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '152', '315', '3.5', '104', 'BIT Mesra', 'COMPUTER SCIENCE', '8.7', '10', '0')
(9714, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '156', '320', '3', '107', 'BITS Pilani', 'Computer Science', '8.19', '10', '24')
(9715, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '159', '323', '4', '113', 'VTU', 'CS', '8', '100', '0')
(9716, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '168', '157', '325', '4.5', '115', 'R V College of Engineering', 'Electronics and Communication', '9.06', '10', '0')
(9717, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '158', '319', '4', '119', 'MU', 'Information Technology', '6', '100', '0')
(9718, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'CS/ EE', 'Fall ', '2015', '158', '169', '327', '4', '113', 'IIT Roorkee', 'Electrical', '7.66', '10', '32')
(9719, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '158', '323', '4', '113', 'VIT', 'Computer Science', '8.92', '10', '0')
(9720, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '157', '157', '314', '4', '113', 'PICT', 'I.T.', '6', '100', '0')
(9721, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '500', '1260', '4', '98', 'Xavier Institute of Engineering University of Mumbai', 'Computer Engineering', '6.0084', '100', '0')
(9722, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '170', '152', '322', '4', '110', 'VIT University', 'Energy Division', '8.62', '10', '0')
(9723, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '790', '570', '1360', '4', '103', 'MU', 'Computer', '6.6', '100', '0')
(9724, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '155', '322', '4', '108', 'BITS Pilani', 'Computer Science', '6.8', '10', '0')
(9725, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '163', '151', '314', '4.5', '108', 'Sri Jayachamarajendra College of Engineering', 'EEE', '9.4', '10', '17')
(9726, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '167', '157', '324', '3.5', '102', 'None', 'Mechanical', '8', '100', '29')
(9727, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '150', '164', '314', '3', '102', 'Shah And anchor Kutchhi Engineering College', 'Computers', '5.9270000000000005', '100', '0')
(9728, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '159', '148', '307', '3', '101', 'University of Pune', 'Mechanical', '6.8', '100', '0')
(9729, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '165', '158', '323', '3.5', '112', 'Dharamsinh Desai University', 'computer engineering', '8.3', '10', '12')
(9730, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '670', '1430', '3.5', '107', 'JNTU', 'ECE', '7.8', '100', '0')
(9731, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(9732, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '490', '1260', '3.5', '107', 'NIT Karnataka', 'IT', '8.98', '10', '0')
(9733, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '790', '560', '1350', '4.5', '110', 'Sinhgad College of Engineering', 'Mechanical Engineering', '6.6', '100', '0')
(9734, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '170', '156', '326', '3', '107', 'IIT Bombay', 'Electical Engineering', '7.81', '10', '0')
(9735, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '156', '156', '312', '4', '97', 'Pune University', 'Information Technology', '5.301', '100', '19')
(9736, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Biomedical Engineering', 'Fall ', '2011', '790', '520', '1310', '3', '99', 'BITS Pilani', 'Electronics & Instrumentation', '8', '10', '0')
(9737, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '166', '160', '326', '4.5', '110', 'NIT Karnataka', 'Electronics and Communication Engineering', '7.75', '10', '0')
(9738, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and computer science', 'Fall ', '2010', '780', '530', '1310', '3.5', '109', 'Jaypee Institute of Information Technology', 'ECE', '8.2', '10', '0')
(9739, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2014', '165', '159', '324', '4', '109', 'BITS Goa', 'Mechanical', '7.28', '10', '55')
(9740, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '149', '314', '3.5', '103', 'NIT Rourkela', 'Computer Science and Engineering', '8.54', '10', '0')
(9741, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Data Informatics', 'Fall ', '2015', '158', '151', '309', '4', '109', 'Manipal Institue of Technology', 'Computer Science and Engineering', '8.28', '10', '0')
(9742, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '156', '322', '4', '112', 'LNMIIT', 'CSE', '7.49', '10', '0')
(9743, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Data Science', 'Fall ', '2015', '167', '154', '321', '4', '117', 'VTU', 'ISE', '6.9', '100', '0')
(9744, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '162', '150', '312', '4', '102', 'Sardar Patel College of Engineering', 'Electronics', '8.058', '100', '0')
(9745, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '790', '570', '1360', '3.5', '116', 'JNTU', 'Electronics and Communication', '8.1', '100', '0')
(9746, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '158', '319', '3.5', 'None', 'University of Kerala', 'Computer Science and Engineering', '8.1', '10', '0')
(9747, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '168', '168', '336', '4', '111', 'Sardar Patel College of Engineering', 'Electronics', '7.587000000000001', '100', '0')
(9748, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '164', '162', '326', '4', '114', 'MU', 'IT', '7.6', '100', '24')
(9749, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '168', '162', '330', '4', '113', 'Netaji Subhas Institute of Technology', 'Manufacturing Processes & Automation', '7.2', '100', '46')
(9750, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '166', '153', '319', '4.5', '108', 'MU', 'Computer Engineering', '6.7', '100', '0')
(9751, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '166', '156', '322', '3.5', '109', 'Veermata Jijabai Technological Institute', 'Computer Technology', '8.3', '10', '22')
(9752, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2011', '760', '600', '1360', '4', '113', 'Anna University', 'ECE', '9.1', '10', '0')
(9753, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '157', '150', '307', '3.5', '101', 'Siddaganga Institue of Technology', 'Electrical and Electronics Engineering', '9.2', '10', '0')
(9754, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '160', '154', '314', '3.5', '109', 'SASTRA', 'ECE', '7.704', '10', '0')
(9755, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '165', '155', '320', '3.5', '113', 'None', '0', '3.2', '4', '44')
(9756, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '170', '157', '327', '4.5', '111', 'SASTRA', 'CS', '8.14', '10', '24')
(9757, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '159', '321', '4', 'None', 'JNTU', 'Computer Science', '7.359999999999999', '100', '0')
(9758, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2013', '161', '159', '320', '4', '117', 'Datta Meghe College of Engineering', 'Mechanical Engineering', '7.05', '100', '0')
(9759, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '800', '460', '1260', '3.5', 'None', 'MU', 'Computer Engineering', '7.212000000000001', '100', '0')
(9760, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2013', '770', '540', '1310', '4', '109', 'VTU', 'Civil Engineering', '7.46', '10', '0')
(9761, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '720', '450', '1170', '3.5', '107', 'VTU', 'Computer Science', '7.1', '100', '0')
(9762, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '710', '1510', '3.5', '112', 'MU', 'Computer Engg', '6.15', '100', '0')
(9763, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '800', '640', '1440', '4.5', '114', 'COEP', 'Computer Engineering', '9.31', '10', '0')
(9764, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and computer science', 'Fall ', '2011', '800', '410', '1210', '4', '104', 'NITK Surathkal', 'Electrical and Electronics', '8.01', '10', '0')
(9765, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2012', '780', '570', '1350', '3.5', '95', 'Jaypee Institute of Information Technology', 'ECE', '8.5', '10', '0')
(9766, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '780', '610', '1390', '3.5', '108', 'Pune University', 'Computer engg', '8.54', '10', '0')
(9767, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical & Computer Engg/MIS/Industrial/Systems Engg', 'Fall ', '2012', '166', '158', '324', '3', '111', 'Amrita Vishwa Vidhyapeetham', 'Electronics & Intrumentation', '8.04', '10', '0')
(9768, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '160', '325', '4.5', '108', 'VTU', 'CSE', '8.46', '10', '0')
(9769, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2012', '740', '570', '1310', '3', '101', 'Siddaganga Institue of Technology', 'Information Science and Engineering', '7.4799999999999995', '100', '0')
(9770, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '790', '540', '1330', '4', '107', 'S.P.I.T. Mumbai University', 'Computer Engineering', '7.898000000000001', '100', '0')
(9771, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mech and Elec', 'Fall ', '2012', '800', '570', '1370', '4', 'None', 'None', '0', '8.07', '10', '0')
(9772, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '154', '320', '3.5', '107', 'D. A. V. V.', 'Information Technology', '6.503', '100', '0')
(9773, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '157', '154', '311', '4.5', '115', 'Anna University', 'CSE', '8', '100', '0')
(9774, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '166', '150', '316', '3', '100', 'MU', 'Electronics and Telecommunication', '6.8', '100', '0')
(9775, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '158', '322', '4', '113', 'NIT Bhopal', 'Information Technology', '8.58', '10', '0')
(9776, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '168', '149', '317', '4', '109', 'MU', 'Computers', '7.590000000000001', '100', '0')
(9777, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Electronics', 'Fall ', '2012', '159', '155', '314', '3.5', '102', 'Sardar Patel University', 'Electronics & Communication', '3.45', '4', '0')
(9778, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics & Communication', 'Spring ', '2014', '170', '144', '314', '3.5', '94', 'GCET V.V.Nagar', 'Electronics & Communication', '7.6', '10', '0')
(9779, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and computer science', 'Fall ', '2010', '760', '520', '1280', '4', '107', 'Anna University', 'EEE', '8.73', '100', '0')
(9780, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '161', '148', '309', '3', '107', 'PESIT', 'Electronics and Communication', '8.94', '10', '31')
(9781, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2010', '770', '650', '1420', '4', '110', 'Birla Vishvakarma Mahavidyalaya', 'CS', '9.19', '10', '0')
(9782, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '800', '570', '1370', '4', '117', 'Osmania University', 'I.T.', '8.23', '100', '0')
(9783, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Biological Sciences Biotechnology ', 'Fall ', '2013', '161', '164', '325', '3.5', '111', 'Sathyabama University', 'Biotechnology', '8.1', '100', '0')
(9784, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '169', '153', '322', '4', '118', 'NITK Surathkal', 'ECE', '8.84', '10', '0')
(9785, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '168', '162', '330', '4', 'None', 'GGSIPU', 'ECE', '6.8', '100', '42')
(9786, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '800', '610', '1410', '3.5', '113', 'University of Alberta', 'Computing Science', '3.8', '4', '0')
(9787, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '157', '319', '5', '115', 'NIT', 'Computer Engineering', '7.5', '10', '0')
(9788, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '166', '161', '327', '4', '116', 'JNTU', 'Mechanical Engineering', '6.934', '100', '24')
(9789, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2015', '167', '157', '324', '4', '108', 'Anna University', 'ECE', '9', '10', '0')
(9790, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '168', '155', '323', '4.5', '105', 'BITS Pilani', 'Electrical & Electronics', '7.81', '10', '0')
(9791, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '540', '1320', '3.5', '96', 'Gautam Buddh Technical University', 'Information Technology', '7.351999999999999', '100', '0')
(9792, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '600', '1400', '3', '104', 'Thapar University', 'ECE', '8.77', '10', '0')
(9793, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Materials Science & Engineering', 'Fall ', '2013', '163', '156', '319', '4', '109', 'VIT University', 'Mechanical', '8.98', '10', '0')
(9794, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'CS', 'Fall ', '2013', '157', '159', '316', '3.5', '108', 'MU', 'I.T.', '7.2', '100', '0')
(9795, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '154', '316', '3.5', '116', 'None', 'IT', '9.47', '10', '0')
(9796, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '500', '1290', '3.5', '91', 'MU', 'Electronics and Telecommunication', '3.97', '4', '0')
(9797, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '165', '156', '321', '3', '114', 'BMSCE', 'Telecom', '9.5', '10', '18')
(9798, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '154', '316', '4', '105', 'SSN College of Engineering', 'Information technology', '8.73', '10', '0')
(9799, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '730', '550', '1280', '4', '104', 'MU', 'Computer Science', '6.7', '100', '0')
(9800, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'EE / CS', 'Fall ', '2011', '780', '660', '1440', '3', '98', 'CEG', 'ECE', '9.13', '10', '0')
(9801, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '159', '323', '4', '114', 'Thapar University', 'Electronics(Instrument &Contol;)', '7.95', '10', '0')
(9802, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and computer science', 'Fall ', '2011', '780', '480', '1260', '3.5', '105', 'JNTU', 'EIE', '8.275', '100', '0')
(9803, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '162', '152', '314', '3', '90', 'B V Bhoomaraddi College of Engg & Tech (Affiliated to VTU)', 'Electronics and Communication', '9.1', '10', '0')
(9804, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '510', '1270', '3', '103', 'AISSMS College of Engineering Pune', 'Electronics', '6.491', '100', '0')
(9805, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '166', '148', '314', '4', '104', 'SJCE', 'CS', '8.73', '10', '0')
(9806, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '163', '152', '315', '4', '112', 'FCRIT', 'EXTC', '6.647', '100', '0')
(9807, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Robotics', 'Fall ', '2013', '160', '154', '314', '3.5', '103', 'SASTRA', 'Mechatronics', '8.79', '10', '0')
(9808, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '168', '160', '328', '3.5', '106', 'Institute of Technology Nirma University', 'Instrumentation & Control', '7.81', '10', '0')
(9809, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '660', '1460', '3.5', '99', 'IIITM', 'IT', '8.58', '10', '0')
(9810, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '630', '1430', '3.5', '106', 'Bangalore Institute of Technology', 'Information Science', '7', '100', '0')
(9811, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '600', '1400', '3.5', '110', 'Guru Gobind Singh Indraprashta University', 'Computer Science', '7.9', '100', '0')
(9812, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2010', '800', '630', '1430', '4', '109', 'NIT Durgapur', 'ECE', '7.93', '10', '0')
(9813, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '550', '1330', '3.5', '105', 'CEG', 'I.T', '8.45', '10', '0')
(9814, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'statistics', 'Fall ', '2014', '169', '153', '322', '3', '107', 'Bangalore Institute of Technology', 'ECE', '7.3', '100', '0')
(9815, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '166', '164', '330', '4.5', '117', 'IIT BHU', 'Electronics', '7.92', '10', '0')
(9816, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '159', '321', '3', '104', 'U.P.Technical University', 'Information Technology', '6.8', '100', '0')
(9817, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '720', '610', '1330', '4', '104', 'SASTRA', 'Mechanical Engineering', '9.04', '10', '0')
(9818, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '164', '151', '315', '3', '102', 'MU', 'Electrical', '7.9799999999999995', '100', '0')
(9819, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '630', '1400', '4', '103', 'PSG College of Technology', 'IT', '8.71', '10', '0')
(9820, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '780', '550', '1330', '3', '104', 'I.E.T D.A.V.V.', 'Computer Engineering', '6.9799999999999995', '100', '0')
(9821, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '166', '152', '318', '4', '110', 'MU', 'Electronics and telecommunication', '6.7', '100', '0')
(9822, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '165', '153', '318', '4', '119', 'CEG', 'Electronics and Communication Engineering', '9.26', '10', '0')
(9823, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '166', '148', '314', '3.5', '101', 'R V College of Engineering', 'Information science and engineering', '8.225', '100', '0')
(9824, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '680', '1480', '4', '105', 'Manipal Institue of Technology', 'Electronics and Communication', '9.06', '10', '0')
(9825, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '170', '145', '315', '3', '106', 'BMSCE', 'Electronics and Communication Engineering', '9.83', '10', '9')
(9826, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '168', '155', '323', '5', '115', 'MU', 'Computer Engineering', '7.65', '100', '0')
(9827, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '167', '164', '331', '4.5', '112', 'Jadavpur University', 'Mechanical Engineering', '8.56', '10', '24')
(9828, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '530', '1310', '3', '102', 'CEG', 'IT', '8.95', '10', '0')
(9829, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '166', '152', '318', '4', '112', 'MU', 'Electronics and Telecommunication', '6.296', '100', '0')
(9830, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '168', '153', '321', '3.5', '104', 'University of Pune', 'E&TC;', '6.9', '100', '0')
(9831, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '170', '149', '319', '3.5', '114', 'NIT Warangal', 'Computer Science and Engineering', '8.5', '10', '0')
(9832, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '165', '163', '328', '5', '118', 'VTU', 'Electrical and Electronics Engineering', '7.37', '100', '0')
(9833, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '630', '1420', '3.5', '101', 'GGSIPU', 'Electronics', '7.2', '100', '0')
(9834, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '170', '164', '334', '4', 'None', 'University of Mumbai', 'Electronics and Telecommunication', '6.8', '100', '12')
(9835, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2015', '167', '159', '326', '3.5', '103', 'Anna University', 'AERONAUTICAL', '7.9', '10', '1')
(9836, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '800', '540', '1340', '3', '105', 'K J Somaiya College of Engiineering', 'Information Technology', '7.3', '100', '0')
(9837, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and computer engineering electrical engineering telecommunications engineering', 'Fall ', '2014', '167', '145', '312', '3', '99', 'Keshav memorial Institute of Technology Hyderabad', 'ECE', '7.9', '100', '0')
(9838, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '170', '154', '324', '4', '114', 'MDU', 'EECE', '8.34', '100', '24')
(9839, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '520', '1280', '3.5', '91', 'GHRCE Nagpur', 'Electronics and Telecommunication', '7.3', '100', '0')
(9840, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '590', '1390', '3.5', '105', 'Nagpur University', 'Mechanical', '7.1', '100', '0')
(9841, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '800', '550', '1350', '2.5', '108', 'JNTU', 'CSE', '8.1', '100', '0')
(9842, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '800', '520', '1320', '3.5', '97', 'IET DAVV', 'Information Technology', '8', '100', '0')
(9843, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2008', '780', '470', '1250', '4.5', '111', 'Nagpur University', 'Electronics Engineering', '6.95', '100', '0')
(9844, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '158', '320', '3.5', '112', 'MU', 'Computer', '6.5', '100', '0')
(9845, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '790', '600', '1390', '3', '101', 'SASTRA', 'Computer Science', '7.98', '10', '0')
(9846, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '169', '161', '330', '3', '108', 'VNIT Nagpur', 'ECE', '0.9359999999999999', '100', '24')
(9847, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '161', '326', '4', '118', 'University of Mumbai', 'Information Technology', '6.962999999999999', '100', '0')
(9848, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '740', '560', '1300', '4.5', '113', 'Pune University', 'Computer Engineering', '7.015000000000001', '100', '0')
(9849, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '165', '148', '313', '3', '109', 'None', 'Electronics', '8.7', '10', '24')
(9850, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '500', '1290', '3', '96', 'R V College of Engineering', 'Computer Science', '7.2', '100', '0')
(9851, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '164', '149', '313', '4', '102', 'UPTU', 'Electronics and Communication Engineering', '7.248', '100', '0')
(9852, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '470', '1270', '3.5', '100', 'MU', 'I.T.', '6.1', '100', '0')
(9853, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '550', '1350', '3.5', '113', 'Delhi College Of Engineeing', 'IT', '7.6', '100', '0')
(9854, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Chemical Engineering', 'Fall ', '2015', '167', '155', '322', '4', '108', 'Visvesvaraya NIT Nagpur', 'Chemical Engineering', '8.33', '10', '2')
(9855, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '780', '610', '1390', '3', '96', 'PICT', 'Electronics & Telecommunications', '6.6', '100', '0')
(9856, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '800', '670', '1470', '3', '111', 'MU', 'Electronics and Telecommunication Engineering', '8', '100', '0')
(9857, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '590', '1390', '3', '100', 'Rajiv Gandhi Institute Of Technology', 'Computer Engineering', '6.288', '100', '0')
(9858, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '750', '520', '1270', '3.5', '116', 'Pune University', 'Computer Science', '5.99', '100', '0')
(9859, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '800', '610', '1410', '4', '111', 'BITS Pilani', 'Computer Science', '8.3', '10', '0')
(9860, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Instrumentation and Control', 'Fall ', '2011', '800', '610', '1410', '3.5', '103', 'BITS Pilani', 'Electronics and Instrumentation', '9.4', '10', '0')
(9861, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '167', '151', '318', '3', '99', 'K J Somaiya College of Engiineering', 'Computers', '6.5', '100', '0')
(9862, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '165', '158', '323', '4', '110', 'MU', 'Electronics', '6.4959999999999996', '100', '0')
(9863, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '750', '590', '1340', '3.5', 'None', 'Kerala University', 'Electronics and communication', '7.8', '100', '0')
(9864, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '163', '156', '319', '3.5', 'None', 'Datta Meghe College of Engineering', 'Mechanical', '6.8', '100', '0')
(9865, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '520', '1320', '3.5', '109', 'SSN College of Engineering', 'Electronics and Communication', '8.001999999999999', '100', '0')
(9866, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '168', '159', '327', '3', '105', 'CEG', 'ECE', '9.32', '10', '24')
(9867, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '160', '154', '314', '3', '107', 'Gujarat Technological University', 'Computer Engineering', '8.161', '100', '0')
(9868, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '610', '1400', '3', '105', 'VIT', 'Computer Science', '8.95', '10', '0')
(9869, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '163', '151', '314', '3.5', '111', 'R V College of Engineering', 'Electronics & Communication', '9.26', '10', '0')
(9870, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Operations Research', 'Fall ', '2014', '163', '152', '315', '3', '103', 'PSG College of Technology', 'Production Engineering (SW)', '8.04', '10', '0')
(9871, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '161', '152', '313', '4', '107', 'Sri Sairam Engineering College', 'Electronics and Instrumentation', '7.95', '10', '0')
(9872, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '153', '315', '4.5', '114', 'NSIT', 'Computer Engineering', '8.297', '100', '0')
(9873, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '630', '1430', '3.5', '106', 'MU', 'Computer Engineering', '7.3', '100', '0')
(9874, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2013', '750', '570', '1320', '3.5', '93', 'MU', 'Electronics and Telecommunication', '7.008', '100', '0')
(9875, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '165', '145', '310', '3', '98', 'Anna University', 'Information Technology', '7.8', '10', '0')
(9876, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2012', '800', '690', '1490', '4', '116', 'MU', 'Mechanical Engineering', '6.442', '100', '0')
(9877, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '800', '620', '1420', '3.5', '101', 'BITS Pilani', 'E.E.E', '8.3', '10', '0')
(9878, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '163', '150', '313', '3', '102', 'Sri Jayachamarajendra College of Engineering', 'Electronics and communications', '9.17', '10', '0')
(9879, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2014', '167', '155', '322', 'None', 'None', 'NIT Warangal', 'Civil', '8.14', '10', '0')
(9880, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '770', '680', '1450', '4', '115', 'RAIT', 'Electronics', '6.8420000000000005', '100', '0')
(9881, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '169', '156', '325', '3.5', '114', 'Thapar University', 'ECE', '8.56', '10', '0')
(9882, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '157', '323', '4', '113', 'R V College of Engineering', 'Information Science', '8.2', '100', '43')
(9883, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '430', '1180', 'None', '106', 'MU', 'Electronics and TeleCommuincation', '7.2', '100', '0')
(9884, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '600', '1350', '4', '109', 'D J Sanghvi', 'IT', '6.890000000000001', '100', '0')
(9885, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '590', '1360', 'None', '105', 'Model Engineering College', 'Computer Science', '7.3', '100', '0')
(9886, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '620', '1420', '3', '107', 'Nirma Institute of Technology', 'Computer Engineering', '8.2', '10', '0')
(9887, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '162', '162', '324', '3.5', '111', 'Anna University', 'Mechanical Engineering', '7.8', '100', '44')
(9888, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Operations Research', 'Fall ', '2014', '169', '152', '321', '4.5', '100', 'BITS Pilani', 'BE (Civil)', '6.31', '10', '0')
(9889, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '169', '153', '322', '3', '98', 'NIT Warangal', 'ece', '8.05', '10', '0')
(9890, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Information Security', 'Fall ', '2011', '800', '430', '1230', '3.5', '94', 'Amrita School of Engineering', 'INFORMATION TECHNOLOGY', '7.22', '10', '0')
(9891, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '430', '1230', '4', '113', 'BITS Goa', 'Electrical and Electronics', '8.3', '10', '0')
(9892, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '500', '1300', '5', '116', 'BITS Pilani', 'EEE', '8.44', '10', '0')
(9893, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '770', '560', '1330', '3.5', '108', 'NIT Bhopal', 'Electrical Engineering', '8.61', '10', '0')
(9894, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '163', '161', '324', '4.5', '107', 'MU', 'Electrical Engineering', '7.340000000000001', '100', '0')
(9895, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '750', '610', '1360', '4', '112', 'MSRIT', 'Computer Science and Engineering', '9.31', '10', '0')
(9896, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '700', '1500', '3.5', '111', 'NIT Kurukshetra', 'Mechanical Engineering', '9.255', '10', '0')
(9897, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '800', '520', '1320', '3', '95', 'University of Mumbai', 'Electronics and Telecommunication', '6.8870000000000005', '100', '0')
(9898, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2010', '770', '550', '1320', '3', '110', 'Anna University', 'IT', '7.4', '100', '0')
(9899, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '159', '321', '4.5', '113', 'NIT Durgapur', 'Information Technology', '7.81', '10', '0')
(9900, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '170', '148', '318', '3', '100', 'NIT Warangal', 'CSE', '7.96', '10', '24')
(9901, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2015', '167', '149', '316', '4', '106', 'IIT Madras', 'Civil Engineering', '7.3', '10', '24')
(9902, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2015', '167', '156', '323', '3.5', '116', 'RMD Engineering College Anna University', 'ECE', '8.7', '10', '6')
(9903, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '165', '164', '329', '4.5', '118', 'IIT X', 'CSE', '8.44', '10', '0')
(9904, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '168', '153', '321', '4', '110', 'NIT Silchar', 'CSE', '8.35', '10', '0')
(9905, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Spring ', '2013', '166', '152', '318', '4', '103', 'NIT Rourkela', 'B.tech in Biomedical Engineering', '9.1', '10', '0')
(9906, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2015', '800', '550', '1350', '3.5', '109', 'Sardar Patel College of Engineering', 'Electronics And Telecommunication Engg.', '7.2', '100', '29')
(9907, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '164', '149', '313', '3', '104', 'Manipal Institue of Technology', 'ECE', '8.51', '10', '0')
(9908, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '800', '670', '1470', '4', '114', 'University of Mumbai', 'Electronics Engineering', '7.476000000000001', '100', '0')
(9909, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '152', '315', '4.5', '109', 'Amity School of Engineering and Technology', 'Computer Science', '8', '10', '58')
(9910, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '650', '1450', '4.5', '116', 'Pune University', 'Computer Engineering', '3.4', '4', '0')
(9911, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2011', '780', '550', '1330', '3.5', '106', 'NIT Karnataka', 'Computer Engineering', '8.05', '10', '0')
(9912, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '730', '540', '1270', '4', '110', 'None', '0', '0', '0', '0')
(9913, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '164', '162', '326', '4', '109', 'PESIT', 'ECE', '8.45', '10', '24')
(9914, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2014', '161', '150', '311', '4', '110', 'Sri Venkateswara College of Engineering', 'EEE', '8.3', '100', '36')
(9915, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Instrumentation and Control', 'Fall ', '2013', '163', '150', '313', '3', '91', 'UPTU', '0', '6.4', '100', '0')
(9916, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '620', '1410', 'None', '105', 'JNTU', 'IT', '7', '100', '0')
(9917, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '153', '318', '3.5', '112', 'VJTI', 'Computer', '8.6', '10', '0')
(9918, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering/Comp Science', 'Fall ', '2014', '160', '153', '313', '3', '112', 'MU', 'COMPUTER', '6.7', '100', '0')
(9919, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '700', '1500', '4', '112', 'Jaypee Institute of Information Technology', 'CS', '8', '10', '0')
(9920, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Business Analytics', 'Fall ', '2015', '166', '159', '325', '3.5', '111', 'International Institute of Information Technology Hyderabad', 'Computer Science Dual Degree', '8.02', '10', '36')
(9921, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '149', '313', '3', '103', 'Amrita School of Engineering', 'CSE', '7.2', '10', '0')
(9922, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '169', '155', '324', '3', '104', 'Guru Gobind Singh Indraprashta University', 'Computer Science & Engineering', '7.17', '100', '19')
(9923, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '153', '315', '4', '108', 'R V College of Engineering', 'Computer Science', '7.493', '100', '0')
(9924, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '170', '146', '316', '4.5', '111', 'IIT Guwahati', 'ECE', '8.59', '10', '0')
(9925, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '600', '1390', '4', '113', 'MU', 'Computer Engineering', '6', '100', '0')
(9926, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2007', '800', '670', '1470', '4.5', '290', 'VJTI', 'Electronics', '7.109999999999999', '100', '0')
(9927, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '640', '1440', 'None', '107', 'COEP', 'Computer Engineering', '8.45', '10', '0')
(9928, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '650', '1450', '4.5', '113', 'SSN College of Engineering', 'Mechanical', '8.1', '10', '0')
(9929, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '167', '165', '332', '5.5', '114', 'Amrita School of Engineering', 'Computer Science', '9.41', '10', '0')
(9930, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2013', '170', '159', '329', '4', '114', 'None', 'mechanical', '9.71', '10', '0')
(9931, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '169', '148', '317', '4', '104', 'R V College of Engineering', 'Computer Science', '8.1', '100', '0')
(9932, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '510', '1300', '4.5', '117', 'Model Engineering College', 'Electronics and Communication', '7.770999999999999', '100', '0')
(9933, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '155', '317', '4', '110', 'Anna University', 'CS', '7.25', '10', '0')
(9934, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science/ Electronics and Communication', 'Fall ', '2013', '800', '590', '1390', '3.5', '110', 'Anna University', 'Computer Science and Engineering', '7.3', '100', '0')
(9935, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '660', '1460', '4.5', '117', 'VJTI', 'Computer Science', '8.7', '10', '0')
(9936, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '165', '151', '316', '3.5', '101', 'IIT Roorkee', 'Electrical Engineering (Dual Degree)', '8.174', '10', '0')
(9937, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2015', '160', '144', '304', '4', '101', 'MDU', 'Aeronautical Engineering', '7.3', '100', '0')
(9938, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '540', '1340', '3.5', '100', 'D J Sanghvi', 'Computer', '6.7', '100', '0')
(9939, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '750', '470', '1220', '3', '108', 'NIT Hamirpur', 'CSE', '8.36', '10', '0')
(9940, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '154', '146', '300', 'None', 'None', 'Portland State University', 'ECE', '3.33', '4', '0')
(9941, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '165', '168', '333', '3.5', '107', 'VTU', 'Electronics and Communication', '7.470000000000001', '100', '0')
(9942, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '640', '1430', '3.5', '117', 'Vishwakarma Institute of Technology', 'Computer Science', '9.65', '10', '0')
(9943, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Robotics', 'Fall ', '2014', '166', '152', '318', '3.5', '105', 'Bangalore Institute of Technology', 'Electrical and Electronics', '7.9', '100', '0')
(9944, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '570', '1370', '4', '105', 'PSG College of Technology', 'Theoretical Computer Science (Department of Mathematics and Computer Applications)', '9.05', '10', '0')
(9945, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '166', '160', '326', '3.5', '111', 'VJTI', 'electronics', '8.4', '10', '0')
(9946, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2013', '167', '158', '325', '4', '118', 'Goa University', 'Mechanical Engineering', '6.9', '100', '0')
(9947, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '740', '670', '1410', '3', '110', 'MU', 'IT', '5.89', '100', '0')
(9948, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '630', '1420', '3', '98', 'VESIT', 'Information Technology', '7.3', '100', '0')
(9949, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Civil Engineering', 'Fall', 'None', '163', '147', '310', '3.5', '105', 'NIT Tirchy', 'Civil engineering', '8.6', '10', '0')
(9950, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'CS', 'Fall ', '2013', '800', '650', '1450', '4', '111', 'K J Somaiya College of Engiineering', 'IT', '6.7', '100', '0')
(9951, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '159', '325', '3', '108', 'KIIT', 'Electrical Engineering', '8.28', '10', '44')
(9952, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '580', '1350', '3.5', '96', 'Pune University', 'Computer Science', '6.3', '100', '0')
(9953, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '161', '156', '317', '3.5', '108', 'University of Pune', 'Mechanical engineering', '6.7299999999999995', '100', '0')
(9954, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '155', '317', '4', '111', 'R V College of Engineering', 'Information Science And Engineering', '9.62', '10', '0')
(9955, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '160', '141', '301', '3', '95', 'Coimbatore Insitute of Technology', 'Computer Science', '8.5', '10', '0')
(9956, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2015', '159', '160', '319', '3.5', '109', 'VTU', 'Civil Engineering', '8.05', '100', '0')
(9957, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '164', '152', '316', '4', '110', 'Anna University', 'Information Technology', '8.252', '10', '0')
(9958, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '167', '153', '320', '3.5', '109', 'SSN College of Engineering', 'ECE', '8.3', '10', '0')
(9959, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '163', '153', '316', '4', '117', 'BITS Pilani', 'Electronics', '7.59', '10', '16')
(9960, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engg/Robotics', 'Fall ', '2014', '164', '152', '316', '3', '100', 'Amrita School of Engineering', 'MECHANICAL ENGG', '8.4', '10', '0')
(9961, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '165', '162', '327', '4.5', '119', 'University of Mumbai', 'Computer Engg', '6.5', '100', '0')
(9962, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '168', '163', '331', '5', '118', 'University of Pune', 'Mechanical Engineering', '7.3', '100', '0')
(9963, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '166', '154', '320', '3', '106', 'M.V.S.R Engineering College', 'Information Technology', '9.08', '100', '0')
(9964, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '650', '1430', '3', '110', 'RGPV', 'Electronics and Telecommunication Engineering', '7.4079999999999995', '100', '0')
(9965, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '166', '148', '314', '3', '110', 'BIT Mesra', 'Computer Science and Engineering', '7.68', '10', '0')
(9966, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall', 'None', 'None', 'None', '0', 'None', 'None', 'University of Petroleum and Energy studies', 'EEE', '3.46', '4', '0')
(9967, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '800', '570', '1370', '3', '107', 'JNTU', 'ece', '8.059999999999999', '100', '0')
(9968, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '167', '152', '319', '4', '107', 'Sardar Patel College of Engineering', 'Electronics Engineering', '7.35', '100', '0')
(9969, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '163', '152', '315', '4', '98', 'Coimbatore Insitute of Technology', 'ECE', '8.78', '10', '26')
(9970, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2012', '159', '158', '317', '4', '116', 'MU', 'Production Engineering', '7.4', '100', '0')
(9971, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '780', '610', '1390', '4', '106', 'MU', 'Information Technology', '5.5', '100', '0')
(9972, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and computer science', 'Fall ', '2011', '780', '700', '1480', '4.5', '108', 'VIT', 'Electronics and Communication Engineering', '8.74', '10', '0')
(9973, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '800', '670', '1470', '3.5', '102', 'None', '0', '7.25', '100', '0')
(9974, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Materials Science & Engineering', 'Fall ', '2014', '165', '161', '326', '4', '115', 'Visvesvaraya NIT Nagpur', 'Metallurgical and Materials Engineering', '8.34', '10', '0')
(9975, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '550', '1310', '3.5', '105', 'Amity University', 'CS', '7.9', '10', '0')
(9976, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2010', '790', '750', '1540', '4', '111', 'K J Somaiya College of Engiineering', 'Electronics', '6.6', '100', '0')
(9977, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '167', '150', '317', '3', '99', 'International Institute of Information Technology Hyderabad', 'Computer Science', '8.7', '10', '0')
(9978, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '153', '146', '299', '3', '84', 'PTU', 'ECE', '71.1', '10', '0')
(9979, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '161', '150', '311', '3.5', '102', 'Manipal Institue of Technology', 'EEE', '8.6', '10', '0')
(9980, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '690', '1490', '4.5', '118', 'BITS Pilani', 'Electronics and Instrumentation', '0', '0', '0')
(9981, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '146', '310', '3', '107', 'Sir MVIT', 'computer science', '7.8', '100', '0')
(9982, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2008', '790', '590', '1380', '3', '107', 'University of Pune', 'Computer Science', '7', '100', '0')
(9983, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '670', '1470', '5', '117', 'JNTU', 'Electronics and Communication Engineering', '8.59', '100', '0')
(9984, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'CS', 'Fall ', '2014', '161', '155', '316', '3', '115', 'Goa University', 'Computer Engineering', '7', '100', '0')
(9985, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '157', '319', '4', '116', 'Bangalore Institute of Technology', 'Computer Science', '8.2', '100', '21')
(9986, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '167', '161', '328', '4', '116', 'None', 'Mechanical', '9.17', '10', '0')
(9987, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '570', '1350', '3', '114', 'MSRIT', 'Computer Science', '9.12', '10', '0')
(9988, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '164', '153', '317', '3', '100', 'Sathyabama University', 'Mech & Prod', '8.2', '100', '24')
(9989, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '740', '550', '1290', '3', '95', 'MU', 'Electronics', '6.2', '100', '0')
(9990, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '600', '1400', '3', '109', 'University of Mumbai', 'computer', '7.5', '100', '0')
(9991, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronic and Telecommunication Engineering', 'Fall ', '2012', '790', '620', '1410', '3.5', '108', 'MU', 'Electronics and Telecommunication', '6.9', '100', '0')
(9992, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2014', '164', '157', '321', '4', '114', 'NITK Surathkal', 'Mechanical', '8.86', '10', '24')
(9993, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '780', '670', '1450', '5', '116', 'MU', 'Computer Science', '6.622', '100', '0')
(9994, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '164', '164', '328', '4', '112', 'Manipal Institue of Technology', 'Computer Sceince', '8.1', '10', '26')
(9995, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '740', '660', '1400', '3.5', '111', 'NED University Karachi', 'Electronic Engineering', '8.3', '100', '0')
(9996, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '149', '314', '3', '112', 'UPTU', 'CSE', '7.378', '100', '0')
(9997, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2013', '161', '149', '310', '3.5', '105', 'Gujarat Technological University', 'Electronics and Communication', '8.83', '10', '0')
(9998, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '156', '322', '3.5', '112', 'NIT Raipur', 'Information Technology', '8.34', '10', '0')
(9999, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '164', '146', '310', '3', '110', 'BITS Goa', 'Mechanical', '6.7', '10', '0')
(10000, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '152', '315', '3.5', '109', 'CEG', 'Computer Science and Engineering', '8.58', '10', '0')
(10001, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '162', '148', '310', '3.5', '99', 'IIT Hyderabad', 'Mechanical Engineering', '8', '10', '0')
(10002, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '159', '318', '4', '115', 'JNTU', 'Computer Science and Enigneering', '7.743', '100', '0')
(10003, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '160', '161', '321', '3', '112', 'University of Pune', 'Electronics and Telecommunications', '5.907', '100', '42')
(10004, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '760', '550', '1310', '3', '108', 'Jaypee Institute of Information Technology', 'CSE', '7.5', '10', '0')
(10005, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '166', '157', '323', '4', '104', 'NIT Warangal', 'Computer Science & Engineering', '8.76', '10', '54')
(10006, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '750', '570', '1320', '4.5', '110', 'VTU', 'COMPUTER SCIENCE', '8.275', '100', '0')
(10007, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '600', '1350', '3.5', '107', 'Fr. Conceicao Rodrigues College of Engineering', 'Computers', '6.272', '100', '0')
(10008, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '166', '154', '320', '4.5', '109', 'Sardar Patel College of Engineering', 'Computer Engineering', '7.358', '100', '0')
(10009, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Civil Engineering', 'Spring ', '2015', '161', '151', '312', '3.5', '102', 'Sardar Patel College of Engineering', 'Civil', '7.2', '100', '24')
(10010, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '500', '1280', '2.5', '96', 'University of Mumbai', 'Information Technology', '6.049', '100', '0')
(10011, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '162', '324', '4', '117', 'Siliguri Institute of Technology', 'Computer Science', '8.81', '10', '0')
(10012, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '155', '316', '3.5', '111', 'MU', 'IT', '6.56', '100', '37')
(10013, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '167', '152', '319', '3', '106', 'MU', 'Mech', '7.6', '100', '0')
(10014, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '159', '158', '317', '3.5', '113', 'Sri Venkateswara College of Engineering', 'CSE', '7.99', '10', '0')
(10015, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '152', '316', '3.5', '107', 'MU', 'COMPUTER SCIENCE', '6.93', '100', '0')
(10016, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '166', '156', '322', '3.5', '107', 'PSG College of Technology', 'Electrical Engineering', '9.51', '10', '0')
(10017, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2012', '157', '156', '313', '4', '106', 'Manipal Institue of Technology', 'IT', '8.1', '10', '0')
(10018, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '450', '1200', '3', '96', 'VTU', 'CS', '7.5', '100', '0')
(10019, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '530', '1290', '3.5', '114', 'Amrita Vishwa Vidhyapeetham', 'Computer Science & Engineering', '7.2', '10', '0')
(10020, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '157', '321', '4', 'None', 'Pune University', 'Computer Engineering', '7.1', '100', '0')
(10021, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '620', '1420', '3', '112', 'The LNM Institute of Information Technology', 'Communication and computer engg', '9.19', '10', '0')
(10022, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '640', '1400', '3.5', '110', 'SASTRA', 'ECE', '8.54', '10', '0')
(10023, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '650', '1450', '4', '115', 'VNIT Nagpur', 'ECE', '9.12', '10', '0')
(10024, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '164', '153', '317', '3.5', '108', 'VIT', 'Electronics and instrumentation', '8.58', '10', '0')
(10025, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '168', '159', '327', '3.5', '112', 'Bangladesh University of Engineering & Technology', 'Electrical and Electronic Engineering', '3.94', '4', '0')
(10026, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Electronics', 'Fall ', '2012', '730', '600', '1330', '4', '113', 'BMSCE', 'telecommunication engineering', '9.4', '10', '0')
(10027, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '630', '1390', '4.5', '114', 'NMIMS', 'Computer Science', '3.24', '4', '0')
(10028, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Electronics', 'Fall ', '2012', '800', '530', '1330', '3', '105', 'MU', 'Electronics and Telecommunication', '7.1370000000000005', '100', '0')
(10029, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '400', '1180', '3.5', '103', 'MU', 'Electronics and telecommunication', '7.3', '100', '0')
(10030, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '167', '154', '321', '4', '111', 'IIT Madras', 'Mechanical Engineering', '8.66', '10', '0')
(10031, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '640', '1440', '4', '112', 'COEP', 'Electronics and Telecommunication', '9.32', '10', '0')
(10032, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Biomedical Engineering', 'Fall ', '2011', '740', '530', '1270', '3.5', '111', 'VIT University', 'Biomedical', '9.04', '10', '0')
(10033, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '168', '154', '322', '3.5', '111', 'IIT (BHU) Varanasi', 'Mechanical', '8.25', '10', '12')
(10034, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '168', '155', '323', '3.5', '110', 'IIT Allahabad', 'Computer Science', '8.9', '10', '0')
(10035, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '720', '570', '1290', '3.5', '116', 'MU', 'Computer Science', '7.804', '100', '0')
(10036, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '149', '312', '3.5', '111', 'JNTU', 'CSE', '7.83', '100', '12')
(10037, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '720', '500', '1220', '3.5', '105', 'VTU', 'Information Science', '8.2', '100', '0')
(10038, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '161', '322', '3.5', '108', 'C.S.V.T.U.', 'Computer Science and Engg', '8.56', '10', '0')
(10039, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '170', '154', '324', '3', '97', 'ISM Dhanbad', 'Electrical Enfineering', '7.67', '10', '0')
(10040, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '790', '620', '1410', '4', '110', 'BIT Mesra', 'mechanical', '7.4', '100', '0')
(10041, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '163', '152', '315', '3', '101', 'UPTU', 'Electrical & Electronics Engineering', '7.772', '100', '0')
(10042, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '620', '1420', '4.5', '112', 'BITS Pilani', 'ComputerScience', '5.71', '10', '0')
(10043, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '780', '640', '1420', '3.5', '108', 'Manipal Institue of Technology', 'Computer Science & Engineering', '3', '4', '0')
(10044, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '168', '154', '322', '3', '105', 'MDU', 'ECE(Hons)', '7.1', '100', '45')
(10045, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '800', '640', '1440', '3.5', '114', 'NIT Durgapur', 'ECE', '8.05', '10', '0')
(10046, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '159', '321', '4', '109', 'PESIT', 'Information Science', '8.7', '10', '24')
(10047, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2013', '167', '157', '324', '4', 'None', 'BITS Pilani', 'Electronics and Instrumentation', '8.14', '10', '0')
(10048, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '155', '321', '3.5', '111', 'DA-IICT', 'ICT', '8', '10', '0')
(10049, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '165', '155', '320', 'None', 'None', 'CoE Trivandrum', 'Electrical & Electronics Engineering', '8.12', '10', '0')
(10050, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '170', '154', '324', '4.5', '110', 'VIT University', 'Electronics And Communication', '9.21', '10', '0')
(10051, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '163', '148', '311', '3.5', '115', 'R V College of Engineering', 'Mechanical Engineering', '9.06', '10', '0')
(10052, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '168', '162', '330', '4', '114', 'Thapar University', 'Mechanical Engineering', '8.31', '10', '0')
(10053, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '166', '153', '319', '3.5', '106', 'K J Somaiya College of Engiineering', 'Computers', '6.7', '100', '0')
(10054, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '550', '1320', '4', '103', 'COEP', 'Computer Engineering & IT', '8.4', '10', '0')
(10055, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2010', '800', '660', '1460', '4', '114', 'PICT', 'Information Technology', '3.51', '4', '0')
(10056, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '164', '157', '321', '4.5', '113', 'Dr. Babasaheb Ambedkar Technological University Lonere', 'Chemical Engineering', '8.49', '10', '0')
(10057, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '800', '580', '1380', '3.5', '109', 'CEG', 'Computer Science & Engineering', '9.32', '10', '24')
(10058, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '159', '158', '317', 'None', 'None', 'Madras Institute of Technology', 'Computer Science', '7.762', '10', '0')
(10059, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '750', '560', '1310', '5', '114', 'Kolhapur Institute of Technology', 'Computer Science and Engg', '6.5', '100', '0')
(10060, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Sustainable enrgy and environment', 'Fall ', '2014', '168', '156', '324', '3', '116', 'IIT Roorkee', 'Mechanical Engineering', '8.5', '10', '0')
(10061, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '166', '153', '319', '3.5', '107', 'VIT', 'Computer Science', '8.9', '10', '0')
(10062, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '730', '480', '1210', '4', '114', 'MU', 'Electronics and Telecommunication', '6.487', '100', '0')
(10063, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '730', '560', '1290', '3', '113', 'SSN College of Engineering', 'CSE', '8.526', '100', '0')
(10064, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '164', '163', '327', 'None', '117', 'NIT Calicut', 'Computer Science', '7.85', '10', '16')
(10065, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '170', '158', '328', '4', '105', 'BITS Hyderabad', 'Mechanical Engineering', '9.66', '10', '6')
(10066, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '163', '328', '3', '115', 'GGSIPU', 'CSE', '7.065', '100', '0')
(10067, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '161', '159', '320', '4', '114', 'MU', 'Information Technology', '6', '100', '0')
(10068, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '168', '161', '329', '3.5', '107', 'BITS Pilani', 'Computer science', '7.5', '10', '0')
(10069, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall', 'None', '164', '146', '310', '3', '97', 'VIT', 'ECE', '9.1', '10', '50')
(10070, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '168', '156', '324', '4.5', '102', 'MIT College of Engineering', 'Information Technology', '6.311999999999999', '100', '0')
(10071, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '165', '152', '317', '3', '108', 'NMIMS', 'Electronics And Telecommunications', '3', '4', '0')
(10072, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '170', '147', '317', '4', '99', 'Anna University', 'Electronics & Instrumentation Engineering', '8.98', '10', '0')
(10073, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '165', '150', '315', '3.5', '104', 'MU', 'Electronics and Telecommunication', '7.6', '100', '0')
(10074, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '155', '322', '4', '112', 'PICT', 'IT', '3.8', '4', '0')
(10075, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '550', '1330', '3.5', '114', 'NITAllahabad', 'Electrical', '8.54', '10', '0')
(10076, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '163', '330', '3.5', '113', 'NIT Srinagar', 'ECE', '8.57', '10', '0')
(10077, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2014', '164', '153', '317', '3.5', '106', 'GGSIPU', 'Computer Science', '7.6', '100', '0')
(10078, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2011', '780', '690', '1470', '3', '98', 'CEG', 'electrical and electronics', '6.25', '10', '0')
(10079, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2010', '790', '600', '1390', '4', '112', 'NIT Silchar', 'Computer Science', '7.92', '10', '0')
(10080, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Biomedical Engineering', 'Fall ', '2011', '800', '580', '1380', '4.5', '115', 'NITT', 'Instrumentation and Control Engg', '8.55', '10', '0')
(10081, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '650', '1440', 'None', 'None', 'MSRIT', 'ECE', '9.39', '10', '0')
(10082, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '770', '530', '1300', '3', '92', 'PSG College of Technology', 'ECE', '9.26', '10', '0')
(10083, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '168', '152', '320', '4', '109', 'Anna University', 'Information Technology', '7.8', '100', '0')
(10084, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '163', '145', '308', '4', '100', 'VIT Pune', 'Industrial Engineering', '8.97', '10', '0')
(10085, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '780', '680', '1460', '4', '110', 'Anna University', 'Mechanical', '8.5', '100', '0')
(10086, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'EE / CE / CS', 'Fall ', '2015', '167', '160', '327', '3.5', '113', 'BITS Goa', 'Electronics and Instrumentation', '8.54', '10', '15')
(10087, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '168', '157', '325', '4.5', '119', 'MU', 'Electronics', '6.695', '100', '0')
(10088, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '162', '161', '323', '3.5', '114', 'None', 'Mechanical Engineering', '7.8', '10', '0')
(10089, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '800', '620', '1420', '4.5', 'None', 'Netaji Subhas Institute of Technology', 'Manufacturing Processes and Automation Engineering', '7.790000000000001', '100', '0')
(10090, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '790', '600', '1390', '3.5', '100', 'Sardar Patel College of Engineering', 'Electronics and Telecommunication', '7', '100', '0')
(10091, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '159', '320', '3.5', '111', 'VIT University', 'ECE', '8.58', '10', '0')
(10092, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '149', '311', '4', '106', 'Osmania University', 'Information Technology', '8.4', '100', '18')
(10093, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2013', '164', '148', '312', '3', '103', 'D J Sanghvi', 'Chemical Engineering', '7', '100', '0')
(10094, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '170', '161', '331', '4.5', '115', 'West Bengal University Of Technology', 'ECE', '8.66', '10', '12')
(10095, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '167', '146', '313', '3.5', '105', 'VIT', 'BTech CSE', '9.22', '10', '0')
(10096, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2015', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(10097, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'CS', 'Fall ', '2015', '167', '156', '323', '3.5', '105', 'Government College of Engineering Amravati', 'Computer Science', '8.73', '10', '0')
(10098, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2013', '800', '620', '1420', '3.5', '105', 'Osmania University', 'Mech', '8.47', '10', '0')
(10099, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Spring ', '2015', '159', '150', '309', '3.5', '104', 'VTU', 'Electronics & Telecommunication', '8', '100', '42')
(10100, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '169', '159', '328', '4.5', '102', 'BITS Pilani', 'Electrical and Electronics Engineering', '8.04', '10', '2')
(10101, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '155', '322', '3.5', '116', 'BNMIT', 'ISE', '7.5', '100', '15')
(10102, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '165', '155', '320', '3', '103', 'BITS Pilani', 'Information Systems', '7.19', '10', '0')
(10103, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Spring ', '2013', '164', '154', '318', 'None', 'None', 'NIT Surat', 'Mechanical Engineering', '8.3', '10', '0')
(10104, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '164', '160', '324', '4', '116', 'VIT', 'Mechanical Engineering', '9.16', '10', '0')
(10105, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '160', '149', '309', '3.5', '100', 'BITS Pilani', 'M.Sc(Tech) Information Systems', '7.17', '10', '0')
(10106, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Engineering Management / Industrial Engineering / IMSE', 'Fall ', '2014', '166', '156', '322', '3', '104', 'Institute of Chemical Technology', 'Polymer and Surface Coating', '6.32', '100', '0')
(10107, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '600', '1400', '4.5', '99', 'Anna University', 'CSE', '8.1', '100', '0')
(10108, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '790', '580', '1370', '3', '102', 'IIIT Hyderabad', 'Computer Science', '8.67', '10', '0')
(10109, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '158', '159', '317', '3', '109', "Lingaya's University", 'ECE', '7.98', '10', '0')
(10110, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Materials Science & Engineering', 'Fall ', '2011', '740', '540', '1280', '4', '105', 'NIT Warangal', 'Metallurgical and Materials Engineering', '9.01', '10', '0')
(10111, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '700', '460', '1160', '4', '101', 'Sri Venkateswara College of Engineering', 'ECE', '7.4', '100', '0')
(10112, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '166', '156', '322', '4', '99', 'PSG College of Technology', 'Mechanical Engineering', '8.86', '10', '0')
(10113, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '580', '1380', '3', '109', 'PSG College of Technology', 'ECE', '9.29', '10', '0')
(10114, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '680', '1480', '4.5', '113', 'VIT University', 'Electronics and Instrumentation', '8.98', '10', '0')
(10115, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '165', '152', '317', '3.5', '99', 'IITB MTech', 'CSE', '9.33', '10', '0')
(10116, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '750', '540', '1290', '3', '93', 'CEG', 'Information Technology', '7.8', '10', '0')
(10117, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '170', '159', '329', '3.5', '110', 'NIT Nagpur', 'Electronics and Communication', '8.93', '10', '42')
(10118, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '170', '161', '331', '3.5', '118', 'National Institue of Technology Karnataka', 'Computer Science and engineering', '8.72', '10', '0')
(10119, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '650', '1450', '4', '112', 'MU', 'ELECTRONICS ENGINEERING', '7.601000000000001', '100', '0')
(10120, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '156', '142', '298', '3', '101', 'GITAM', 'Information Technology', '8.6', '10', '0')
(10121, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '167', '160', '327', '4.5', '115', 'Pune University', 'mechanical', '6.3', '100', '42')
(10122, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '580', '1380', '4', '117', 'MU', 'Computer Engineering', '7.3', '100', '0')
(10123, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '157', '323', '4', '107', 'Madras Institute of Technology', 'Information Technology', '8.66', '10', '0')
(10124, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '800', '580', '1380', '4', '117', 'Anna University', 'Electronics and Instrumentation', '9.7647', '10', '0')
(10125, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '740', '570', '1310', '4', '105', 'Rajiv Gandhi Univ of Tech', 'Mechanical Engineering', '7.537999999999999', '100', '0')
(10126, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2016', '164', '149', '313', '4', '100', 'Anna University', 'Computer Science', '8.89', '10', '21')
(10127, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '144', '302', '3.5', '103', 'JNTU', 'Electronics and Instrumentation', '7.8870000000000005', '100', '0')
(10128, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '770', '700', '1470', '4', 'None', 'SASTRA', 'mechanical', '0.755', '100', '0')
(10129, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '650', '1450', '4', '112', 'SSN College of Engineering', 'Electronics and Communication', '9', '10', '0')
(10130, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(10131, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2010', '800', '550', '1350', '4', '98', 'PSG College of Technology', 'Electronics and Communications', '8.89', '10', '0')
(10132, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '790', '550', '1340', '4.5', '112', 'ITM Gurgaon', 'Electronics and Communication', '7.33', '100', '0')
(10133, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2014', '156', '147', '303', '3', '95', 'Osmania University', 'Mechanical', '6.7', '100', '69')
(10134, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '760', '600', '1360', '3.5', '114', 'VTU', 'Electronics and Communication', '8.004000000000001', '100', '0')
(10135, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '165', '153', '318', '4', '109', 'SJCE', 'Electronics and Communication', '6.720000000000001', '100', '49')
(10136, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Human Computer Interaction', 'Fall ', '2012', '770', '590', '1360', '3', '102', 'PICT', 'Information Technology', '0', '0', '0')
(10137, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '157', '318', '5', '114', 'Anna University', 'CSE', '8.15', '10', '0')
(10138, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '530', '1330', '4', '102', 'Anna University', 'Electronics and Communication Engg.', '7.12', '10', '0')
(10139, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '760', '490', '1250', '3', '93', 'VTU', 'E&EE;', '7.340000000000001', '100', '0')
(10140, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '167', '156', '323', '3.5', '110', 'University of Mumbai', 'Computer Engineering', '6.890000000000001', '100', '0')
(10141, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '630', '1430', '4', '105', 'HBTI', 'Computer Science & Engg', '8.2', '100', '0')
(10142, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Information technology management', 'Fall ', '2012', '660', '420', '1080', '3.5', '110', 'Amravati University', 'Electronics & Telecommunication', '3.64', '4', '0')
(10143, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '750', '610', '1360', '3', '99', 'Madras Institute of Technology', 'ECE', '8.5', '10', '0')
(10144, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2011', '800', '460', '1260', '3.5', '104', 'PSG College of Technology', 'Electrical and Electronics', '8.76', '10', '0')
(10145, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '620', '1410', '4', '110', 'D J Sanghvi', 'EXTC', '7.3', '100', '0')
(10146, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '163', '152', '315', '3.5', '107', 'Delhi College Of Engineeing', 'ELECTRICAL ENGINEERING', '7.7', '100', '0')
(10147, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '152', '313', '3.5', '104', 'VESIT', 'Computer Engineering', '7.3549999999999995', '100', '31')
(10148, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '620', '1410', '3', '99', 'Anna University', 'CSE', '8.8', '10', '0')
(10149, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '152', '316', '3', '102', 'University of Pune', 'Computer science', '6.7', '100', '0')
(10150, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '168', '332', '5', '119', 'Anna University', 'Computer Science', '8.34', '10', '19')
(10151, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '158', '324', '4', '117', 'MU', 'BE Information Technology', '6.6', '100', '0')
(10152, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '165', '152', '317', '3.5', '109', 'National Institute of Engineering', 'Mechanical', '0.89', '100', '0')
(10153, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '800', '700', '1500', '4', '113', 'University of Pune', 'Information Technology', '6.2', '100', '0')
(10154, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '670', '1470', '3', '114', 'VIT Pune', 'Computer Engineering', '6.8', '100', '0')
(10155, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '510', '1310', '4', '105', 'NIT RKL', 'CSE', '8.51', '10', '0')
(10156, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '780', '660', '1440', '5', '102', 'Pune University', 'Electronics', '9.1', '10', '0')
(10157, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '790', '800', '1590', '4', '111', 'I.E.T D.A.V.V.', 'Computer Engineering', '7.2', '100', '0')
(10158, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Construction Management', 'Fall ', '2012', '800', '650', '1450', '4', 'None', 'BITS Pilani', 'civil', '6.54', '10', '0')
(10159, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '167', '156', '323', '4', '112', 'Osmania University', 'Mechanical Engineering', '8.84', '100', '0')
(10160, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '161', '327', '4', '112', 'Anna University', 'Computer Science', '8.45', '10', '0')
(10161, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '170', '156', '326', '4', '115', 'NIT Rourkela', 'Electronics and Communication', '9.61', '10', '0')
(10162, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '700', '600', '1300', '3.5', '110', 'MU', 'Computer Engineering', '6.2', '100', '0')
(10163, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2008', '800', '640', '1440', '4.5', '118', 'Bangalore Institute of Technology', 'ECE', '7.776999999999999', '100', '0')
(10164, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '168', '150', '318', '3', '102', 'VIT University', 'Mechanical Engineering', '7.47', '10', '0')
(10165, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '790', '630', '1420', '3.5', '104', 'VTU', 'Computer Science and Electronics', '8.47', '10', '0')
(10166, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '670', '1470', '3.5', '100', 'Jaypee Institute of Information Technology', 'Electronics and Communication', '7.5', '10', '0')
(10167, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '480', '1260', '3.5', '100', 'Sinhgad College of Engineering', 'Information Technology', '7.2', '100', '0')
(10168, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '170', '160', '330', '3', '113', 'VTU', 'BE MS', '8.5', '10', '18')
(10169, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '460', '1260', '4', '103', 'NIT Surat', 'Computer Engineering', '8.11', '10', '0')
(10170, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '168', '148', '316', '3.5', '97', 'R V College of Engineering', 'ECE', '8.81', '10', '0')
(10171, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '168', '149', '317', '3', '104', 'PICT', 'Computer Engg', '3.6', '4', '0')
(10172, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '520', '1320', '3.5', '100', 'Pune University', 'I.T.', '6.709999999999999', '100', '0')
(10173, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Biomedical Engineering', 'Fall ', '2012', '780', '640', '1420', '4', '110', 'Sri Sairam Engineering College', 'ECE', '7.9441', '10', '0')
(10174, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '170', '155', '325', '3', '105', 'BITS Pilani', 'Electrical and Electronics', '7.23', '10', '0')
(10175, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '660', '1460', '4.5', '113', 'MU', 'Computer Engg', '6.35', '100', '0')
(10176, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '157', '322', '4', '116', 'PICT', 'Information Technology', '3.56', '4', '0')
(10177, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '170', '153', '323', '3', '97', 'IIT Kharagpur', 'Electrical Engineering', '7.22', '10', '0')
(10178, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Embedded systems', 'Fall ', '2012', '169', '162', '331', '4', '115', 'VTU', 'ECE', '8.43', '10', '0')
(10179, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '167', '157', '324', '4.25', 'None', 'IIT Ropar', 'Mechanical Engineering', '8.87', '10', '0')
(10180, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '158', '322', '3.5', '115', 'Anna University', 'Information technology', '7.4', '100', '0')
(10181, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '720', '1520', '4', '115', 'SSN College of Engineering', 'Computer Science and Engineering', '8.3', '100', '0')
(10182, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '680', '1480', '3.5', '117', 'IIT', 'ECE', '9.1', '10', '0')
(10183, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '167', '153', '320', '4.5', '108', 'VIT Pune', 'Industrial Engineering', '8.54', '10', '24')
(10184, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '570', '1370', '3.5', '105', 'Rajiv Gandhi Technical University', 'IT', '7.869', '100', '0')
(10185, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '166', '159', '325', '4', '106', 'D.K.T.E. (Shivaji University Maharashtra)', 'CS', '6.6', '100', '0')
(10186, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '540', '1340', '3.5', '101', 'PICT', 'CS/IT', '3.23', '4', '0')
(10187, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '160', '155', '315', '4', 'None', 'Amrita Vishwa Vidhyapeetham', 'Information Technology', '6.8', '10', '60')
(10188, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '780', '620', '1400', '5.5', '114', 'University of Massachesetts Amherst', 'Computer Engineering', '3.63', '4', '0')
(10189, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2012', '800', '670', '1470', '5', '115', 'Cochin University of Science and Technology', 'Mechanical Engg.', '7.6', '100', '0')
(10190, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '161', '152', '313', '4.5', 'None', 'Amrita School of Engineering', 'Electrical and Electronics', '8.2', '10', '0')
(10191, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2008', '710', '540', '1250', '4', '267', 'University of Mumbai', 'Computers', '5.85', '100', '0')
(10192, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2014', '167', '159', '326', '3.5', '117', 'L D College Of Engineering', 'Civil Engineering', '8.49', '10', '0')
(10193, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '165', '164', '329', '4.5', '117', 'GITAM', 'Computer Science and Engineering', '7.83', '10', '0')
(10194, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '780', '460', '1240', '4.5', '116', 'VIT', 'Information Technology', '9.36', '10', '0')
(10195, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '159', '323', '4.5', '115', 'Anna University', 'Computer Science and Engineering', '7.65', '10', '0')
(10196, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '620', '1420', '4.5', '105', 'BITS Pilani', 'Physics/EEE (Dual Degree)', '9.67', '10', '0')
(10197, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '790', '510', '1300', '3', '105', 'Anna University', 'Computer Science', '9.3', '10', '0')
(10198, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2007', '800', '410', '1210', '5', '253', 'IT BHU', 'Electrical Engg', '8.41', '10', '0')
(10199, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '169', '161', '330', '3.5', '111', 'PSG College of Technology', 'Electronics and communication', '8.66', '10', '0')
(10200, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2011', '730', '510', '1240', '3.5', '106', 'Anna University', 'cse', '8.67', '10', '0')
(10201, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '161', '323', '3.5', '111', 'Pune University', 'Information Technology', '7', '100', '0')
(10202, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '167', '155', '322', '3', '112', 'VNR VJIET', 'CSE', '7.4', '100', '0')
(10203, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '170', '149', '319', '3', '95', 'VJTI', 'Electronics', '8.22', '10', '12')
(10204, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '800', '600', '1400', '4.5', '108', 'MU', 'Electronics Engg', '6.8', '100', '0')
(10205, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Biological Sciences Biotechnology ', 'Fall ', '2011', '800', '550', '1350', '4.5', '110', 'not IIT', 'CBE', '7.5', '100', '0')
(10206, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '165', '160', '325', '3', '118', 'Thapar University', 'Computer Science', '9.61', '10', '0')
(10207, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '161', '325', '4', '114', 'Pune University', 'CS', '5.9', '100', '0')
(10208, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '800', '680', '1480', '4', '107', 'NIT Nagpur', 'mechanical engg.', '8.17', '10', '0')
(10209, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '620', '1390', '4', '98', 'D J Sanghvi', 'IT', '6.6579999999999995', '100', '0')
(10210, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '170', '159', '329', 'None', '113', 'Lovely Professional University', 'CSE', '9.3', '10', '30')
(10211, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '159', '149', '308', '3', '104', 'Anna University', 'ECE', '7.9', '100', '0')
(10212, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2013', '168', '156', '324', '3.5', '114', 'ITM University', 'Computer Science', '8.3', '10', '0')
(10213, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Operations Research', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'IIT Madras', 'Electrical Engineering', '7.1', '10', '0')
(10214, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'CS', 'Fall ', '2015', '170', '152', '322', '3', '112', 'Rajasthan Technical University', 'Computer Science', '7.57', '100', '48')
(10215, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '620', '1400', '4', '96', 'SASTRA', 'ECE', '8.565', '10', '0')
(10216, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '161', '328', '4', '107', 'R V College of Engineering', 'Information Science and Engineering', '9.43', '10', '0')
(10217, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '170', '152', '322', '3.5', '95', 'NIT Tirchy', 'CSE', '8.75', '10', '42')
(10218, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '162', '154', '316', '3.5', '110', 'MU', 'Mechanical', '7.3', '100', '0')
(10219, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(10220, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '560', '1330', '3', '102', 'MU', 'Computer', '7.040000000000001', '100', '0')
(10221, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engg/ comp engg', 'Spring ', '2011', '800', '500', '1300', '3.5', '107', 'MG University', 'Electronics and Communication', '7.3', '100', '0')
(10222, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '510', '1270', '3', '109', 'NIT Raipur', 'CSE', '7.4', '10', '0')
(10223, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '162', '152', '314', '3.5', '103', 'Anna University', 'Electrical And Electronics Engineering', '7.96', '10', '0')
(10224, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2015', '169', '161', '330', '4.5', '116', 'BITS Pilani', 'Civil Engineering', '7.89', '10', '0')
(10225, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '550', '1340', '3', 'None', 'JNTU', 'Computer Science', '7.709999999999999', '100', '0')
(10226, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2012', '800', '700', '1500', '4', '115', 'NIT Warangal', 'civil engg', '7.89', '10', '0')
(10227, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '660', '1460', '4', '111', 'PICT', 'Computer Science', '3.3', '4', '0')
(10228, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '159', '326', '3.5', 'None', 'BMSCE', 'Computer Science', '8.67', '10', '0')
(10229, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '168', '163', '331', '4', '114', 'IIT BHU', 'Electronics Engineering', '8.04', '10', '0')
(10230, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '151', '312', '3.5', '106', 'Sardar Patel College of Engineering', 'Information Technology', '7.147', '100', '0')
(10231, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '169', '159', '328', '4', '115', 'Veermata Jijabai Technological Institute', 'Mechanical Engineering', '7.5', '10', '0')
(10232, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Financial Engineering', 'Spring ', '2014', '161', '157', '318', '3.5', '99', 'Anna University', 'EEE', '8.24', '100', '0')
(10233, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '167', '155', '322', '4', '111', 'UPTU', 'Computer Science & Engineering', '6.851999999999999', '100', '0')
(10234, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '154', '318', '4', '107', 'R V College of Engineering', 'Computer Science', '8.69', '10', '12')
(10235, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Human Computer Interaction', 'Fall ', '2013', '165', '158', '323', '4', '115', 'VTU', 'Computer Science', '7.3', '100', '0')
(10236, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '800', '530', '1330', '3', '102', 'NIT Jamshedpur', 'Mechanical', '6.62', '10', '0')
(10237, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2008', '800', '550', '1350', '3', '107', 'Koneru Lakshmaiah College of Engineering', 'Electronics and Communication Engineering', '8.8', '10', '0')
(10238, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2013', '164', '160', '324', '3', '106', 'VIT', 'ECE', '8.5', '10', '0')
(10239, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '155', '319', '4.5', '108', 'Anna University', 'CSE', '9.26', '10', '10')
(10240, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '157', '321', '3', '102', 'PESIT', 'Computer Science', '8.72', '10', '0')
(10241, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Materials Science & Engineering', 'Fall ', '2011', '800', '610', '1410', '4.5', '108', 'VNIT Nagpur', 'Metallurgy and Material Science Engg', '7.72', '10', '0')
(10242, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '780', '570', '1350', '3.5', '116', 'VIT', 'Mechanical', '8.23', '10', '0')
(10243, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '154', '321', '4', '114', 'SJCE', 'CS&E;', '8.69', '10', '0')
(10244, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '640', '1400', '4', '109', 'UPTU', 'Computer Science', '7.8', '100', '0')
(10245, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '167', '152', '319', '3', '108', 'Government College of Engineering Aurangabad', 'Mechanical', '7.976', '10', '0')
(10246, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '720', '1520', '4.5', '114', 'MU', 'Computers', '6.912000000000001', '100', '0')
(10247, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '170', '152', '322', '4.5', '116', 'BITS Pilani', 'Computer Science', '8.45', '10', '0')
(10248, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'environmental engineering', 'Fall ', '2015', '161', '158', '319', '4', '116', 'University of Mumbai', 'Chemical Engineering', '6.4', '100', '10')
(10249, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '150', '315', '4', '103', 'R V College of Engineering', 'CSE', '8.95', '10', '0')
(10250, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '470', '1270', '3.5', '110', 'NIT - Bhopal', 'ECE', '7.99', '10', '0')
(10251, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '154', '316', '3', '109', 'Sri Venkateswara College of Engineering', 'Computer Science Engineering', '7.7', '10', '0')
(10252, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '169', '150', '319', '4', '107', 'BITS Pilani', 'Computer Science', '7.5', '10', '0')
(10253, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2006', '800', '650', '1450', '5.5', '290', 'MVSR', 'Production Engineering', '8.4', '100', '0')
(10254, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '500', '1270', '3.5', '95', 'Anna University', 'cse', '8.4', '100', '0')
(10255, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'physics', 'Fall ', '2013', '164', '151', '315', '3.5', '112', 'University of Calcutta', 'Physics', '5.883', '100', '0')
(10256, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '162', '325', '4', '119', 'NITC', 'Computer Science', '8.17', '10', '0')
(10257, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '720', '490', '1210', '3.5', '105', 'BMSCE', 'ECE', '7.9', '100', '0')
(10258, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '152', '314', '3.5', '107', 'VTU', 'Computer Science and Engineering', '7.5', '100', '36')
(10259, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(10260, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '165', '154', '319', 'None', '106', 'GGSIPU', 'IT', '7.8', '100', '0')
(10261, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '780', '640', '1420', '3', '104', 'NIT', 'Mechanical Engineering', '9.1', '10', '0')
(10262, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '166', '150', '316', '3.5', '107', 'GGSIPU', 'IT', '7.9', '100', '0')
(10263, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Information Technology', 'Fall ', '2013', '168', '161', '329', '4.5', '116', 'BMSCE', 'Telecommunication Engineering', '7.391', '100', '0')
(10264, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '770', '660', '1430', '4', '113', 'MU', 'Mechanical Engineering', '6.6', '100', '0')
(10265, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '78', '470', '548', '4', '108', 'SSN College of Engineering', 'ELECTRONICS AND COMMUNICATIONSW', '8', '100', '0')
(10266, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '150', '312', '3.5', '98', 'K J Somaiya College of Engiineering', 'Information Technology', '6.56', '100', '0')
(10267, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '168', '161', '329', 'None', '114', 'PESIT', 'Information Science', '9.43', '10', '0')
(10268, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'EE / CS', 'Fall ', '2015', '163', '160', '323', '4', '111', 'BITS Pilani', 'Electrical and Electronics', '7.99', '10', '54')
(10269, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '520', '1320', '4', '113', 'VIT', 'Information Technology', '8.6', '10', '0')
(10270, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '167', '158', '325', '4', '111', 'MSRIT', 'Electrical and Electronics Enginnering', '7.84', '10', '0')
(10271, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '164', '152', '316', '4', '111', 'SSN College of Engineering', 'Mechanical Engg', '8.539', '10', '0')
(10272, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '740', '590', '1330', '3.5', '107', 'CEG', 'Mechanical engineering', '7.27', '10', '0')
(10273, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '160', '149', '309', '4', '99', 'Sri Jayachamarajendra College of Engineering', 'Electronics and Communication', '9.18', '10', '0')
(10274, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2013', '157', '157', '314', '4.5', '115', 'Anna University', 'Computer science', '8.1', '100', '0')
(10275, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '147', '314', '3', '97', 'R V College of Engineering', 'Electronics and Communication', '9.13', '10', '0')
(10276, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'EE / CS', 'Fall ', '2013', '800', '630', '1430', '3.5', '117', 'VTU', 'EE', '8.7', '100', '0')
(10277, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '170', '152', '322', '4', '103', 'PESIT', 'computer science', '7.388', '100', '0')
(10278, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Spring ', '2011', '800', '560', '1360', '3.5', '108', 'CEG', 'ECE', '8.908', '10', '0')
(10279, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '580', '1380', '3.5', '108', 'NIT Karnataka', 'NIT Karnataka Surathkal', '7.67', '10', '0')
(10280, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '166', '153', '319', '3.5', '111', 'IIIT Allahabad', 'CS', '8.52', '10', '24')
(10281, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '162', '154', '316', '4', '104', 'NIT - Surat', 'Mechanical Engineering', '8.61', '10', '0')
(10282, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '166', '159', '325', '4.5', '115', 'SJCE', 'Computer Science', '8.8', '10', '41')
(10283, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '162', '151', '313', '3.5', '98', 'SSN College of Engineering', 'Electronics and Communication', '8.620000000000001', '100', '0')
(10284, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '167', '152', '319', '3.5', 'None', 'IIT Madras', 'Mechanical', '8.7', '10', '0')
(10285, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '770', '570', '1340', 'None', 'None', 'Sri Venkateswara College of Engineering', 'Electronics and Communication', '6.6', '10', '0')
(10286, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Chemical Engineering', 'Fall ', '2012', '780', '600', '1380', '4', '108', 'D J Sanghvi', 'Chemical Engineering', '6.734', '100', '0')
(10287, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '770', '700', '1470', '4', '119', 'VTU', 'CS', '7.5', '100', '0')
(10288, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '770', '640', '1410', '4', '117', 'Watumull Institute University of Mumbai', 'Computer Science', '5.3', '100', '0')
(10289, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science/ Electronics and Communication', 'Fall ', '2015', '170', '154', '324', '3.5', '110', 'IIT Guwahati', 'Electronics and Communication Engineering', '7.95', '10', '20')
(10290, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '163', '151', '314', '3.5', '104', 'VESIT', 'IT', '6.2', '100', '0')
(10291, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '167', '155', '322', '4', '107', 'NIT Calicut', 'Mechanical', '9.36', '10', '20')
(10292, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '152', '313', '3.5', '104', 'VTU', 'Computer Science', '8.25', '100', '0')
(10293, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '166', '163', '329', 'None', '111', 'PSG College of Technology', 'Mechanical Engineering', '8.8', '10', '0')
(10294, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer vision/image-video processing', 'Fall ', '2014', '160', '152', '312', '3.5', '112', 'Anna University', 'Electronics and Communication Engineering', '9.09', '10', '0')
(10295, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '168', '161', '329', '4', '109', 'VTU', 'Information Science', '7.108', '100', '72')
(10296, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '166', '155', '321', '3.5', '106', 'CMRIT', 'Computer Science', '7.3', '100', '0')
(10297, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '530', '1310', '3', '104', 'VIT University', 'Computer Science', '9.2', '10', '0')
(10298, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '144', '308', '3.5', '99', 'PESIT', 'Information Science & Engineering', '8.43', '10', '0')
(10299, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering / Electrical Computer Engineering', 'Fall ', '2015', '770', '600', '1370', '3', '98', 'Manipal Institue of Technology', 'ECE', '8.23', '10', '36')
(10300, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Spring ', '2012', '800', '570', '1370', '3', '100', 'NIT Jaipur', 'Electronics and Communication Engg.', '8.51', '10', '0')
(10301, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '600', '1400', '3.5', 'None', 'BITS Goa', 'Electronics and Instrumentation', '8.8', '10', '0')
(10302, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '580', '1380', '3', '104', 'Nirma Institute of Technology', 'Computer Science', '8.57', '10', '0')
(10303, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '610', '1410', '5', '102', 'VTU', 'CSE', '7.3', '100', '0')
(10304, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '168', '161', '329', '5', '116', 'DA-IICT', 'Information and Communication Technology', '8.48', '10', '0')
(10305, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '163', '148', '311', '3', '94', 'VTU', 'Mech', '8.94', '10', '0')
(10306, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '152', '170', '322', '3.5', '107', 'VTU', 'Electronics and communication', '9', '10', '0')
(10307, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '168', '153', '321', '4', '113', 'VIT', 'CSE', '8.83', '10', '0')
(10308, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '166', '152', '318', '4', '111', 'NITK Surathkal', 'Electronics & Communications Engg', '8.45', '10', '15')
(10309, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2013', '730', '670', '1400', '3.5', '101', 'CEG', 'Mechanical', '8.61', '10', '0')
(10310, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '500', '1300', '4', '115', 'VIT University', 'Computer Science', '8.8', '10', '0')
(10311, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '700', '1490', '5', '119', 'VTU', 'Computer Science and Engineering', '7.25', '100', '0')
(10312, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Bioinformatics', 'Fall ', '2011', '730', '470', '1200', '3.5', '107', 'BITS Pilani', 'Biological Sciences and Computer Science (Dual)', '7.86', '10', '0')
(10313, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '640', '1440', '5', '113', 'MU', 'Electrical Engineering', '8.3', '10', '0')
(10314, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'electronics', 'Fall ', '2012', '740', '530', '1270', '3.5', '106', 'MU', 'Electronics', '6.85', '100', '0')
(10315, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '780', '660', '1440', '4.5', '109', 'MU', 'Computer Engineering', '5.7', '100', '0')
(10316, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(10317, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '168', '151', '319', '3.5', '94', 'NIT Karnataka', 'Electronics and Communication Engineering', '8.98', '10', '34')
(10318, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '700', '800', '1500', '4.5', '112', 'University of Pune', 'Information Technology', '7.2', '100', '0')
(10319, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '164', '157', '321', '3', '103', 'NIT Kurukshetra', 'ECE', '8.41', '10', '0')
(10320, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '800', '650', '1450', '4.5', '115', 'D j Sanghvi', 'Computer', '7.598000000000001', '100', '0')
(10321, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2012', '170', '148', '318', '3.5', '101', 'IIT BHU', 'civil engineering', '7.68', '10', '0')
(10322, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '790', '540', '1330', '3.5', '106', 'IIIT Allahabad', 'Information Technology', '8.5', '10', '0')
(10323, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '152', '316', '3.5', '107', 'VIT', 'Computer Science', '8.9', '10', '0')
(10324, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '166', '155', '321', '3.5', '104', 'The LNM Institute of Information Technology', 'CSE', '7.66', '10', '0')
(10325, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computational Science and Engineering', 'Fall ', '2014', '167', '164', '331', '4', '115', 'VIT', 'Mechanical Engineering (Energy Specialization)', '8.53', '10', '0')
(10326, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '159', '151', '310', '3.5', '106', 'SRM', 'Electronics & Communication Engineering', '8.724', '10', '0')
(10327, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2013', '800', '680', '1480', '3.5', '109', 'MU', 'Elec. and Telecommunications', '6.784999999999999', '100', '0')
(10328, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2006', '800', '730', '1530', '5.5', '290', 'MU', 'Computer Engg.', '6.3', '100', '0')
(10329, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '470', '1270', '3', 'None', 'VJTI', 'Computer Technology', '9.1', '10', '0')
(10330, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall', '2017', '170', '150', '320', '3.5', '105', 'BIT Mesra', 'Mechanical Engineering', '8.001999999999999', '100', '0')
(10331, 'Harvard University', '15', 'Admit', 'MS', 'urban and regional planning', 'Fall ', '2015', '168', '156', '324', '4.5', '118', 'School of Planning and Architecture New Delhi India', 'Architecture', '7.4', '100', '0')
(10332, 'Harvard University', '15', 'Admit', 'MS', 'Cell and Molecular Biology', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'NIT Calicut', 'Biotechnology', '9.1', '10', '0')
(10333, 'Harvard University', '15', 'Admit', 'MS', 'Architecture', 'Fall ', '2014', 'None', 'None', '0', 'None', 'None', 'Harvard University', 'Graduate School of Design', '0', '0', '0')
(10334, 'Harvard University', '15', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '159', '160', '319', '4', '111', 'R V College of Engineering', 'Computer Science', '7.4', '100', '0')
(10335, 'Harvard University', '15', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'IIT Kharagpur', 'Electrical Engg', '8.42', '10', '0')
(10336, 'Harvard University', '15', 'Admit', 'MS', 'Electronics and Communication', 'Fall', 'None', '158', '149', '307', '4', 'None', 'Indian Institute of Information and Technology design and manufacturing', 'ECE', '8', '10', '0')
(10337, 'Harvard University', '15', 'Admit', 'MS', 'physics', 'Fall ', '2011', '800', '540', '1340', '4.5', '113', 'BITS Pilani', 'Department of Physics', '8.79', '10', '0')
(10338, 'Harvard University', '15', 'Reject', 'MS', 'Pharmacology', 'Fall ', '2014', '145', '159', '304', '3.5', 'None', 'Nirma Institute of Technology', 'Pharmacy', '9.16', '10', '0')
(10339, 'Harvard University', '15', 'Reject', 'MS', 'environmental engineering', 'Fall ', '2013', '163', '154', '317', '4', '113', 'ISM Dhanbad', 'Environmental Science and Engineering', '8.94', '10', '0')
(10340, 'Harvard University', '15', 'Reject', 'MS', 'Biomedical Engineering', 'Fall ', '2011', '800', '700', '1500', '4.5', '114', 'Manipal Institue of Technology', 'ECE', '9.58', '10', '0')
(10341, 'Harvard University', '15', 'Reject', 'MS', 'physics', 'Fall ', '2011', '800', '530', '1330', '4.5', '115', 'BITS Pilani', 'Physics Electrical and Electronics', '9.17', '10', '0')
(10342, 'Harvard University', '15', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '510', '1310', '3.5', '94', 'BITS Goa', 'E.E', '7.21', '10', '0')
(10343, 'Harvard University', '15', 'Reject', 'MS', 'Computational/Systems BIology', 'Fall ', '2014', '165', '166', '331', 'None', '117', 'Not too well known', 'Electronics and Electrical Engineering', '7.74', '10', '0')
(10344, 'Harvard University', '15', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '780', '550', '1330', '1330', '112', 'BITS Goa', 'Information Systems', '8.6', '10', '0')
(10345, 'Harvard University', '15', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '168', '162', '330', '5', '116', 'BIT Mesra', 'ECE', '9.11', '10', '0')
(10346, 'Harvard University', '15', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '158', '319', '4', '107', 'VIT University', 'B.Tech Information Technology', '8.98', '10', '0')
(10347, 'Harvard University', '15', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '165', '163', '328', '4', '115', 'Pune University', 'Computer Engineering', '7.553', '100', '0')
(10348, 'Harvard University', '15', 'Reject', 'MS', 'optics', 'Fall ', '2006', '790', '560', '1350', '5.5', '283', 'Delhi College Of Engineeing', 'electronics and communication engg.', '7.5', '100', '0')
(10349, 'Harvard University', '15', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2006', '790', '560', '1350', '5.5', '283', 'Delhi College Of Engineeing', 'Electronics and Communication engg', '7.4', '100', '0')
(10350, 'Harvard University', '15', 'Reject', 'MS', 'Biostatistics', 'Fall ', '2011', '800', '670', '1470', 'None', '115', 'Indian Statistical Institute', 'Mathematical Statistics and Probability', '0', '0', '0')
(10351, 'Harvard University', '15', 'Reject', 'MS', 'Learning Sciences', 'Fall ', '2011', '720', '630', '1350', '3.5', '112', 'University of Delhi', 'English Hons.', '0', '0', '0')
(10352, 'Harvard University', '15', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '165', '330', '5.5', 'None', 'University of Cambridge', 'Computer Laboratory', '0', '0', '0')
(10353, 'Harvard University', '15', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '166', '152', '318', '3.5', '104', 'BITS Pilani', 'EEE', '0.8099999999999999', '100', '0')
(10354, 'Harvard University', '15', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '700', '1490', '5', '119', 'VTU', 'Computer Science and Engineering', '7.25', '100', '0')
(10355, 'Harvard University', '15', 'Reject', 'PhD', 'Electronics & Communication', 'Fall', '2013', '166', '152', '318', '3.5', '104', 'BITS Pilani, Pilani Campus', 'EEE', '8.1', '10', '0')
(10356, 'Illinios Institute of Technology, Chicago', '16', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall', '2018', '155', '147', '302', '4', '101', 'R.M.K. Engineering College', 'ECE', '8.11', '10', '15')
(10357, 'Illinios Institute of Technology, Chicago', '16', 'Admit', 'MS', 'Civil Engineering', 'Fall', '2016', '161', '148', '309', '3.5', '102', 'RV College of Engineering', 'Civil Engineering', '8.44', '10', '0')
(10358, 'Indiana University, Bloomington', '17', 'Reject', 'Masters', 'Computer Science', 'Fall', '2016', '166', '144', '310', '3', '92', 'Shri guru govind singh college of engineering, nanded', 'Computer Science', '8.59', '10', '0')
(10359, 'Iowa State University', '18', 'Admit', 'MS', 'Industrial Engineering', 'Fall', '2018', '167', '152', '319', '3', '108', 'Shri Ramdeobaba College of Engineering', 'Mechanical Engineering', '8.43', '10', '18')
(10360, 'Iowa State University', '18', 'Admit', 'MS', 'Industrial Engineering', 'Fall', '2015', '167', '157', '324', '0', '102', '-1', '-1', '-1', '-1', '0')
(10361, 'Kansas State University', '19', 'Reject', 'MS', 'Civil Engineering', 'Fall', '2019', '160', '143', '303', '4.5', '93', 'AP Shah Institute Of Technology, Thane', 'Civil Engineering', '7.22', '10', '6')
(10362, 'Kansas State University', '19', 'Reject', 'MS', 'Civil Engineering', 'Fall', '2019', '160', '143', '303', '4.5', '93', 'AP Shah Institute Of Technology, Thane', 'Civil Engineering', '7.22', '10', '6')
(10363, 'New York University', '20', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2016', 'None', 'None', '0', 'None', 'None', 'University of Petroleum and Energy Studies', 'Computer Science', '3.24', '4', '0')
(10364, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '166', '156', '322', '3', '105', 'Delhi College Of Engineeing', 'Computer Science', '0', '0', '0')
(10365, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '570', '1370', '3', '100', 'GITAM', 'Computer Science', '9.21', '10', '0')
(10366, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '167', '158', '325', '4', '115', 'Maharaja Agrasen Institute Of Technology', 'CSE', '7.17', '100', '7')
(10367, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '800', '500', '1300', '3', '97', 'Panjab University', 'BE(CS)', '6.74', '100', '0')
(10368, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '800', '690', '1490', '4.5', '117', 'BITS Goa', 'Electronics & Instrumentation Physics', '0', '0', '0')
(10369, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '48', '34', '82', '5', '100', 'NIT Surat', 'Mech Engg', '6.4', '100', '0')
(10370, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '790', '660', '1450', '3.5', '108', 'Harcourt Butler Technological Institute', 'CSE', '7.220000000000001', '100', '0')
(10371, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '800', '480', '1280', '4', '104', 'MU', 'Computer Dept.', '6.8', '100', '0')
(10372, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '760', '570', '1330', '3', '101', 'MU', 'IT', '5.7', '100', '0')
(10373, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '160', '322', '3', '109', 'Panjab University', 'Computer Science', '7.6', '100', '0')
(10374, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '640', '1440', '4.5', '114', 'IIT Roorkee', 'Electrical Engineering', '7.1', '10', '0')
(10375, 'New York University', '20', 'Admit', 'MS', 'CS', 'Fall ', '2015', '162', '156', '318', '3.5', '109', 'Anna University', 'CS', '7.33', '10', '0')
(10376, 'New York University', '20', 'Admit', 'MS', 'Information Science', 'Fall ', '2011', '680', '470', '1150', 'None', '102', 'Himachal Pradesh University/UIIT', 'Information Technology', '7.359999999999999', '100', '0')
(10377, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '157', '321', '4', '106', 'MU', 'Computer Engg.', '6.8', '100', '0')
(10378, 'New York University', '20', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '800', '640', '1440', '4.5', '117', 'MU', 'Electronics', '6.7', '100', '30')
(10379, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '770', '410', '1180', '3.5', '111', 'Pune University', 'Computer Engineering', '6.4', '100', '0')
(10380, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '440', '1230', '3.5', '104', 'VIT', 'Information Technology', '8', '10', '0')
(10381, 'New York University', '20', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2015', '164', '155', '319', '3', '110', 'COEP', 'Electrical Engineering', '7.23', '10', '10')
(10382, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '780', '670', '1450', '4', '111', 'RAIT', 'extc', '5.7', '100', '0')
(10383, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '156', '319', 'None', 'None', 'Panjab University', 'Information Technology', '7.0200000000000005', '100', '0')
(10384, 'New York University', '20', 'Admit', 'MS', 'International Affairs.', 'Fall ', '2013', '150', '148', '298', '4', '104', 'None', '0', '7.7', '100', '0')
(10385, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '167', '155', '322', '4.5', '109', 'Maharaja Agrasen Institute Of Technology', 'B.Tech (Computer Science)', '7.6', '100', '0')
(10386, 'New York University', '20', 'Admit', 'MS', 'Organizational Behavior', 'Spring ', '2014', 'None', 'None', '0', 'None', 'None', 'Penn State', 'Psychology/Business', '3.9', '4', '0')
(10387, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '490', '1270', '3', '102', 'Malwa Institute', 'Computer Science', '6.7', '100', '0')
(10388, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '169', '160', '329', '4.5', '111', 'NIT-Trichy', 'ECE', '7.82', '10', '24')
(10389, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '590', '1380', '3.5', '100', 'Sardar Patel College of Engineering', 'Computer engineering', '6.55', '100', '0')
(10390, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '151', '310', '3', '93', 'VTU', 'IS', '8', '100', '0')
(10391, 'New York University', '20', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '780', '670', '1450', '3', '93', 'Harcourt Butler Technological Institute', 'Biochemical Engineering', '7.3', '100', '0')
(10392, 'New York University', '20', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(10393, 'New York University', '20', 'Admit', 'MS', 'Information Science', 'Fall ', '2010', '800', '710', '1510', '6', '119', 'Indian Statistical Institute', 'Systems Science and Informatics Unit', '7.51', '100', '0')
(10394, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '168', '330', '4.5', '116', 'Pune University', 'Computer Engineering', '5.9', '100', '0')
(10395, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '640', '1440', '4', '114', 'West Bengal University Of Technology', 'Information Tecdhnology', '8.03', '10', '0')
(10396, 'New York University', '20', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '161', '152', '313', '4', '97', 'VIT University', 'ECE', '8.26', '10', '0')
(10397, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '770', '550', '1320', '3.5', '106', 'Galgotia college of engineering and technology II UPTU', 'Computer science', '7.2', '100', '0')
(10398, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '620', '1400', '3.5', '114', 'NMIMS', 'Computer Engineering', '3.41', '4', '0')
(10399, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '166', '153', '319', '4', '113', 'University of Pune', 'Computer Engineering Dept.', '6.459999999999999', '100', '3')
(10400, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '800', '510', '1310', '3.5', '100', 'MDU', 'IT', '6.9', '100', '0')
(10401, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '800', '590', '1390', '3', 'None', 'Umiversity of mumbai', '0', '6.1', '100', '0')
(10402, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall', 'None', '164', '151', '315', 'None', '101', 'None', 'CS', '7.2', '100', '64')
(10403, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '168', '149', '317', '4', '107', 'ITM University Gurgaon', 'CS', '9.01', '10', '6')
(10404, 'New York University', '20', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2015', '152', '149', '301', '3', '95', 'PSG College of Technology', 'BIOTECHNOLOGY', '0.82', '100', '0')
(10405, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '670', '1460', '4', '116', 'GGSIPU', 'IT', '7.6', '100', '0')
(10406, 'New York University', '20', 'Admit', 'MS', 'MIS-management related courses', 'Fall ', '2011', 'None', 'None', '0', '3', '95', 'VESIT', 'Electronics and Telecom', '0', '0', '0')
(10407, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '800', '630', '1430', '4', '120', 'Fr. Conceicao Rodrigues College of Engineering', 'Computer Engineering', '6.667', '100', '0')
(10408, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '790', '570', '1360', '4', '283', 'VTU', 'Information Science', '7.45', '100', '0')
(10409, 'New York University', '20', 'Admit', 'MS', 'physical therapy', 'Fall ', '2011', '580', '530', '1110', '3.5', '116', 'Christian Medical College Vellore', '0', '3.96', '4', '0')
(10410, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '630', '1430', '3.5', '111', 'MU', 'Computer Science', '6.4', '100', '0')
(10411, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Spring ', '2012', '730', '520', '1250', '3.5', '104', 'SSN College of Engineering', '0', '7.5', '100', '0')
(10412, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '168', '153', '321', '5', '106', 'UPTU', 'CS', '7', '100', '0')
(10413, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '161', '329', '4', '110', 'NIT Calicut', 'CSE', '6.91', '10', '0')
(10414, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '540', '1320', '3', '95', 'Jaypee Institute of Information Technology', 'computer science', '6.83', '10', '0')
(10415, 'New York University', '20', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '710', '540', '1250', '4', '103', 'Pune University', '0', '0', '0', '0')
(10416, 'New York University', '20', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(10417, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '168', '158', '326', 'None', '115', 'Cochin University of Science and Technology', 'Computer Science and Engineering', '7.5', '100', '0')
(10418, 'New York University', '20', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '800', '490', '1290', '3', 'None', 'None', '0', '0', '0', '0')
(10419, 'New York University', '20', 'Admit', 'MS', 'International Affairs.', 'Fall ', '2013', '740', '600', '1340', '4', '116', 'University of Mumbai', 'Engineering(Information Technology)', '5.8', '100', '0')
(10420, 'New York University', '20', 'Admit', 'MS', 'Management of Technology', 'Fall ', '2012', '750', '580', '1330', '5.5', '112', 'Anna University', 'Information Technology', '8.1', '100', '0')
(10421, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2009', '800', '580', '1380', '4', '111', 'PICT', 'Information Technology', '3.273', '4', '0')
(10422, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '690', '600', '1290', '3.5', '94', 'K J Somaiya College of Engiineering', 'Computer Science', '6.4', '100', '0')
(10423, 'New York University', '20', 'Admit', 'MS', 'Information Technology', 'Fall ', '2011', '800', '580', '1380', '5', '109', 'Shanghai Institute of Foreign Trade', 'Electronic commerce', '3.3', '4', '0')
(10424, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '530', '1330', '4', 'None', 'Western Michigan University', 'Computer Science', '3.2', '4', '0')
(10425, 'New York University', '20', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '164', '146', '310', '3', '91', 'JNTU', 'Electrical Engineering', '7.833', '100', '0')
(10426, 'New York University', '20', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '162', '138', '300', '3', '84', 'Anna University', 'mechanical', '7.8', '10', '0')
(10427, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '730', '630', '1360', '3', '97', 'VJTI', 'Computer Engineering', '7.8', '10', '0')
(10428, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', 'None', 'None', '0', 'None', 'None', 'Andhra University', 'CS', '7.5', '100', '0')
(10429, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'None', 'computer science', '7.2', '100', '0')
(10430, 'New York University', '20', 'Admit', 'MS', 'Interaction Design', 'Fall ', '2015', 'None', 'None', '0', 'None', '107', 'None', '0', '0', '0', '0')
(10431, 'New York University', '20', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(10432, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '167', '154', '321', '3', '100', 'NIT Nagpur', 'Computer Science and Engineering', '8.39', '10', '0')
(10433, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '740', '400', '1140', '3.5', '100', 'VTU', 'CS', '6.5', '100', '0')
(10434, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '690', '540', '1230', '4', '115', 'VTU', 'Electronics and Communications Engineering', '6.876', '100', '0')
(10435, 'New York University', '20', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '520', '1280', '3', '97', 'Not so reputed ..', 'Electrical E', '3.97', '4', '0')
(10436, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '162', '147', '309', '3.5', '100', 'K J Somaiya College of Engiineering', 'I.T.', '6.4', '100', '0')
(10437, 'New York University', '20', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '161', '148', '309', '3', '97', 'WBUT', 'ECE', '7', '10', '0')
(10438, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '149', '311', '3', '100', 'Charotar University of Science and Technology', 'Electronics & Communication', '8.85', '10', '36')
(10439, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '162', '160', '322', '4', '114', 'MU', 'Information Technology', '5.4', '100', '12')
(10440, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '168', '125', '293', '3.5', '104', 'Pune University', 'E&TC;', '5.5', '100', '0')
(10441, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall', 'None', '157', '152', '309', '3.5', '109', 'MU', 'I.T.', '5.4', '100', '0')
(10442, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '163', '157', '320', '5', '112', 'Amrita Vishwa Vidhyapeetham', 'Information Technology', '8.98', '10', '0')
(10443, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall', 'None', '166', '155', '321', '3', '108', 'IIIT Allahabad', 'IT', '8.8', '10', '0')
(10444, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '690', '550', '1240', 'None', '94', 'Sardar Patel College of Engineering', 'Computers', '6.714', '100', '0')
(10445, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '510', '1310', '4.5', '104', 'Osmania University', 'CSE', '8.76', '100', '0')
(10446, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '163', '158', '321', '4', '99', 'Amity University', 'Information Technology', '7.55', '10', '0')
(10447, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '710', '600', '1310', '3.5', 'None', 'North Dakota State University', 'ECE', '3.1', '4', '0')
(10448, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '760', '590', '1350', '4', '107', 'Nirma Institute of Technology', 'Computer Engineering', '7.5', '10', '0')
(10449, 'New York University', '20', 'Admit', 'MS', 'Technology Management', 'Fall ', '2014', '155', '150', '305', '3.5', '104', 'BITS Pilani', 'EEE', '0.722', '100', '0')
(10450, 'New York University', '20', 'Admit', 'MS', 'CS/ EE', 'Fall ', '2011', '730', '670', '1400', '4.5', '116', 'VTU', 'ECE', '7.2', '100', '0')
(10451, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '165', '149', '314', '4', '105', 'Anna University', 'ECE', '7.340000000000001', '100', '0')
(10452, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '520', '1310', '4', '109', 'VESIT', 'Computer Science', '6.9', '100', '0')
(10453, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '163', '157', '320', '4', '109', 'Punjabi University', 'Computer', '6.55', '10', '0')
(10454, 'New York University', '20', 'Admit', 'MS', 'CS / MIS', 'Fall', 'None', '168', '166', '334', '3.5', '116', 'MU', 'IT', '7.1', '10', '0')
(10455, 'New York University', '20', 'Admit', 'MS', 'CS / SE / IT / MIS', 'Fall ', '2015', '158', '157', '315', '4', '112', 'Rajasthan Technical University', 'Computer Engineering', '6.711', '100', '30')
(10456, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '760', '510', '1270', '5', '98', 'Rajiv Gandhi Institute Of Technology', 'Instrumentation', '6.056', '100', '0')
(10457, 'New York University', '20', 'Admit', 'MS', 'Journalism', 'Fall ', '2015', '161', '162', '323', '4.5', '115', 'Visvesvaraya NIT Nagpur', 'Electronics and Communication Engineering', '7.36', '10', '66')
(10458, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '560', '1340', '5', '114', 'MU', 'IT', '6.32', '100', '0')
(10459, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '640', '550', '1190', '3', '109', 'PTU', 'Electrical Engineering', '7.63', '100', '0')
(10460, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '800', '660', '1460', '3.5', '103', 'VIT', 'Telecommunication', '8.76', '10', '0')
(10461, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '750', '450', '1200', '3', '90', 'Andhra University', 'Information Technology', '8.6', '100', '0')
(10462, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '560', '1360', '4', '102', 'MU', 'Computer Engineering', '6.5', '100', '0')
(10463, 'New York University', '20', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '770', '670', '1440', '3.5', '114', 'UPTU', 'CS', '0', '0', '0')
(10464, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '600', '1400', '5', '114', 'NIT Tirchy', 'Electrical and Electronics Engineering', '7.8', '10', '0')
(10465, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '800', '390', '1190', '3', '97', 'UIR', 'MIS', '3.67', '4', '0')
(10466, 'New York University', '20', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2015', '161', '157', '318', '4.5', '114', 'NUST', 'Electrical and Power Engineering Department - Electronics Engineering', '3.13', '4', '3')
(10467, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '740', '590', '1330', '4', '110', 'None', '0', '0', '100', '0')
(10468, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '148', '308', '3', 'None', 'BPUT', '0', '7.4', '10', '0')
(10469, 'New York University', '20', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '800', '600', '1400', '3.5', '108', 'ITM Gurgaon', 'Electronics and Communications', '6.7', '100', '0')
(10470, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '165', '153', '318', '3', '108', 'Symbiosis Institute of Technology', 'Computer Science', '3.305', '4', '8')
(10471, 'New York University', '20', 'Admit', 'MS', 'Human Computer Interaction', 'Fall ', '2012', '750', '500', '1250', '4.5', '111', 'VIT University', 'B.Tech Bioinformatics', '8.88', '10', '0')
(10472, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '540', '620', '1160', '3.5', '273', 'MU', 'Computer Engg', '0', '0', '0')
(10473, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '500', '1300', '3.5', '109', 'CEG', 'Computer Science and Engineering', '7.9', '10', '0')
(10474, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', 'None', 'None', '0', 'None', 'None', 'MU', 'Information Technology', '0', '0', '0')
(10475, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Spring ', '2012', '770', '540', '1310', '4', '112', 'Vishwakarma Institute of Technology', 'Computer', '6.4', '100', '0')
(10476, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '510', '1310', '3.5', '104', 'Anna University', 'Computer Science', '7.4', '100', '0')
(10477, 'New York University', '20', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Spring ', '2015', '163', '155', '318', '3', '98', 'SSN College of Engineering', 'EEE', '8.2', '10', '12')
(10478, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '610', '1400', '3', '103', 'IET DAVV', 'Computer engineering', '7.1', '100', '0')
(10479, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'Ecole des Mines', 'Computer Science', '0', '0', '0')
(10480, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '800', '550', '1350', '3.5', '102', 'None', 'CS', '7.2', '100', '0')
(10481, 'New York University', '20', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2015', '162', '151', '313', '3.5', '104', 'JNTU', 'ECE', '7', '100', '0')
(10482, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '161', '147', '308', '3', '100', 'Anna University', 'B.E in Computer Science', '8.51', '10', '0')
(10483, 'New York University', '20', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '160', '150', '310', 'None', '110', 'Anna University', 'ECE', '8.46', '10', '16')
(10484, 'New York University', '20', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '161', '145', '306', '3.5', '98', 'JSS Noida', 'mechanical', '0', '0', '0')
(10485, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Spring ', '2013', '162', '152', '314', 'None', '112', 'SRKNEC Nagpur', 'Electronics', '6.3', '100', '0')
(10486, 'New York University', '20', 'Admit', 'MS', 'Real Estate Finance & Development', 'Fall ', '2011', '800', '320', '1120', '3.5', '104', 'NIT Warangal', 'Civil Engineering', '7.3', '10', '0')
(10487, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '710', '1510', '3', '100', 'None', '0', '0', '0', '0')
(10488, 'New York University', '20', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '166', '168', '334', '4.5', 'None', 'University of Mumbai', 'Electronics & Telecommunications', '6.6', '100', '0')
(10489, 'New York University', '20', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2015', '163', '152', '315', '3.5', '113', 'Maharishi Dayanand University', 'Electronics and Communication Engineering', '3.65', '4', '0')
(10490, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '165', '158', '323', '3.5', '112', 'Thapar University', 'Computer Science', '7.91', '10', '38')
(10491, 'New York University', '20', 'Admit', 'MS', 'CS', 'Spring ', '2015', '164', '153', '317', '3.5', 'None', 'Manipal Institue of Technology', 'Information Technology', '7.67', '10', '0')
(10492, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '570', '1320', '4', '113', 'University of Pune', 'Computer Engineering', '6.1', '100', '0')
(10493, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '540', '1340', '3', '109', 'Sardar Patel University', 'I.T', '9.3', '10', '0')
(10494, 'New York University', '20', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '780', '550', '1330', '2.5', '99', 'MU', 'IT', '6.2', '100', '0')
(10495, 'New York University', '20', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(10496, 'New York University', '20', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2013', '169', '159', '328', '4.5', '114', 'BITS Pilani', 'Computer Science', '7.63', '10', '4')
(10497, 'New York University', '20', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '800', '590', '1390', '3', '100', 'IP University Delhi', 'CSE', '7.4', '100', '0')
(10498, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '293', '141', '434', '3', 'None', 'dr d.y patil institute of engineering and techonology', 'electronics', '5.5', '100', '0')
(10499, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Spring ', '2011', '770', '440', '1210', '4', '105', 'MU', 'Information Technology', '6.5', '100', '0')
(10500, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '158', '324', '3', '111', 'BITS Goa', 'Computer Science', '7.14', '10', '12')
(10501, 'New York University', '20', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '470', '1250', '3.5', '106', 'D J Sanghvi', 'Electronics', '7.518000000000001', '100', '0')
(10502, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '530', '1320', '4', '112', 'Heritage Institute of Technology Kolkata', 'Computer Science and Engineering', '9.19', '10', '0')
(10503, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '800', '450', '1250', '3.5', '105', 'JNVU', 'Information Technology', '6.9', '100', '0')
(10504, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '169', '156', '325', '4', '107', 'NIT Tirchy', 'ECE', '7.95', '10', '14')
(10505, 'New York University', '20', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '530', '1320', '3', '100', 'University of Mumbai', 'EXTC', '7', '100', '0')
(10506, 'New York University', '20', 'Admit', 'MS', 'Management Information System', 'Fall ', '2013', '155', '155', '310', '3', '105', 'Atharva College', 'electronics & telecommunication', '6.5200000000000005', '100', '0')
(10507, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '800', '480', '1280', 'None', '110', 'BITS Pilani', '0', '6.5', '10', '0')
(10508, 'New York University', '20', 'Admit', 'MS', 'Information Technology', 'Spring ', '2013', '800', '450', '1250', '4', '108', 'Nirma Institute of Technology', 'IT', '7.78', '10', '0')
(10509, 'New York University', '20', 'Admit', 'MS', 'CS / SE / IT / MIS', 'Fall ', '2013', '164', '166', '330', '4', '119', 'WBUT', 'CSE', '7.83', '10', '0')
(10510, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '770', '600', '1370', '4', '114', 'Anna University', 'ECE', '7.8', '100', '0')
(10511, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Spring ', '2012', '750', '550', '1300', '3.5', '106', 'MU', 'Computer', '5.5600000000000005', '100', '0')
(10512, 'New York University', '20', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '165', '163', '328', '4', '115', 'Pune University', 'Computer Engineering', '7.553', '100', '0')
(10513, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '161', '152', '313', '4', '110', 'JUIT', 'CSE', '8', '10', '0')
(10514, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '160', '146', '306', '3.5', '106', 'Madras Institute of Technology', 'Information Technology', '8.2', '10', '54')
(10515, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '530', '1310', '3.5', '110', 'GITAM', 'CSE', '8.22', '10', '0')
(10516, 'New York University', '20', 'Admit', 'MS', 'Computational Biology', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'Master of Technology Anticipated graduation July 2013 Jawaharlal Nehru Univesity ', 'School of computational and systems biology', '8.15', '10', '0')
(10517, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '154', '317', '3', '101', 'MU', 'Computer Engineering', '7.6', '100', '0')
(10518, 'New York University', '20', 'Admit', 'MS', 'CS / SE / IT / MIS', 'Spring ', '2016', '164', '148', '312', '4', '103', 'VTU', 'CS', '6.3', '100', '68')
(10519, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '163', '160', '323', '3', '109', 'IIIT Hyderabad', 'Electronics & Communication', '7.6', '10', '0')
(10520, 'New York University', '20', 'Admit', 'MS', 'Information Systems', 'Spring ', '2015', '165', '155', '320', '3', '102', 'Hi-Tech College of Engineering and Technology', 'Computer Science', '6.726000000000001', '100', '54')
(10521, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '160', '324', '3', '108', 'WBUT', 'CSE', '8.19', '10', '42')
(10522, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '164', '148', '312', 'None', '110', 'University of Mumbai', 'Information Technology', '7.640000000000001', '100', '0')
(10523, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Spring ', '2015', '165', '152', '317', '3.5', '106', 'MNNIT', 'Civil Engineering', '7.1', '10', '0')
(10524, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '161', '147', '308', '3.5', '113', 'MSRIT', 'Information Science', '9.31', '10', '24')
(10525, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '163', '145', '308', '3', '93', 'Chitkara University', 'CSE', '7.05', '10', '0')
(10526, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '162', '148', '310', '4.5', '7', 'Manipal Institue of Technology', 'IT', '7.62', '10', '60')
(10527, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '800', '600', '1400', '3.5', '108', 'University of Pune', 'Computer Science', '7.1', '100', '0')
(10528, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Spring ', '2013', '159', '149', '308', '3', '108', 'Mody Institute of Technology and Science', 'Electronics and Communications', '6.9', '10', '0')
(10529, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '170', '157', '327', '4.5', '111', 'SASTRA', 'CS', '8.14', '10', '24')
(10530, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '470', '1260', '3', 'None', 'Techno India Salt Lake Kolkata', 'Electronics and Instrumentation Engineering', '8.4', '10', '0')
(10531, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '154', '320', '3.5', '107', 'D. A. V. V.', 'Information Technology', '6.503', '100', '0')
(10532, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '165', '151', '316', '3.5', '100', 'None', '0', '7.175', '100', '42')
(10533, 'New York University', '20', 'Admit', 'MS', 'MS Analytics/ MIS', 'Fall ', '2013', '161', '156', '317', '3.5', '105', 'Nagpur University', '0', '75.5', '10', '0')
(10534, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '800', '600', '1400', '4.5', '110', 'Pune University', 'Electronics', '5.4', '100', '0')
(10535, 'New York University', '20', 'Admit', 'MS', 'Information Systems', 'Spring', 'None', '800', '630', '1430', '3', '105', 'PEC University of Technology', 'Electrical', '8.69', '10', '0')
(10536, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '740', '550', '1290', '4', '101', 'Gujarat Technological University', 'Computer Engineering', '3.97', '4', '0')
(10537, 'New York University', '20', 'Admit', 'MS', 'Finance', 'Fall ', '2013', '800', '600', '1400', '4', '104', 'NIT', 'Civil', '7.8', '10', '0')
(10538, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '750', '640', '1390', '4', '267', 'SIES Graduate School of Technology', 'COMPUTER', '6', '100', '0')
(10539, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '550', '1320', '3.5', '108', 'VTU', 'Electronics', '6.8', '100', '0')
(10540, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '650', '1430', '4.5', '116', 'Pt. Ravishankar Shukla University', 'Computer Science & Engineering', '7.92', '10', '0')
(10541, 'New York University', '20', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2014', '168', '152', '320', '3', '107', 'NIT Tirchy', 'EEE', '7.61', '10', '36')
(10542, 'New York University', '20', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2015', '159', '152', '311', '3.5', '100', 'None', 'Civil Engineering', '7.19', '100', '8')
(10543, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '168', '152', '320', 'None', 'None', 'JSS Noida', 'Information Technology', '7', '100', '33')
(10544, 'New York University', '20', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '164', '156', '320', '3.5', 'None', 'Amrita School of Engineering', 'Mechanical Engineering', '6.5', '10', '19')
(10545, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '420', '1220', '4', '108', 'MU', 'Computer Engineering', '7.459999999999999', '100', '0')
(10546, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '550', '1330', '3', '104', 'I.E.T D.A.V.V.', 'Computer Engineering', '6.9799999999999995', '100', '0')
(10547, 'New York University', '20', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '164', '147', '311', '4', '103', 'MU', 'Electronics', '6', '100', '42')
(10548, 'New York University', '20', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '800', '610', '1410', '3', '104', 'MU', 'Information Technology', '7.7', '100', '0')
(10549, 'New York University', '20', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '147', '136', '283', '3.5', '107', 'Dayananda Sagar College of Engineering', 'Electronics and communication', '6.5', '100', '0')
(10550, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '730', '550', '1280', '3.5', '105', 'IGIT', 'CSE', '7.38', '100', '0')
(10551, 'New York University', '20', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(10552, 'New York University', '20', 'Admit', 'MS', 'Marketing Communication', 'Fall ', '2012', '760', '560', '1320', '3.5', '106', 'D J Sanghvi', 'Electronics', '6.07', '100', '0')
(10553, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '700', '400', '1100', 'None', '95', 'JMIT Radaur', 'CS', '7.1', '100', '0')
(10554, 'New York University', '20', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '157', '319', '3', '112', 'Nirma Institute of Technology', 'Instrumentation and Control', '7.8', '10', '12')
(10555, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '161', '326', '4', '118', 'University of Mumbai', 'Information Technology', '6.962999999999999', '100', '0')
(10556, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '164', '152', '316', '3.5', '114', 'VIT', 'B.Tech - IT', '8.2', '10', '0')
(10557, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '149', '311', '3.5', '91', 'SSN College of Engineering', 'Computer Science', '7.2', '10', '0')
(10558, 'New York University', '20', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', 'None', 'None', '0', 'None', '106', 'GITAM', 'Electronics and Communication', '7.15', '10', '0')
(10559, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '800', '600', '1400', '3', 'None', 'VTU', 'Computer Science', '7.9', '100', '0')
(10560, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '169', '160', '329', '5', '114', 'Sardar Patel College of Engineering', 'Information Technology', '6.2', '100', '0')
(10561, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '510', '1310', '4', '105', 'IIT Delhi', 'Chemical Engg', '6.7', '10', '0')
(10562, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '168', '157', '325', '4', '109', 'Anna University', 'Information Technology', '7.99', '10', '51')
(10563, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2015', 'None', 'None', '0', 'None', '100', 'VIT', 'E.C.E', '8.64', '10', '0')
(10564, 'New York University', '20', 'Admit', 'MS', 'Technology Management', 'Fall ', '2015', '158', '154', '312', 'None', '102', 'Osmania University', 'Mechanical Engineering', '7.6', '100', '0')
(10565, 'New York University', '20', 'Admit', 'MS', 'MIS/CS', 'Spring ', '2015', '162', '162', '324', '5', 'None', 'Guru Gobind Singh Indraprashta University', 'Computer Science Engineering', '7.8', '100', '52')
(10566, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '660', '1460', '4.5', '108', 'Techno. Inst. of Tech. Bhopal', 'Computer Science', '7.6', '100', '0')
(10567, 'New York University', '20', 'Admit', 'MS', 'MIS-management related courses', 'Fall ', '2012', '800', '710', '1510', '5.5', '116', 'NSIT', 'Information Technology', '7.12', '100', '0')
(10568, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Spring ', '2012', '800', '540', '1340', '3', '101', 'Ajay Kumar Garg Engineering College', 'CS', '7.859999999999999', '100', '0')
(10569, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '600', '800', '1400', '3.5', '110', 'MU', 'Comp Engg', '6.867', '100', '0')
(10570, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '167', '151', '318', '3', '7', 'Manipal Institue of Technology', 'ICT', '8', '10', '0')
(10571, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '640', '1410', '3', '101', 'University of Mumbai', 'Computer Science', '6.62', '100', '0')
(10572, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '800', '700', '1500', 'None', '101', 'CEG', 'MSc Computeer Science', '9.02', '10', '32')
(10573, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '800', '600', '1400', '4', '110', 'Manipal Institue of Technology', 'Electronics and Communication', '8.49', '10', '0')
(10574, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '50', '35', '85', '5', '112', 'MU', 'Electronics', '6.1', '100', '0')
(10575, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '170', '162', '332', 'None', '116', 'Dhirubhai Ambani Institute of Information & Communication Technology', 'ICT', '7.32', '10', '0')
(10576, 'New York University', '20', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Spring ', '2011', '760', '660', '1420', '3.5', '109', 'Devi Ahilya University', 'Computer Science', '7.76', '10', '0')
(10577, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '170', '154', '324', '3', '100', 'Anna University', 'CS', '7.5', '100', '36')
(10578, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Spring ', '2015', '165', '145', '310', '3', 'None', 'Pune University', 'ECE', '6.6', '100', '62')
(10579, 'New York University', '20', 'Admit', 'MS', 'Management Information System', 'Fall ', '2015', '158', '167', '325', '3', '105', 'Cochin University of Science and Technology', 'Electrical and Electronics Engineering', '6.75', '100', '57')
(10580, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '166', '161', '327', '3', '111', 'VTU', 'Computer Science', '6.5', '100', '0')
(10581, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '161', '329', '3.5', '113', 'Jaypee Institute of Information Technology', 'Computer Science & IT', '8.3', '10', '0')
(10582, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '800', '470', '1270', 'None', '94', 'VTU', 'INFORMATION SCIENCE', '8', '100', '0')
(10583, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '157', '322', '3.5', '105', 'University of Mumbai', 'Computer Engineering', '6.9', '100', '0')
(10584, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '161', '153', '314', 'None', 'None', 'UPTU', 'Computer Science', '7.5', '100', '0')
(10585, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '730', '650', '1380', '4', '108', 'MU', 'Computer Engineering', '5.8', '100', '0')
(10586, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '660', '1460', '3', '104', 'NSIT', 'IT', '6.9', '100', '0')
(10587, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '167', '156', '323', '4', '107', 'SRM', 'CSE', '7.8', '10', '10')
(10588, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '630', '1420', '3', '98', 'VESIT', 'Information Technology', '7.3', '100', '0')
(10589, 'New York University', '20', 'Admit', 'MS', 'CS / MIS', 'Fall ', '2013', '162', '158', '320', '4', '105', 'GGSIPU', 'IT', '7.025', '100', '0')
(10590, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '165', '152', '317', '3', '111', 'Netaji Subhas Institute of Technology', 'Computer Engineering', '7.35', '100', '0')
(10591, 'New York University', '20', 'Admit', 'MS', 'Management Information System', 'Fall ', '2014', '162', '162', '324', '4', '108', 'JNTU', 'EIE', '6.7', '100', '0')
(10592, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '162', '150', '312', '3.5', '105', 'PESIT', 'Computer Science', '7.93', '100', '0')
(10593, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '166', '160', '326', '3.5', '113', 'Manipal Institue of Technology', 'Computer Science & Engineering', '7.14', '10', '0')
(10594, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '600', '1370', '4', '110', 'None', '0', '7.46', '10', '0')
(10595, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '155', '319', '3.5', '105', 'NMIMS', 'Computer Science', '3.26', '4', '0')
(10596, 'New York University', '20', 'Admit', 'MS', 'Microbiology', 'Fall ', '2011', '770', '580', '1350', '3.5', '111', 'Allahabad Agriculture University', 'Molecular and Cellular Engg', '9.74', '10', '0')
(10597, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '800', '640', '1440', '5.5', '287', 'MU', 'IT', '6.2', '100', '0')
(10598, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '158', '147', '305', '3', '98', 'PESIT', 'CS', '8.16', '10', '0')
(10599, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '750', '500', '1250', '4', '101', 'University of Mumbai', 'Computers', '6.62', '100', '0')
(10600, 'New York University', '20', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '169', '154', '323', '4', '117', 'Netaji Subhas Institute of Technology', 'Electronics and Communication', '8.2', '10', '0')
(10601, 'New York University', '20', 'Admit', 'MS', 'Management of Technology', 'Fall ', '2015', '158', '146', '304', '4', '100', 'VESIT', 'Electronics', '6.16', '100', '0')
(10602, 'New York University', '20', 'Admit', 'MS', 'Management of Technology', 'Fall ', '2012', '780', '380', '1160', '3', '103', 'CEG', 'Comp Science dept', '7', '10', '0')
(10603, 'New York University', '20', 'Admit', 'MS', 'Information Systems', 'Spring ', '2012', '800', '340', '1140', '3.5', '105', 'PICT', 'Information Technology', '6.1', '100', '0')
(10604, 'New York University', '20', 'Admit', 'MS', 'Human Resources', 'Fall ', '2011', '650', '570', '1220', '3.5', '113', 'University of Mumbai', 'Management', '6.7', '100', '0')
(10605, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '740', '630', '1370', '3.5', '112', 'VTU', 'Information Science', '6.4', '100', '0')
(10606, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '630', '1390', '4.5', '114', 'NMIMS', 'Computer Science', '3.24', '4', '0')
(10607, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '760', '620', '1380', '3', '96', 'Panjab University', 'Computer Science', '8.067', '100', '0')
(10608, 'New York University', '20', 'Admit', 'MS', 'CS / MIS', 'Fall ', '2013', '790', '480', '1270', '3', '100', 'Sir MVIT', 'CS', '7.5', '100', '0')
(10609, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '650', '1400', '4', '114', 'Anna University', 'CS', '7.529999999999999', '100', '0')
(10610, 'New York University', '20', 'Admit', 'MS', 'Business Analytics', 'Fall ', '2015', '154', '156', '310', '3', '110', 'Bangalore Institute of Technology', 'electronics', '6.6', '100', '0')
(10611, 'New York University', '20', 'Admit', 'MS', 'Management Information System', 'Fall ', '2014', '163', '153', '316', '4.5', '108', 'H B T I Kanpur India', 'Food Tech', '0.73', '100', '0')
(10612, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Spring ', '2011', '770', '600', '1370', '4.5', '116', 'Nirma Institute of Technology', 'EC', '7.96', '10', '0')
(10613, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '680', '1470', '3', '107', 'University of Mumbai', 'i.t.', '6.593999999999999', '100', '0')
(10614, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '780', '650', '1430', '4', '111', 'VESIT', 'EXTC', '0', '0', '0')
(10615, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '164', '163', '327', 'None', '117', 'NIT Calicut', 'Computer Science', '7.85', '10', '16')
(10616, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '800', '590', '1390', '2.5', '107', 'TSEC', 'Computer Engineering', '6.1', '100', '0')
(10617, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '164', '156', '320', '4.5', '109', 'Bharati Vidyapeeth', 'Electronics', '6.36', '100', '0')
(10618, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '161', '152', '313', '3.5', '105', 'None', 'CSE', '7.9', '10', '0')
(10619, 'New York University', '20', 'Admit', 'MS', 'advertising', 'Fall ', '2014', 'None', 'None', '0', 'None', 'None', 'Osmania University', 'Mathematics Statisitcs and Computer Science', '3.92', '10', '0')
(10620, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '520', '1320', '3.5', '94', 'Sona College', 'Information Technology', '8', '100', '0')
(10621, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '590', '1390', '4', '114', 'NIT Tirchy', 'ECE', '8.75', '10', '0')
(10622, 'New York University', '20', 'Admit', 'MS', 'None', 'Fall ', '2015', 'None', 'None', '0', 'None', '110', 'VTU', 'Electrical & Electronics', '7.2', '100', '0')
(10623, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '540', '1290', '3', '93', 'CEG', 'Information Technology', '7.8', '10', '0')
(10624, 'New York University', '20', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '167', '154', '321', '3', '110', 'Amity School of Engineering and Technology', 'Instrumentation & Control Engineering', '6.6', '100', '0')
(10625, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '136', '139', '275', '1.5', 'None', 'JNTU', 'Computer science', '6.02', '10', '0')
(10626, 'New York University', '20', 'Admit', 'MS', 'Information Systems', 'Fall ', '2014', '161', '158', '319', '4', '110', 'CEG', 'Computer Science and Engineering', '9.35', '10', '0')
(10627, 'New York University', '20', 'Admit', 'MS', 'Electrical/ Art & Technology', 'Fall ', '2012', '166', '155', '321', '4', '113', 'University of Pune', 'E&TC;', '5.8', '100', '0')
(10628, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Spring ', '2012', '750', '600', '1350', '3', '105', 'None', '0', '8.5', '10', '0')
(10629, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '168', '151', '319', '3.5', '113', 'MU', 'Computer Engineering', '7.13', '100', '0')
(10630, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '155', '316', '4', '113', 'Atharva College', 'Information Technology', '6.412999999999999', '100', '0')
(10631, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '800', '430', '1230', '3', '103', 'Sri Venkateswara College of Engineering', 'EEE', '6.8', '100', '0')
(10632, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Spring ', '2012', 'None', 'None', '0', 'None', 'None', 'Pune University', '0', '7.3', '100', '0')
(10633, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '164', '155', '319', '4.5', '108', 'NIT Silchar', 'Computer Science', '8.53', '10', '20')
(10634, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '770', '710', '1480', '4', '110', 'MU', 'Electronics', '6.3', '100', '0')
(10635, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '167', '154', '321', '3', '112', 'Jaypee Institute of Information Technology', 'I.T', '8.2', '10', '0')
(10636, 'New York University', '20', 'Admit', 'MS', 'Robotics', 'Fall ', '2015', '168', '161', '329', '4', '109', 'CoE Trivandrum', 'EE', '8.29', '10', '0')
(10637, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '740', '400', '1140', '3', '97', 'MSRIT', 'IT', '6.8', '100', '0')
(10638, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '151', '319', '3.5', '108', 'Netaji Subhas Institute of Technology', 'Computers Engineering', '6.720000000000001', '100', '21')
(10639, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '161', '151', '312', '3', '103', 'Punjab Technical University', 'Information Technology', '7.7', '100', '42')
(10640, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '660', '1460', '4.5', '113', 'MU', 'Computer Engg', '6.35', '100', '0')
(10641, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '800', '740', '1540', '5.5', '290', 'MU', 'computers', '6', '100', '0')
(10642, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '166', '159', '325', '4', '106', 'D.K.T.E. (Shivaji University Maharashtra)', 'CS', '6.6', '100', '0')
(10643, 'New York University', '20', 'Admit', 'MS', 'Human Computer Interaction', 'Fall ', '2014', '161', '156', '317', '4', '113', 'PESIT', 'Computer Science', '7.99', '100', '0')
(10644, 'New York University', '20', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2013', '168', '156', '324', '3.5', '114', 'ITM University', 'Computer Science', '8.3', '10', '0')
(10645, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '780', '550', '1330', '3', '101', 'Nagpur University', 'Computer Science', '7.356', '100', '0')
(10646, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '640', '1400', '4', '109', 'UPTU', 'Computer Science', '7.8', '100', '0')
(10647, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '163', '148', '311', 'None', '106', 'Mody Institute of Technology and Science', 'Computer Science', '9.76', '10', '58')
(10648, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '167', '150', '317', '4', '104', 'Manipal Institue of Technology', 'Computer Science and Engineering', '8.41', '10', '29')
(10649, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '530', '1330', '3.5', '109', 'MU', 'Computer', '6.7', '100', '0')
(10650, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '780', '580', '1360', '4', '104', 'Vishwakarma Institute of Technology', 'Computer Science', '6.45', '100', '0')
(10651, 'New York University', '20', 'Admit', 'MS', 'Information Management', 'Fall ', '2015', '163', '153', '316', '3.5', '103', 'None', '0', '0', '0', '0')
(10652, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '620', '1420', '4', '114', 'Anna University', 'CSE', '7.7', '100', '0')
(10653, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '157', '325', '3', '103', 'Manipal Institue of Technology', 'Information technology', '7.75', '10', '0')
(10654, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '580', '1380', '3', '104', 'Nirma Institute of Technology', 'Computer Science', '8.57', '10', '0')
(10655, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '660', '1460', '4', '113', 'Guru Gobind Singh Indraprashta University', 'B.Tech (CSE)', '8.03', '100', '0')
(10656, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '151', '315', '3.5', '110', 'UPTU', 'CSE', '8.45', '100', '0')
(10657, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '790', '580', '1370', '3.5', '114', 'NIT Warangal', 'EEE', '7.57', '10', '0')
(10658, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '700', '800', '1500', '4.5', '112', 'University of Pune', 'Information Technology', '7.2', '100', '0')
(10659, 'New York University', '20', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(10660, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '750', '610', '1360', '3', '109', 'VJTI', 'Computer Engineering', '8.6', '10', '0')
(10661, 'New York University', '20', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '790', '450', '1240', '4', '107', 'NMIMS', 'Computer Science', '3.62', '4', '0')
(10662, 'New York University', '20', 'Reject', 'MS', 'analytics', 'Fall ', '2014', '166', '160', '326', '3.5', '109', 'None', 'computer science', '7.94', '10', '0')
(10663, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '160', '152', '312', '3.5', '100', 'CSVTU', 'Computer Science', '7.3', '100', '0')
(10664, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '164', '155', '319', '3', '111', 'Amity University', 'Computer Science', '7.22', '10', '36')
(10665, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '800', '570', '1370', '3.5', '100', 'MU', 'Computer Engineering', '0', '0', '0')
(10666, 'New York University', '20', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '168', '147', '315', '3.5', '101', 'VIT University', 'CSE', '9.14', '10', '0')
(10667, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '800', '530', '1330', '4', '110', 'IIT BHU', 'CSE', '0.796', '100', '0')
(10668, 'New York University', '20', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '730', '450', '1180', '3', '104', 'VTU', 'Electrical & Electronics', '6.1', '100', '0')
(10669, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '164', '157', '321', '3', '105', 'VTU', 'Electrical and Electronics', '7.3260000000000005', '100', '24')
(10670, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '690', '1490', '4.5', '101', 'University of Mumbai', 'Computers', '6.3', '100', '0')
(10671, 'New York University', '20', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '157', '156', '313', '3.5', '107', 'VNR VJIET', 'ece', '6.7', '100', '0')
(10672, 'New York University', '20', 'Reject', 'MS', 'MIS', 'Fall ', '2011', '720', '530', '1250', '4', '107', 'Pune University', 'Computer', '0', '0', '0')
(10673, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '147', '150', '297', 'None', '93', 'DEVI AHILYA VISHWAVIDYALAYA INDORE', 'IIPS', '9.39', '10', '0')
(10674, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '168', '151', '319', '3.5', 'None', 'VJTI', 'Computer Engg', '8.3', '10', '0')
(10675, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '740', '640', '1380', '3', '87', 'MU', 'Computer science', '6.6', '100', '0')
(10676, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '158', '151', '309', '3.5', '110', 'MGU', 'CSE', '7.1', '100', '0')
(10677, 'New York University', '20', 'Reject', 'MS', 'MIS-management related courses', 'Fall ', '2012', '160', '148', '308', '3', '106', 'Jaypee Institute of Information Technology', 'Information Technology', '6.1', '10', '0')
(10678, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '480', '1280', '3', '98', 'MU', 'computer', '6.43', '100', '0')
(10679, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '167', '143', '310', '3.5', '98', 'St Francis Institute of Technology - Mumbai Unversity', 'Computer Engineering', '7', '100', '0')
(10680, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '148', '309', '4', '107', 'Charotar University of Science and Technology', 'Information Technology', '8.3', '10', '0')
(10681, 'New York University', '20', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '650', '650', '1300', '3', '102', 'MU', 'Information Technology', '6.3', '100', '0')
(10682, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '168', '153', '321', '3.5', 'None', 'Mahrishi Dayanand University', 'Computer Science and Engineering', '6.942', '100', '0')
(10683, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '760', '630', '1390', '3.5', '111', 'University of Mumbai', 'Computer Engineering', '6.7', '100', '0')
(10684, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '740', '550', '1290', '3.5', '104', 'MU', 'computer', '6.723000000000001', '100', '0')
(10685, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '150', '313', '3.5', '110', 'K.I.E.T.', 'Computer Science', '6.3', '100', '0')
(10686, 'New York University', '20', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '165', '158', '323', '3.5', '111', 'MU', 'Computer Science', '6.612', '100', '0')
(10687, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2010', '780', '340', '1120', '3', '93', 'ITM Gurgaon', 'CSE', '7.2', '100', '0')
(10688, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '156', '323', '4', '116', 'University of Mumbai', 'Computer Engineering', '6.555', '100', '16')
(10689, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '152', '311', '4', '110', 'MU', 'Computer engg', '6.2', '100', '0')
(10690, 'New York University', '20', 'Reject', 'MS', 'CS', 'Fall ', '2013', '160', '152', '312', 'None', '98', 'MU', 'information technology', '6.5', '100', '0')
(10691, 'New York University', '20', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '170', '148', '318', '3', '100', 'PEC University of Technology', 'Electrical Engg.', '7', '10', '0')
(10692, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '800', '510', '1310', '3.5', '108', 'Bhilai Institute of Technology', 'Electrical Engineering', '6.62', '100', '0')
(10693, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '149', '308', '3', '102', 'MU', 'computer engg', '6.6', '100', '0')
(10694, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '790', '580', '1370', '4', 'None', 'VTU', 'Computer Science', '8.11', '10', '0')
(10695, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '680', '430', '1110', '3.5', '102', 'VCET', 'Computer Science', '6.3', '100', '0')
(10696, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '740', '620', '1360', '4', '106', 'Anna University', 'computer science', '8.1', '100', '0')
(10697, 'New York University', '20', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '750', '490', '1240', '3', '104', 'MU', 'Information Technology', '6.2', '100', '0')
(10698, 'New York University', '20', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '156', '158', '314', '4', '105', 'KIIT', 'Computer Science', '7.16', '10', '31')
(10699, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '159', '150', '309', '4', '105', 'GITAM', 'ECE', '8.4', '100', '87')
(10700, 'New York University', '20', 'Reject', 'MS', 'MIS', 'Spring ', '2012', '800', '560', '1360', '4', '107', 'Kakatiya University', 'E.E.E', '6.7', '100', '0')
(10701, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '740', '620', '1360', '4.5', '117', 'Thadomal Shahani Engineering College', 'Information Technology', '6', '100', '0')
(10702, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '160', '146', '306', '3', '100', 'GGSIPU', 'Computer Sceince & Engg.', '7.7', '100', '0')
(10703, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '157', '315', '3.5', '101', 'Anna University', 'Information Technology', '0.818', '100', '21')
(10704, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '790', '610', '1400', '3.5', '117', 'MU', 'Information Technology', '6.6', '100', '0')
(10705, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '730', '500', '1230', '2.5', '87', 'St Francis Institute of Technology - Mumbai Unversity', 'Computers', '6', '100', '0')
(10706, 'New York University', '20', 'Reject', 'MS', 'CS MIS', 'Fall ', '2012', '160', '148', '308', '3.5', '106', 'Fr Agnels Vashi (University of Mumbai)', 'Computer', '6.5', '100', '0')
(10707, 'New York University', '20', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '160', '153', '313', '4', '111', 'Anna University', '0', '9.2', '10', '0')
(10708, 'New York University', '20', 'Reject', 'MS', 'CS', 'Fall ', '2012', '162', '152', '314', '4', '101', 'VESIT', 'Information Technology', '6.56', '100', '0')
(10709, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '540', '1330', '3', '102', 'University of Pune', 'Computer Engineering', '5.779999999999999', '100', '0')
(10710, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Spring ', '2016', '163', '163', '326', '4', '110', 'Goa University', 'Computer Engineering', '7.372', '100', '46')
(10711, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '800', '670', '1470', '3.5', '104', 'Pune University', 'Computer Engineering', '6.6', '100', '0')
(10712, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '159', '326', '3.5', '105', 'Dayananda Sagar College of Engineering', 'Information Science', '7.5', '100', '52')
(10713, 'New York University', '20', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '750', '550', '1300', '4', '108', 'YMCA', 'Computer Engineering', '7.6', '100', '0')
(10714, 'New York University', '20', 'Reject', 'MS', 'Biochemistry and Molecular biology', 'Fall ', '2011', '710', '540', '1250', '4.5', '110', 'Pune University', '0', '7.8', '100', '0')
(10715, 'New York University', '20', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '159', '150', '309', '3.5', '103', 'MU', 'Computer Science', '6.5', '100', '0')
(10716, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '610', '1410', '3.5', '112', 'Maharishi Dayanand University', 'Computer Science', '7.1', '100', '0')
(10717, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '160', '147', '307', '3', '95', 'Jaypee Institute of Information Technology', 'CSE', '7.25', '100', '0')
(10718, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '154', '318', '4', '114', 'VTU', 'CSE', '7.69', '10', '24')
(10719, 'New York University', '20', 'Reject', 'MS', 'Information technology management', 'Fall ', '2012', '770', '530', '1300', '4', '102', 'Nagpur University', 'Electronics Engineering', '6.5', '100', '0')
(10720, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '153', '317', '3', '103', 'SVITS', 'Computer Science', '7.3', '100', '0')
(10721, 'New York University', '20', 'Reject', 'MS', 'Electrical Engineering & Information Technology', 'Spring ', '2015', '164', '144', '308', '4', '97', 'INSTITUTE OF ENGINEERING AND TECHNOLOGY', 'ELECTRONICS AND TELECOMMUNICATION', '7.340000000000001', '100', '3')
(10722, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '380', '1180', '3', '94', 'MDU', 'Computer Science', '6.1', '100', '0')
(10723, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '170', '168', '338', '4.5', '116', 'Pune University', 'B.E (Computer Science)', '5.7', '100', '15')
(10724, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '161', '162', '323', '4', '110', 'VTU', 'Electronics and Communication', '6.295', '100', '0')
(10725, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '163', '156', '319', '3', '111', 'BITS Pilani', 'Information Systems', '6.55', '10', '60')
(10726, 'New York University', '20', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '158', '149', '307', '3.5', '104', 'MPSTME NMIMS University Mumbai', 'Computer Engineering', '2.99', '4', '0')
(10727, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Spring ', '2016', '165', '145', '310', '3.5', '100', 'MU', 'Extc', '6.6', '100', '0')
(10728, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '550', '1350', '4.5', '108', 'Don Bosco Institute of Technology', 'Computers', '6.6', '100', '0')
(10729, 'New York University', '20', 'Reject', 'MS', 'Computational Science', 'Fall ', '2013', '155', '158', '313', 'None', '103', 'D.V.R College of Engineering and Technology', 'Information Technology', '6.749', '100', '0')
(10730, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '770', '530', '1300', '3', '101', 'R.V.R&J.C-ANU;', 'CSE', '8.572', '100', '0')
(10731, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '157', '152', '309', '3.5', '100', 'Rajasthan Technical University', 'Computer Science', '7.5', '100', '0')
(10732, 'New York University', '20', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '159', '160', '319', '3.5', '115', 'None', 'Computers', '7.84', '10', '0')
(10733, 'New York University', '20', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '159', '157', '316', '3', '105', 'MU', 'Information Technology', '6.146', '100', '0')
(10734, 'New York University', '20', 'Reject', 'MS', 'mba', 'Fall', 'None', '1310', '550', '1860', '3.5', 'None', 'SASTRA', 'COMPUTER SCIENCE', '7.8', '10', '0')
(10735, 'New York University', '20', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '770', '690', '1460', '3', '100', 'Punjab Technical University', 'CS', '8.58', '100', '0')
(10736, 'New York University', '20', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '158', '146', '304', '3', '91', 'Kurukshetra University', 'Dept. of Instrumentation', '7.3', '10', '0')
(10737, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '159', '151', '310', '4', '107', 'Bangalore Institute of Technology', 'ISE', '7.176', '100', '28')
(10738, 'New York University', '20', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '155', '147', '302', '3', '95', 'University of Mumbai', 'Computer Engg', '6.2', '100', '0')
(10739, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '420', '1200', '3', '91', 'K J Somaiya College of Engiineering', 'Computer Science', '0', '0', '0')
(10740, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '161', '155', '316', '4', 'None', 'Indira Gandhi Institute Of Technology', 'Computer Sciences', '8.1', '100', '0')
(10741, 'New York University', '20', 'Reject', 'MS', 'Business', 'Fall ', '2012', '770', '550', '1320', '4', '105', 'Vidyalankar Institute of Technology', 'Electronics', '5.8', '100', '0')
(10742, 'New York University', '20', 'Reject', 'MS', 'Computational Biology', 'Fall ', '2012', '159', '165', '324', '4', '118', 'MSRIT', 'Computer Science and Engineering', '7.4', '100', '0')
(10743, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '170', '150', '320', '3', '104', 'Jaypee Institute of Information Technology', 'Computer Science Engineering', '7.1', '100', '0')
(10744, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '159', '322', '4.5', '111', 'BITS Hyderabad', 'Electronics and Communication', '7.63', '10', '30')
(10745, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '730', '1530', '4', '120', 'Random Anna University Affiliated College', 'Computer Science', '8.2', '10', '0')
(10746, 'New York University', '20', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2013', '159', '150', '309', '3', '107', 'Vidyalankar Institute of Technology', 'computer science', '6.5', '100', '0')
(10747, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '790', '710', '1500', '4.5', 'None', 'D J Sanghvi', 'IT', '6.7', '100', '0')
(10748, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '156', '156', '312', '4', '97', 'Pune University', 'Information Technology', '5.301', '100', '19')
(10749, 'New York University', '20', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '780', '500', '1280', '3', '108', 'VTU', 'Information science', '7.3', '100', '0')
(10750, 'New York University', '20', 'Reject', 'MS', 'CS MIS', 'Fall ', '2013', '161', '152', '313', '3.5', '97', 'MU', 'Electrical & Electronics', '6.4', '100', '0')
(10751, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '710', '1510', '3.5', '112', 'MU', 'Computer Engg', '6.15', '100', '0')
(10752, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '700', '570', '1270', '3.5', '107', 'PICT', 'Computer Engineering', '5.8', '100', '0')
(10753, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '166', '161', '327', '4', '116', 'JNTU', 'Mechanical Engineering', '6.934', '100', '24')
(10754, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '166', '153', '319', '3.5', '95', 'BITS Pilani', 'Computer Science', '6.5', '10', '0')
(10755, 'New York University', '20', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '160', '145', '305', '3', '103', 'Anna University', 'Electronics & Communication', '6.5', '100', '0')
(10756, 'New York University', '20', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '157', '156', '313', '3', '109', 'MU', 'Computer', '5.6', '100', '48')
(10757, 'New York University', '20', 'Reject', 'MS', 'MIS', 'Fall', 'None', '720', '580', '1300', '4', '105', 'None', 'Information technology', '7.1', '100', '0')
(10758, 'New York University', '20', 'Reject', 'MS', 'MIS', 'Fall', 'None', '159', '145', '304', '3.5', '105', 'MITCOE Pune University', 'Information Technology', '6.556', '100', '0')
(10759, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '170', '161', '331', '5', '113', 'Manipal Institue of Technology', 'CSE', '7.73', '10', '31')
(10760, 'New York University', '20', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '159', '154', '313', '4', '111', "St Joseph's College of Engineering", 'Computer Science and Engineering', '8.6', '100', '0')
(10761, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '770', '480', '1250', '4', '102', 'Fr. Agnel Bandra', 'Computer Engg', '7.3', '100', '0')
(10762, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '158', '147', '305', 'None', '95', 'VIT University', 'Computer Science', '9.12', '10', '0')
(10763, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '590', '1390', '3', '100', 'Rajiv Gandhi Institute Of Technology', 'Computer Engineering', '6.288', '100', '0')
(10764, 'New York University', '20', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '160', '153', '313', '3.5', '105', 'MRCE - affiliated to MDU', 'electronics and communication', '6', '100', '0')
(10765, 'New York University', '20', 'Reject', 'MS', 'Business Analytics', 'Fall ', '2014', '166', '162', '328', '4', '114', 'Biju Patnaik University of Technology', 'EEE', '8.3', '10', '0')
(10766, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '380', '1180', '3.5', '106', 'Coimbatore Insitute of Technology', 'Comp Sci', '9.24', '10', '0')
(10767, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '330', '1080', '3.5', '93', 'VTU', 'CS', '7.13', '100', '0')
(10768, 'New York University', '20', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '155', '150', '305', '3', '106', 'West Bengal University Of Technology', 'Instrumentation and Control', '8.5', '10', '26')
(10769, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '149', '311', '3', '95', 'MU', 'computer engg', '6.2', '100', '0')
(10770, 'New York University', '20', 'Reject', 'MS', 'CS', 'Fall ', '2013', '160', '154', '314', '3', '100', 'JNTU', 'Computer science', '7.5', '100', '0')
(10771, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '740', '620', '1360', '4', 'None', 'Delhi College Of Engineeing', 'Information Technology', '7.132', '100', '0')
(10772, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '152', '315', '4.5', '109', 'Amity School of Engineering and Technology', 'Computer Science', '8', '10', '58')
(10773, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2010', '780', '340', '1120', '3', '93', 'ITM Gurgaon', 'Computer Science Engineering', '7.2', '100', '0')
(10774, 'New York University', '20', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '800', '530', '1330', '3.5', '104', 'Vidyalankar Institute of Technology', 'Computer Engineering', '5.8', '100', '0')
(10775, 'New York University', '20', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '163', '153', '316', '4', '103', 'MPSTME NMIMS', 'IT', '3.85', '4', '0')
(10776, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '660', '1460', '4', '112', 'MU', 'Computer Engineering', '6.784999999999999', '100', '0')
(10777, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '510', '1300', '3', '98', 'PICT', 'IT', '6.4', '100', '0')
(10778, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '155', '317', '4', '110', 'Anna University', 'CS', '7.25', '10', '0')
(10779, 'New York University', '20', 'Reject', 'MS', 'Mathematics', 'Fall ', '2014', '169', '156', '325', '4', '108', 'MNNIT', 'Electronics', '8.93', '10', '24')
(10780, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '740', '670', '1410', '3', '110', 'MU', 'IT', '5.89', '100', '0')
(10781, 'New York University', '20', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '156', '154', '310', '3', '105', 'Fr. Conceicao Rodrigues College of Engineering', 'Computer', '6.2', '100', '0')
(10782, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2007', '690', '370', '1060', '4', '89', 'ACET Nagpur', 'Computer Science', '6.941', '100', '0')
(10783, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '800', '720', '1520', '4', '116', 'NIT Durgapur', 'Computer Science and Engineering', '7.89', '10', '0')
(10784, 'New York University', '20', 'Reject', 'MS', 'CS', 'Fall ', '2014', '161', '155', '316', '3', '115', 'Goa University', 'Computer Engineering', '7', '100', '0')
(10785, 'New York University', '20', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '760', '570', '1330', '4', '111', 'University of Pune', 'Computer Engineering', '5.9', '100', '0')
(10786, 'New York University', '20', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '158', '149', '307', '3', '92', 'Bangalore University', 'Computer Science', '7.3', '100', '0')
(10787, 'New York University', '20', 'Reject', 'MS', 'analytics', 'Summer ', '2014', '165', '154', '319', '4', '109', 'Siddaganga Institue of Technology', 'Electronics and Communications Engineering', '8.82', '10', '0')
(10788, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '162', '158', '320', '3.5', '104', 'NIT Jalandhar', 'CSE', '7.73', '10', '0')
(10789, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '700', '440', '1140', '3.5', '99', 'R V College of Engineering', 'ISE', '8.56', '10', '0')
(10790, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '164', '157', '321', '4.5', '109', 'Amrita Vishwa Vidhyapeetham', 'Information Technology', '8.8', '10', '24')
(10791, 'New York University', '20', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '161', '155', '316', 'None', '113', 'MU', 'Computer Engineering', '6', '100', '0')
(10792, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '580', '1380', '4', '117', 'MU', 'Computer Engineering', '7.3', '100', '0')
(10793, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '160', '150', '310', '3', '100', 'PICT', 'Computer Science', '3.2', '4', '0')
(10794, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2006', '800', '700', '1500', '6', '297', 'SVNIT Surat', 'Computer Engineering', '6.7', '100', '0')
(10795, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '163', '151', '314', '3.5', 'None', 'PICT', 'computer', '5.8', '100', '0')
(10796, 'New York University', '20', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '730', '550', '1280', '4', '115', 'PESIT', 'Computer Science', '7', '100', '0')
(10797, 'New York University', '20', 'Reject', 'MS', 'MIS', 'Spring ', '2012', '710', '440', '1150', 'None', '97', 'LNCT', 'Electical and electronics', '7.4', '100', '0')
(10798, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Spring ', '2011', '700', '320', '1020', '3.5', '91', 'Pune University', 'Computer Engineering', '6.2', '100', '0')
(10799, 'New York University', '20', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '730', '550', '1280', '3.5', '108', 'VESIT', 'Computer', '6.968999999999999', '100', '0')
(10800, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '470', '1270', '3.5', '93', 'SKIT', 'CS', '6.5', '100', '0')
(10801, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '710', '470', '1180', '3', '92', 'University of Pune', 'Information Technology', '6.5', '100', '0')
(10802, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '670', '1470', '3.5', '100', 'Jaypee Institute of Information Technology', 'Electronics and Communication', '7.5', '10', '0')
(10803, 'New York University', '20', 'Reject', 'MS', 'Financial Engineering', 'Fall ', '2015', '170', '153', '323', '4', '113', 'Thadomal Shahani Engineering College', 'Information Technology', '6.651999999999999', '100', '25')
(10804, 'New York University', '20', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '780', '500', '1280', '3', '108', 'VTU', 'IS', '7.3', '100', '0')
(10805, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '620', '1390', '4', '98', 'D J Sanghvi', 'IT', '6.6579999999999995', '100', '0')
(10806, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '510', '1270', '3', '109', 'NIT Raipur', 'CSE', '7.4', '10', '0')
(10807, 'New York University', '20', 'Reject', 'MS', 'Information Systems', 'Fall ', '2012', '730', '640', '1370', '3.5', '115', 'BITS Goa', 'Information Systems', '7.4', '10', '0')
(10808, 'New York University', '20', 'Reject', 'MS', 'Information Systems', 'Fall ', '2012', '780', '630', '1410', '4.5', '99', 'MU', 'computers', '5.9', '100', '0')
(10809, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '790', '350', '1140', '3', '97', 'Coimbatore Insitute of Technology', 'MSc Software Engineering', '7.1', '100', '0')
(10810, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '770', '640', '1410', '4', '117', 'Watumull Institute University of Mumbai', 'Computer Science', '5.3', '100', '0')
(10811, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2007', '750', '350', '1100', '4', '253', 'Pune University', 'Computer Engineering', '5.4', '100', '0')
(10812, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '690', '610', '1300', '4', '111', 'University of Mumbai', 'Information Technology', '5.8', '100', '0')
(10813, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '690', '460', '1150', '4.5', '109', 'Datta Meghe College of Engineering', 'Computer Engineering', '5.720000000000001', '100', '0')
(10814, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '161', '150', '311', '3', '92', 'CEG', 'Computer science', '7.3', '10', '0')
(10815, 'New York University', '20', 'Reject', 'MS', 'MIS', 'Fall ', '2015', '164', '154', '318', '4', '102', 'University of Mumbai', 'Computers', '6', '100', '18')
(10816, 'New York University', '20', 'Reject', 'MS', 'Data Science', 'Fall', 'None', '166', '155', '321', '4', '109', 'Siddaganga Institue of Technology', 'Electronics & Communication', '7.1', '100', '0')
(10817, 'New York University', '20', 'Reject', 'MS', 'CS', 'Fall ', '2013', '158', '152', '310', '3', '100', 'MSRIT', 'Information Science', '6.8', '100', '0')
(10818, 'New York University', '20', 'Reject', 'MS', 'Data Science', 'Fall', '2019', '-1', '-1', '-1', '-1', '97', 'Visvesvaraya Technological University', 'Computer Science', '7.3', '100', '29')
(10819, 'New York University', '20', 'Reject', 'MS', 'Data Science', 'Fall', '2019', '167', '151', '318', '3.5', '105', 'Vellore Institute of Technology', 'Computer Science', '8.99', '10', '17')
(10820, 'New York University', '20', 'Reject', 'MS', 'Data Science', 'Fall', '2019', '167', '154', '321', '4', '103', 'Acropolis Institute of Technology & Research', 'Information Technology', '7.4', '10', '0')
(10821, 'New York University', '20', 'Reject', 'MS', 'Data Science', 'Fall', '2019', '158', '148', '306', '4', '105', 'KIIT University', 'Computer Science', '8.65', '10', '0')
(10822, 'NYU Tandon School of Engineering', '21', 'Admit', 'MS', 'Computer Science', 'Fall', '2017', '168', '157', '325', '3', '115', 'Gitam University', 'Computer Science', '8.5', '10', '0')
(10823, 'Pennsylvania State University', '22', 'Admit', 'MSc', 'Industrial Engineering', 'Fall', '2017', '170', '155', '325', '3.5', '111', 'Sardar Patel College Of Engineering, (SPCE), Andheri', 'Mechanical Engineering', '8.73', '10', '15')
(10824, 'Rochester Institute of Technology', '23', 'Admit', 'MS', 'Mechanical Engineering', 'Fall', '2016', '170', '156', '326', '3', '104', 'Pdpu', 'Mechanical Engineering', '8.3', '10', '0')
In [76]:
cursor.execute("Update student set CGPA = CGPA/10 WHERE CGPA_Scale = 100 AND UNIVERSITY_ID = 10")
for x in cursor:
    print(x)
In [27]:
cursor.execute("SHOW PROCESSLIST")
for x in cursor:
    print(x)
(5, 'event_scheduler', 'localhost', None, 'Daemon', 8033, 'Waiting on empty queue', None)
(19, 'root', 'localhost:51327', 'university_recommendation_assignment3', 'Sleep', 159, '', None)
(20, 'root', 'localhost:51463', 'university_recommendation_assignment3', 'Query', 0, 'init', 'SHOW PROCESSLIST')
In [29]:
cursor.execute("Kill 19")
---------------------------------------------------------------------------
OperationalError                          Traceback (most recent call last)
<ipython-input-29-2975d8b5673b> in <module>
----> 1 cursor.execute("Kill 19")

~\anaconda3\lib\site-packages\pymysql\cursors.py in execute(self, query, args)
    146         query = self.mogrify(query, args)
    147 
--> 148         result = self._query(query)
    149         self._executed = query
    150         return result

~\anaconda3\lib\site-packages\pymysql\cursors.py in _query(self, q)
    308         self._last_executed = q
    309         self._clear_result()
--> 310         conn.query(q)
    311         self._do_get_result()
    312         return self.rowcount

~\anaconda3\lib\site-packages\pymysql\connections.py in query(self, sql, unbuffered)
    546             sql = sql.encode(self.encoding, "surrogateescape")
    547         self._execute_command(COMMAND.COM_QUERY, sql)
--> 548         self._affected_rows = self._read_query_result(unbuffered=unbuffered)
    549         return self._affected_rows
    550 

~\anaconda3\lib\site-packages\pymysql\connections.py in _read_query_result(self, unbuffered)
    773         else:
    774             result = MySQLResult(self)
--> 775             result.read()
    776         self._result = result
    777         if result.server_status is not None:

~\anaconda3\lib\site-packages\pymysql\connections.py in read(self)
   1154     def read(self):
   1155         try:
-> 1156             first_packet = self.connection._read_packet()
   1157 
   1158             if first_packet.is_ok_packet():

~\anaconda3\lib\site-packages\pymysql\connections.py in _read_packet(self, packet_type)
    723             if self._result is not None and self._result.unbuffered_active is True:
    724                 self._result.unbuffered_active = False
--> 725             packet.raise_for_error()
    726         return packet
    727 

~\anaconda3\lib\site-packages\pymysql\protocol.py in raise_for_error(self)
    219         if DEBUG:
    220             print("errno =", errno)
--> 221         err.raise_mysql_exception(self._data)
    222 
    223     def dump(self):

~\anaconda3\lib\site-packages\pymysql\err.py in raise_mysql_exception(data)
    141     if errorclass is None:
    142         errorclass = InternalError if errno < 1000 else OperationalError
--> 143     raise errorclass(errno, errval)

OperationalError: (1094, 'Unknown thread id: 19')